Protocol::HTTP2
Provides a low-level implementation of the HTTP/2 protocol.
Usage
Please browse the reference index or refer to the guides below.
Getting Started
This guide explains how to use the protocol-http2 gem to implement a basic HTTP/2 client.
Releases
Please browse the releases for more details.
v0.28.0
- Treat
RST_STREAM(NO_ERROR)as an orderly stream closure rather than constructing aStreamError.
v0.27.0
- On a graceful
GOAWAY(error code0), keep the connection open until the streams the remote peer accepted have completed, instead of closing it immediately and failing those requests withEOFError. Connection#create_streamrefuses to open a locally-initiated stream once aGOAWAYhas been received, as required by RFC 9113 ยง6.8.
v0.26.2
- Ignore the reserved high bit when decoding GOAWAY last stream IDs.
v0.26.1
- Improve
StreamErrormessages for HTTP/2 stream reset error codes.
v0.26.0
- On RST_STREAM with REFUSED_STREAM, close the stream with
Protocol::HTTP::RefusedErrorinstead ofStreamError.
v0.25.0
- On GOAWAY, proactively close unprocessed streams (ID above
last_stream_id) withProtocol::HTTP::RequestRefusedError, enabling safe retry of non-idempotent requests.
v0.24.0
- When closing a connection with active streams, if an error is not provided, it will default to
EOFErrorso that streams propagate the closure correctly.
v0.23.0
- 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
limitparameter in theContinued.readmethod. Setting the limit to 0 will only read the initial frame without any continuation frames. In order to change the default, you can redefine theLIMITconstant in theProtocol::HTTP2::Continuedmodule, OR you can pass a different frame class to the framer.
v0.22.1
- Improved tracing performance by only tracing framer operations when in an active trace context.
- Updated
protocol-httpdependency version in gemspec. - Code modernization and documentation improvements.
v0.22.0
See Also
- Async::HTTP - A high-level HTTP client and server implementation.
Contributing
We welcome contributions to this project.
- Fork the repository.
- Create your feature branch (
git checkout -b my-new-feature). - Commit your changes (
git commit -am 'Add some feature.'). - Push to the branch (
git push origin my-new-feature). - Create a new pull request.
Running Tests
To run the test suite:
$ bundle exec sus
Making Releases
To make a new release:
$ bundle exec bake gem:release:patch # or minor or major
Developer Certificate of Origin
In order to protect users of this project, we require all contributors to comply with the Developer Certificate of Origin. This ensures that all contributions are properly licensed and attributed.
Community Guidelines
This project is best served by a collaborative and respectful environment. Treat each other professionally, respect differing viewpoints, and engage constructively. Harassment, discrimination, or harmful behavior is not tolerated. Communicate clearly, listen actively, and support one another. If any issues arise, please inform the project maintainers.