Skip to content

Commit af4bcac

Browse files
committedApr 13, 2023
v0.3.17
1 parent d3f37e9 commit af4bcac

File tree

3 files changed

+11
-2
lines changed

3 files changed

+11
-2
lines changed
 

‎CHANGELOG.md

+9
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,12 @@
1+
# 0.3.17 (April 13, 2023)
2+
3+
* Add `Error::is_library()` method to check if the originated inside `h2`.
4+
* Add `max_pending_accept_reset_streams(usize)` option to client and server
5+
builders.
6+
* Fix theoretical memory growth when receiving too many HEADERS and then
7+
RST_STREAM frames faster than an application can accept them off the queue.
8+
(CVE-2023-26964)
9+
110
# 0.3.16 (February 27, 2023)
211

312
* Set `Protocol` extension on requests when received Extended CONNECT requests.

‎Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ name = "h2"
55
# - html_root_url.
66
# - Update CHANGELOG.md.
77
# - Create git tag
8-
version = "0.3.16"
8+
version = "0.3.17"
99
license = "MIT"
1010
authors = [
1111
"Carl Lerche <me@carllerche.com>",

‎src/lib.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -78,7 +78,7 @@
7878
//! [`server::handshake`]: server/fn.handshake.html
7979
//! [`client::handshake`]: client/fn.handshake.html
8080
81-
#![doc(html_root_url = "https://docs.rs/h2/0.3.16")]
81+
#![doc(html_root_url = "https://docs.rs/h2/0.3.17")]
8282
#![deny(missing_debug_implementations, missing_docs)]
8383
#![cfg_attr(test, deny(warnings))]
8484
#![allow(clippy::type_complexity, clippy::manual_range_contains)]

0 commit comments

Comments
 (0)
Please sign in to comment.