Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
11 changes: 11 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,14 @@
# 0.4.14 (May 5, 2026)

* Add `header_table_size()` option to server builder.
* Fix leaking connection flow control of padded DATA frames when stream is reset.
* Fix leaking connection flow control when canceling a stream after reserving capacity.
* Fix leaking connection flow control when receiving a DATA frame after GOAWAY.
* Fix waking the `poll_capacity` when locally reseting a stream from library.
* Fix sending HEADERS on a reset stream before the RST_STREAM frame.
* Fix receiving GOAWAY to not close peer-initiated streams.
* Optimize header value decoding to copy less bytes.

# 0.4.13 (January 5, 2026)

* Add support for 1xx informational responses on client and server side.
Expand Down
2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ name = "h2"
# When releasing to crates.io:
# - Update CHANGELOG.md.
# - Create git tag
version = "0.4.13"
version = "0.4.14"
license = "MIT"
authors = [
"Carl Lerche <me@carllerche.com>",
Expand Down
Loading