Skip to content

Commit

Permalink
v1.2.0
Browse files Browse the repository at this point in the history
  • Loading branch information
seanmonstar committed Feb 21, 2024
1 parent a7bdc60 commit 198c1b9
Show file tree
Hide file tree
Showing 2 changed files with 28 additions and 1 deletion.
27 changes: 27 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,30 @@
## v1.2.0 (2024-02-21)


#### Bug Fixes

* **http2:** typo in trace logging (#3536) ([79862ec2](https:/hyperium/hyper/commit/79862ec2e84c32122c820958ceec06d8b7701ff7))
* **rt:** `Sleep::downcast_mut_pin()` no longer extend lifetime ([7206fe30](https:/hyperium/hyper/commit/7206fe30302937075c51c16a69d1eb3bbce6a671), closes [#3556](https:/hyperium/hyper/issues/3556))


#### Features

* **http1:** support configurable `max_headers(num)` to client and server (#3523) ([b1142448](https:/hyperium/hyper/commit/b114244898828e9fb254bea1f0bbdd24850b2f3f))
* **http2:**
* add config for `max_local_error_reset_streams` in server (#3530) ([d7680e30](https:/hyperium/hyper/commit/d7680e30e48926a5a3f94a0986d39181d5ab2218))
* add `initial_max_send_streams` method to HTTP/2 client builder (#3524) ([fdfa60d9](https:/hyperium/hyper/commit/fdfa60d9fafb8a6bfb40acc4042ee54a2b9aad32))
* add `max_pending_accept_reset_streams(num)` back to HTTP/2 server builder (#3507 ([a9fa893f](https:/hyperium/hyper/commit/a9fa893f18c6409abae2e1dcbba0f4487df54d4f))


#### Breaking Changes

* The returned lifetime from `Sleep::downcast_mut_pin()`
is no longer `'static`. This shouldn't affect most usage. This sort of
breaking change is needed because it is _wrong_.

([7206fe30](https:/hyperium/hyper/commit/7206fe30302937075c51c16a69d1eb3bbce6a671))


## v1.1.0 (2023-12-18)


Expand Down
2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "hyper"
version = "1.1.0"
version = "1.2.0"
description = "A fast and correct HTTP library."
readme = "README.md"
homepage = "https://hyper.rs"
Expand Down

1 comment on commit 198c1b9

@github-actions
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

⚠️ Performance Alert ⚠️

Possible performance regression was detected for benchmark 'end_to_end'.
Benchmark result of this commit is worse than the previous benchmark result exceeding threshold 2.

Benchmark suite Current: 198c1b9 Previous: a7bdc60 Ratio
http2_parallel_x10_req_10kb_100_chunks_adaptive_window 25586991 ns/iter (± 17559020) 8316480 ns/iter (± 44069926) 3.08

This comment was automatically generated by workflow using github-action-benchmark.

Please sign in to comment.