Releases: cloudflare/pingora
Releases · cloudflare/pingora
Pingora 0.4.0
0.4.0 - 2024-11-01
🚀 Features
- Add preliminary rustls support
- Add experimental support for windows
- Add the option to use no TLS implementation
- Add support for gRPC-web module to bridge gRPC-web client requests to gRPC server requests
- Add the support for h2c and http1 to coexist
- Add the support for custom L4 connector
- Support opaque extension field in Backend
- Add the ability to ignore informational responses when proxying downstream
- Add un-gzip support and allow decompress by algorithm
- Add the ability to observe backend health status
- Add the support for passing sentry release
- Add the support for binding to local port ranges
- Support retrieving rx timestamp for TcpStream
🐛 Bug Fixes
- Handle bare IPv6 address in raw connect Host
- Set proper response headers when compression is enabled
- Check the current advertised h2 max streams
- Other bug fixes and improvements
⚙️ Changes and Miscellaneous Tasks
- Make sentry an optional feature
- Make timeouts Sync
- Retry all h2 connection when encountering graceful shutdown
- Make l4 module pub to expose Connect
- Auto snake case set-cookie header when downgrade to from h2 to http1.1
- shutdown h2 connection gracefully with GOAWAYs
- Other API signature updates
Full Changelog: 0.3.0...0.4.0
Pingora 0.3.0
0.3.0 - 2024-07-12
🚀 Features
- Add support for HTTP modules. This feature allows users to import modules written by 3rd parties.
- Add
request_body_filter
. Now request body can be inspected and modified. - Add H2c support.
- Add TCP fast open support.
- Add support for server side TCP keep-alive.
- Add support to get TCP_INFO.
- Add support to set DSCP.
- Add
or_err()
/or_err_with
API to convertOptions
topingora::Error
. - Add
or_fail()
API to convertimpl std::error::Error
topingora::Error
. - Add the API to track socket read and write pending time.
- Compression: allow setting level per algorithm.
🐛 Bug Fixes
- Fixed a panic when using multiple H2 streams in the same H2 connection to upstreams.
- Pingora now respects the
Connection
header it sends to upstream. - Accept-Ranges header is now removed when response is compressed.
- Fix ipv6_only socket flag.
- A new H2 connection is opened now if the existing connection returns GOAWAY with graceful shutdown error.
- Fix a FD mismatch error when 0.0.0.0 is used as the upstream IP
⚙️ Changes and Miscellaneous Tasks
- Dependency: replace
structopt
withclap
- Rework the API of HTTP modules
- Optimize remove_header() API call
- UDS parsing now requires the path to have
unix:
prefix. The support for the path without prefix is deprecated and will be removed on the next release. - Other minor API changes
Pingora 0.1.1
0.1.1 - 2024-04-05
🚀 Features
Server::new
now acceptsInto<Option<T>>
- Implemented client
HttpSession::get_keepalive_values
for Keep-Alive parsing - Expose
ListenFds
andFds
to fix a voldemort types issue - Expose config options in
ServerConf
, provide newServer
constructor upstream_response_filter
now runs on upstream 304 responses during cache revalidation- Added
server_addr
andclient_addr
APIs toSession
- Allow body modification in
response_body_filter
- Allow configuring grace period and graceful shutdown timeout
- Added TinyUFO sharded skip list storage option
🐛 Bug Fixes
- Fixed build failures with the
boringssl
feature - Fixed compile warnings with nightly Rust
- Fixed an issue where Upgrade request bodies might not be handled correctly
- Fix compilation to only include openssl or boringssl rather than both
- Fix OS read errors so they are reported as
ReadError
rather thanReadTimeout
when reading http/1.1 response headers
⚙️ Miscellaneous Tasks
- Performance improvements in
pingora-ketama
- Added more TinyUFO benchmarks
- Added tests for
pingora-cache
purge - Limit buffer size for
InvalidHTTPHeader
error logs - Example code: improvements in pingora client, new LB cluster example
- Typo fixes and clarifications across comments and docs
Pingora 0.1.0
Highlights
- First Public Release of Pingora 🎉