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
10 changes: 10 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,13 @@
# 0.4.15 (June 15, 2026)

* Fix closing a connection when header size is "way too large" (currently x4 configured limit).
* Fix overflow calculating padding length if a DATA frame had 255 bytes of padding.
* Fix ignoring library-initiated resets in the connection state loop.
* Fix decoding panic with an absurd amount of headers and no limit to now use `try_append()`.
* Fix rejecting frames on streams whose HEADERS have not been sent.
* Fix `poll_capacity()` to not return `Some(Ok(0))`.
* Fix discarding of buffered DATA frames when a reset is scheduled.

# 0.4.14 (May 5, 2026)

* Add `header_table_size()` option to server builder.
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.14"
version = "0.4.15"
license = "MIT"
authors = [
"Carl Lerche <me@carllerche.com>",
Expand Down