File tree 3 files changed +8
-2
lines changed
3 files changed +8
-2
lines changed Original file line number Diff line number Diff line change
1
+ # 0.3.20 (June 26, 2023)
2
+
3
+ * Fix panic if a server received a request with a ` :status ` pseudo header in the 1xx range.
4
+ * Fix panic if a reset stream had pending push promises that were more than allowed.
5
+ * Fix potential flow control overflow by subtraction, instead returning a connection error.
6
+
1
7
# 0.3.19 (May 12, 2023)
2
8
3
9
* Fix counting reset streams when triggered by a GOAWAY.
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.19 "
8
+ version = " 0.3.20 "
9
9
license = " MIT"
10
10
authors = [
11
11
" Carl Lerche <[email protected] >" ,
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.19 " ) ]
81
+ #![ doc( html_root_url = "https://docs.rs/h2/0.3.20 " ) ]
82
82
#![ deny(
83
83
missing_debug_implementations,
84
84
missing_docs,
You can’t perform that action at this time.
0 commit comments