Sourced from hyper-util's releases.
v0.1.11
What's Changed
- fix(client): Fix
HTTP/2
websocket request by@0x676e67
in hyperium/hyper-util#165- builder: expose methods for determining if HTTP/1.1 or HTTP/2 support are enabled by
@tobz
in hyperium/hyper-util#164- feat(server): support
auto_date_header
,max_local_error_reset_streams
, andignore_invalid_headers
. by@finnbear
in hyperium/hyper-util#161- fix(tracing): propagate span context by
@alpeb
in hyperium/hyper-util#166- feat(rt/tokio): additive tokio and hyper i/o adaptors by
@cratelyn
in hyperium/hyper-util#170- feat(client): implement Connection for UnixStream and NamedPipeClient by
@seanmonstar
in hyperium/hyper-util#177- enable
HttpConnector::interface
on macOS and Solarish systems by@hawkw
in hyperium/hyper-util#176New Contributors
@jlizen
made their first contribution in hyperium/hyper-util#159@linyihai
made their first contribution in hyperium/hyper-util#160@tobz
made their first contribution in hyperium/hyper-util#164@finnbear
made their first contribution in hyperium/hyper-util#161@alpeb
made their first contribution in hyperium/hyper-util#166@cratelyn
made their first contribution in hyperium/hyper-util#168@hawkw
made their first contribution in hyperium/hyper-util#176Thanks
Sourced from hyper-util's changelog.
0.1.11 (2025-03-31)
- Add
tracing
crate feature with support inTokioExecutor
.- Add
HttpConnector::interface()
support for macOS and Solarish systems.- Add
rt::WithHyperIo
andrt::WithTokioIo
combinators.- Add
auto_date_header()
for auto server builder.- Add
max_local_error_reset_streams()
for auto server builder.- Add
ignore_invalid_headers()
for auto server builder.- Add methods to determine if auto server is configured for HTTP/1 or HTTP/2.
- Implement
Connection
forUnixStream
andNamedPipeClient
.- Fix HTTP/2 websocket requests sent through
legacy::Client
.
4c4e062
v0.1.11486e3b6
bump license year5831ace
feat(client): enable HttpConnector::interface
on macOS and
Solarish systems...dc03ad4
feat(client): implement Connection for UnixStream and NamedPipeClient
(#177)94afd50
feat(rt/tokio): additive tokio and hyper i/o adaptors (#170)ef35d8a
chore: pin once-cell on msrv ci job (#175)d51318d
chore(client/legacy): remove unused PoolClient::is_closed()
(#169)1290685
chore(tokio): warn on dead code (#168)b90ff7d
feat(rt): add tracing
feature that will propagate span
context in TokioExec...46826ea
feat(server): support auto_date_header
,
max_local_error_reset_streams
, an...