protocol-http2 0.28.0 → 0.29.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- checksums.yaml.gz.sig +0 -0
- data/lib/protocol/http2/connection.rb +9 -0
- data/lib/protocol/http2/continuation_frame.rb +1 -1
- data/lib/protocol/http2/version.rb +1 -1
- data/readme.md +13 -12
- data/releases.md +9 -0
- data.tar.gz.sig +0 -0
- metadata +24 -28
- metadata.gz.sig +0 -0
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: a7377cdf5d445fa9be8bb1e3598274a94430c5226d8cc3378dd3086fd439d779
|
|
4
|
+
data.tar.gz: 2e8dfd748cd7809bc8482151959860a45ff1d1b7e6406086622243894e43b080
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 40bc7ed544b4f29d054b6e949d832632ecd3e37c1d94c8dd188461075d848ea0784a41743491a63877b520f014cc224df5078d4f4fae964e7d44622998152c5e
|
|
7
|
+
data.tar.gz: 21f2c40d0c3c7259bc7fd620b788287691200fdd716d7a98a196fb4cd7d0f0b213a8fbeb518ffb06969c27c5732d04adafa369b1a6811ad1dca718f8e6f113f4
|
checksums.yaml.gz.sig
CHANGED
|
Binary file
|
|
@@ -510,6 +510,15 @@ module Protocol
|
|
|
510
510
|
|
|
511
511
|
if stream = @streams[stream_id]
|
|
512
512
|
stream.receive_headers(frame)
|
|
513
|
+
elsif local_stream_id?(stream_id) and closed_stream_id?(stream_id)
|
|
514
|
+
# This can occur if we reset a stream while the remote peer was sending headers for it,
|
|
515
|
+
# e.g. a response which was already in flight when the request was cancelled.
|
|
516
|
+
# The header block must still be decoded in order to keep the HPACK decoder state
|
|
517
|
+
# synchronized with the remote peer's encoder, but the decoded headers are discarded
|
|
518
|
+
# (RFC 9113 §5.1).
|
|
519
|
+
decode_headers(frame.unpack)
|
|
520
|
+
|
|
521
|
+
return nil
|
|
513
522
|
else
|
|
514
523
|
if stream_id <= @remote_stream_id
|
|
515
524
|
raise ProtocolError, "Invalid stream id: #{stream_id} <= #{@remote_stream_id}!"
|
|
@@ -90,7 +90,7 @@ module Protocol
|
|
|
90
90
|
|
|
91
91
|
remainder = data.byteslice(maximum_size, data.bytesize-maximum_size)
|
|
92
92
|
|
|
93
|
-
@continuation = ContinuationFrame.new
|
|
93
|
+
@continuation = ContinuationFrame.new(@stream_id)
|
|
94
94
|
@continuation.pack(remainder, maximum_size: maximum_size)
|
|
95
95
|
else
|
|
96
96
|
set_flags(END_HEADERS)
|
data/readme.md
CHANGED
|
@@ -14,6 +14,15 @@ Please see the [project documentation](https://socketry.github.io/protocol-http2
|
|
|
14
14
|
|
|
15
15
|
Please see the [project releases](https://socketry.github.io/protocol-http2/releases/index) for all releases.
|
|
16
16
|
|
|
17
|
+
### v0.29.1
|
|
18
|
+
|
|
19
|
+
- Sign releases with the Socketry release certificate.
|
|
20
|
+
|
|
21
|
+
### v0.29.0
|
|
22
|
+
|
|
23
|
+
- Decode and discard `HEADERS` received for a locally-initiated stream which was already reset, e.g. a response in flight when the request was cancelled, rather than failing the connection with `ProtocolError`. This keeps the HPACK decoder state synchronized with the remote peer (RFC 9113 §5.1).
|
|
24
|
+
- `CONTINUATION` frames generated when packing a large header block now carry the stream ID of the frame they continue.
|
|
25
|
+
|
|
17
26
|
### v0.28.0
|
|
18
27
|
|
|
19
28
|
- Treat `RST_STREAM(NO_ERROR)` as an orderly stream closure rather than constructing a `StreamError`.
|
|
@@ -47,16 +56,6 @@ Please see the [project releases](https://socketry.github.io/protocol-http2/rele
|
|
|
47
56
|
|
|
48
57
|
- 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.
|
|
49
58
|
|
|
50
|
-
### v0.22.1
|
|
51
|
-
|
|
52
|
-
- Improved tracing performance by only tracing framer operations when in an active trace context.
|
|
53
|
-
- Updated `protocol-http` dependency version in gemspec.
|
|
54
|
-
- Code modernization and documentation improvements.
|
|
55
|
-
|
|
56
|
-
### v0.22.0
|
|
57
|
-
|
|
58
|
-
- [Added Priority Update Frame and Stream Priority](https://socketry.github.io/protocol-http2/releases/index#added-priority-update-frame-and-stream-priority)
|
|
59
|
-
|
|
60
59
|
## See Also
|
|
61
60
|
|
|
62
61
|
- [Async::HTTP](https://github.com/socketry/async-http) - A high-level HTTP client and server implementation.
|
|
@@ -81,12 +80,14 @@ $ bundle exec sus
|
|
|
81
80
|
|
|
82
81
|
### Making Releases
|
|
83
82
|
|
|
84
|
-
To
|
|
83
|
+
To prepare a release branch and open a pull request from an up-to-date `main`:
|
|
85
84
|
|
|
86
85
|
``` bash
|
|
87
|
-
$ bundle exec bake gem:release:patch # or minor or major
|
|
86
|
+
$ bundle exec bake gem:github:release:patch # or minor or major
|
|
88
87
|
```
|
|
89
88
|
|
|
89
|
+
See [bake-gem-github](https://github.com/socketry/bake-gem-github) for setup, remote releases, and recovery.
|
|
90
|
+
|
|
90
91
|
### Developer Certificate of Origin
|
|
91
92
|
|
|
92
93
|
In order to protect users of this project, we require all contributors to comply with the [Developer Certificate of Origin](https://developercertificate.org/). This ensures that all contributions are properly licensed and attributed.
|
data/releases.md
CHANGED
|
@@ -1,5 +1,14 @@
|
|
|
1
1
|
# Releases
|
|
2
2
|
|
|
3
|
+
## v0.29.1
|
|
4
|
+
|
|
5
|
+
- Sign releases with the Socketry release certificate.
|
|
6
|
+
|
|
7
|
+
## v0.29.0
|
|
8
|
+
|
|
9
|
+
- Decode and discard `HEADERS` received for a locally-initiated stream which was already reset, e.g. a response in flight when the request was cancelled, rather than failing the connection with `ProtocolError`. This keeps the HPACK decoder state synchronized with the remote peer (RFC 9113 §5.1).
|
|
10
|
+
- `CONTINUATION` frames generated when packing a large header block now carry the stream ID of the frame they continue.
|
|
11
|
+
|
|
3
12
|
## v0.28.0
|
|
4
13
|
|
|
5
14
|
- Treat `RST_STREAM(NO_ERROR)` as an orderly stream closure rather than constructing a `StreamError`.
|
data.tar.gz.sig
CHANGED
|
Binary file
|
metadata
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: protocol-http2
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.
|
|
4
|
+
version: 0.29.1
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Samuel Williams
|
|
@@ -14,32 +14,28 @@ bindir: bin
|
|
|
14
14
|
cert_chain:
|
|
15
15
|
- |
|
|
16
16
|
-----BEGIN CERTIFICATE-----
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
|
|
23
|
-
|
|
24
|
-
|
|
25
|
-
|
|
26
|
-
|
|
27
|
-
|
|
28
|
-
|
|
29
|
-
|
|
30
|
-
|
|
31
|
-
|
|
32
|
-
|
|
33
|
-
|
|
34
|
-
|
|
35
|
-
|
|
36
|
-
|
|
37
|
-
|
|
38
|
-
|
|
39
|
-
JkxfQWC+jBVeG9ZtPhQgZpfhvh+6hMhraUYRQ6XGyvBqEUe+yo6DKIT3MtGE2+CP
|
|
40
|
-
eX9i9ZWBydWb8/rvmwmX2kkcBbX0hZS1rcR593hGc61JR6lvkGYQ2MYskBveyaxt
|
|
41
|
-
Q2K9NVun/S785AP05vKkXZEFYxqG6EW012U4oLcFl5MySFajYXRYbuUpH6AY+HP8
|
|
42
|
-
voD0MPg1DssDLKwXyt1eKD/+Fq0bFWhwVM/1XiAXL7lyYUyOq24KHgQ2Csg=
|
|
17
|
+
MIIEFDCCAnygAwIBAgIBATANBgkqhkiG9w0BAQsFADAwMREwDwYDVQQKDAhTb2Nr
|
|
18
|
+
ZXRyeTEbMBkGA1UEAwwSU29ja2V0cnkgUnVieSBHZW1zMB4XDTI2MDkyMTA3NTgx
|
|
19
|
+
NFoXDTI3MDkyMTA3NTgxNFowMDERMA8GA1UECgwIU29ja2V0cnkxGzAZBgNVBAMM
|
|
20
|
+
ElNvY2tldHJ5IFJ1YnkgR2VtczCCAaIwDQYJKoZIhvcNAQEBBQADggGPADCCAYoC
|
|
21
|
+
ggGBAM/QgjVgDzDo/xJEQoFvAzcVFP7msnswkhPJB2UDsbxXCZmers5jV512TM5s
|
|
22
|
+
NwLHfzJiC4DcI5ax9ZYKM9Q+dS21YYagNqjtg3YPyDqR6phoibEA0VoMuInUQW68
|
|
23
|
+
i5OkCJzYKGD2pYYVZnuFNqyM2ECUvXh/fBmvPoHbncAHhWPaCBH8mQJ8sRNc6+RV
|
|
24
|
+
SoZZu1Yo/aW1zQ+SpZwad7s1ZmigfDNHKhJ22KwZHk+/5Zw1QXVfcajjswV0Mm2P
|
|
25
|
+
irgjKN3fyNVkwlly63EBlR4VydT+g9QtJtqh7ee0ThhI+v4wYovf4dbLNcEBTHu1
|
|
26
|
+
x1pGbXGx/2fBAST5eVwaXIx1V8VU22AJcBk1H2o5/1F0HfbD2HQjmFOA112KUwBW
|
|
27
|
+
9TtspZD3g6rCQFX53XvL9h6j2y1ukl7s5AdEzOe/x6r1MO8tSDtgcYoF89wgF/88
|
|
28
|
+
Q/Eski0FckQ+znfESZcFcpzs2sPDoYW6SNVX4tZcNty85Y6WBHfHKio14x63PeyC
|
|
29
|
+
CG1gMwIDAQABozkwNzAJBgNVHRMEAjAAMAsGA1UdDwQEAwIEsDAdBgNVHQ4EFgQU
|
|
30
|
+
SuMc0x24Xshtaa8SQVkBr2Z5WzIwDQYJKoZIhvcNAQELBQADggGBABI62ey5lDWm
|
|
31
|
+
j8jsTQaNBMBb7LbKS3XkBwyL1UNGEwlicp399rJDeuNgVSHqBCZ/nE4yleNjgW9Y
|
|
32
|
+
N6DKdxXCvXmFUoHvUINeAvThHxmlEGhSfXl1x55xHEig0rEP4jgdjnYdQI4fqeOM
|
|
33
|
+
zIDN0F3ruArke4Y62SQgWVN7vspdAA41hBIRl1vsvs0KWG8DIVQ8cmR+TG6zjOmK
|
|
34
|
+
iUiUZGNPnStV1O1xW83c+Ba4Am0krP6/forxDPhRvTehqkVYvMdPfYcICNb5IM58
|
|
35
|
+
5vaYvuj5AtfZuZWN0F/0KtSphhNC17rh6h8QmuYdMJ1clvlrkiEaO1UjPVwjgtxC
|
|
36
|
+
x/ARh5X6q0/YTXl4r7EfSJEeqW7qhgu9EUj3mGIPHYdX0Dqih/NgK20F3GvQtTfB
|
|
37
|
+
7sse0duKBHXONYVwKAsceUVvqtCfyF608bCilCkbhw3QaInRj+BkRQKJ5Tuj2PZR
|
|
38
|
+
76a/hwaV2wWn5RtAFBaUQzQdo/xTqJ7IkwaFjOZe/QyvyoRjCK9Rdg==
|
|
43
39
|
-----END CERTIFICATE-----
|
|
44
40
|
date: 1980-01-02 00:00:00.000000000 Z
|
|
45
41
|
dependencies:
|
|
@@ -126,7 +122,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
|
126
122
|
- !ruby/object:Gem::Version
|
|
127
123
|
version: '0'
|
|
128
124
|
requirements: []
|
|
129
|
-
rubygems_version: 4.0.
|
|
125
|
+
rubygems_version: 4.0.21
|
|
130
126
|
specification_version: 4
|
|
131
127
|
summary: A low level implementation of the HTTP/2 protocol.
|
|
132
128
|
test_files: []
|
metadata.gz.sig
CHANGED
|
Binary file
|