Skip to content

Commit 9f38daa

Browse files
committed
Bump minor version.
1 parent 3914bc5 commit 9f38daa

File tree

3 files changed

+11
-3
lines changed

3 files changed

+11
-3
lines changed

lib/protocol/http2/version.rb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,6 @@
77
module Protocol
88
# @namespace
99
module HTTP2
10-
VERSION = "0.22.1"
10+
VERSION = "0.23.0"
1111
end
1212
end

readme.md

Lines changed: 9 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,15 @@ Please see the [project documentation](https://socketry.github.io/protocol-http2
1212

1313
## Releases
1414

15-
There are no documented releases.
15+
Please see the [project releases](https://socketry.github.io/protocol-http2/releases/index) for all releases.
16+
17+
### v0.23.0
18+
19+
- Introduce a limit to the number of CONTINUATION frames that can be read to prevent resource exhaustion. The default limit is 8 continuation frames, which means a total of 9 frames (1 initial + 8 continuation). This limit can be adjusted by passing a different value to the `limit` parameter in the `Continued.read` method. Setting the limit to 0 will only read the initial frame without any continuation frames. In order to change the default, you can redefine the `LIMIT` constant in the `Protocol::HTTP2::Continued` module, OR you can pass a different frame class to the framer.
20+
21+
### v0.22.0
22+
23+
- [Added Priority Update Frame and Stream Priority](https://socketry.github.io/protocol-http2/releases/index#added-priority-update-frame-and-stream-priority)
1624

1725
## See Also
1826

releases.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# Releases
22

3-
## Unreleased
3+
## v0.23.0
44

55
- Introduce a limit to the number of CONTINUATION frames that can be read to prevent resource exhaustion. The default limit is 8 continuation frames, which means a total of 9 frames (1 initial + 8 continuation). This limit can be adjusted by passing a different value to the `limit` parameter in the `Continued.read` method. Setting the limit to 0 will only read the initial frame without any continuation frames. In order to change the default, you can redefine the `LIMIT` constant in the `Protocol::HTTP2::Continued` module, OR you can pass a different frame class to the framer.
66

0 commit comments

Comments
 (0)