Releases: hyperium/hyper-util
Releases · hyperium/hyper-util
v0.1.10
What's Changed
- Add
http2_max_header_list_size(num)
option to legacy client builder. - Add
set_tcp_user_timeout(dur)
option to legacyHttpConnector
.
New Contributors
- @guillaumebort made their first contribution in #152
- @DSharifi made their first contribution in #154
- @gretchenfrage made their first contribution in #155
Full Changelog: v0.1.9...v0.1.10
v0.1.9
What's Changed
- Add support for
client::legacy
DNS resolvers to set non-zero ports on returned addresses. - Fix
client::legacy
wrongly retrying pooled connections that were created successfully but failed immediately after, resulting in a retry loop.
New Contributors
Full Changelog: v0.1.8...v0.1.9
v0.1.8
What's Changed
- Add
server::conn::auto::upgrade::downcast()
for use with auto connection upgrades.
New Contributors
Full Changelog: v0.1.7...v0.1.8
v0.1.7
What's Changed
- Add
Connected::poison()
tolegacy
client, a port from hyper v0.14.x. - Add
Error::connect_info()
tolegacy
client, a port from hyper v0.14.x.
New Contributors
- @nox made their first contribution in #135
- @aaronriekenberg made their first contribution in #137
Full Changelog: v0.1.6...v0.1.7
v0.1.6
What's Changed
- Add support for AIX operating system to
legacy
client. - Fix
legacy
client to better use dying pooled connections.
New Contributors
- @ramiroaisen made their first contribution in #131
- @ecnelises made their first contribution in #132
Full Changelog: v0.1.5...v0.1.6
v0.1.5
What's Changed
- Add
server::graceful::GracefulShutdown
helper to coordinate over many connections. - Add
server::conn::auto::Connection::into_owned()
to unlink lifetime fromBuilder
. - Allow
service
module to be available with onlyservice
feature enabled.
New Contributors
Full Changelog: v0.1.4...v0.1.5
v0.1.4
What's Changed
- Add
initial_max_send_streams()
tolegacy
client builder - Add
max_pending_accept_reset_streams()
tolegacy
client builder - Add
max_headers(usize)
toauto
server builder - Add
http1_onl()
andhttp2_only()
toauto
server builder - Add connection capturing API to
legacy
client - Add
impl Connection for TokioIo
- Fix graceful shutdown hanging on reading the HTTP version
New Contributors
- @magurotuna made their first contribution in #87
- @ikrivosheev made their first contribution in #90
- @elpiel made their first contribution in #103
- @mladedav made their first contribution in #106
- @wfly1998 made their first contribution in #107
- @CobaltCause made their first contribution in #110
- @hasezoey made their first contribution in #114
- @MaxFangX made their first contribution in #116
- @kvinwang made their first contribution in #117
- @martinetd made their first contribution in #113
- @rcoh made their first contribution in #112
- @allan2 made their first contribution in #102
- @FabijanC made their first contribution in #120
Full Changelog: v0.1.3...v0.1.4
v0.1.3
Added
- Add
Error::is_connect()
which returns true if error came from clientConnect
. - Add timer support to
legacy
pool. - Add support to enable http1/http2 parts of
auto::Builder
individually.
Fixed
- Fix
auto
connection so it can handle requests shorter than the h2 preface. - Fix
legacy::Client
to no longer error when keep-alive is diabled.
New Contributors
- @psibi made their first contribution in #82
- @jakubadamw made their first contribution in #95
- @SergioBenitez made their first contribution in #80
Full Changelog: v0.1.2...v0.1.3
v0.1.2
Added
- Add
graceful_shutdown()
method toauto
connections. - Add
rt::TokioTimer
type that implementshyper::rt::Timer
. - Add
service::TowerToHyperService
adapter, allowing usingtower::Service
s as ahyper::service::Service
. - Implement
Clone
forauto::Builder
. - Exports
legacy::{Builder, ResponseFuture}
.
Fixed
- Enable HTTP/1 upgrades on the
legacy::Client
. - Prevent divide by zero if DNS returns 0 addresses.
New Contributors
- @jayvdb made their first contribution in #62
- @Finomnis made their first contribution in #63
- @kushudai made their first contribution in #69
- @neoeinstein made their first contribution in #72
- @daxhuiberts made their first contribution in #73
- @gngpp made their first contribution in #76
- @sigoden made their first contribution in #79
Full Changelog: v0.1.1...v0.1.2
v0.1.1
Added
- Make
server-auto
enable theserver
feature.
Fixed
- Reduce
Send
bounds requirements forauto
connections. - Docs: enable all features when generating.