File tree 3 files changed +11
-2
lines changed
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
+
1
10
# 0.3.16 (February 27, 2023)
2
11
3
12
* 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"
5
5
# - html_root_url.
6
6
# - Update CHANGELOG.md.
7
7
# - Create git tag
8
- version = " 0.3.16 "
8
+ version = " 0.3.17 "
9
9
license = " MIT"
10
10
authors = [
11
11
" Carl Lerche <me@carllerche.com>" ,
Original file line number Diff line number Diff line change 78
78
//! [`server::handshake`]: server/fn.handshake.html
79
79
//! [`client::handshake`]: client/fn.handshake.html
80
80
81
- #![ doc( html_root_url = "https://docs.rs/h2/0.3.16 " ) ]
81
+ #![ doc( html_root_url = "https://docs.rs/h2/0.3.17 " ) ]
82
82
#![ deny( missing_debug_implementations, missing_docs) ]
83
83
#![ cfg_attr( test, deny( warnings) ) ]
84
84
#![ allow( clippy:: type_complexity, clippy:: manual_range_contains) ]
You can’t perform that action at this time.
0 commit comments