File tree Expand file tree Collapse file tree 3 files changed +11
-2
lines changed Expand file tree Collapse file tree 3 files changed +11
-2
lines changed Original file line number Diff line number Diff line change 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.
Original file line number Diff line number Diff 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 "
99license = " MIT"
1010authors = [
1111 " Carl Lerche <[email protected] >" ,
Original file line number Diff line number Diff line change 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) ]
You can’t perform that action at this time.
0 commit comments