Sourced from hyper-util's releases.
v0.1.13
tl;dr
- Fix
HttpConnector
to always prefer IPv6 addresses first, if happy eyeballs is enabled.- Fix
legacy::Client
to return better errors if available on the connection.What's Changed
- fix(client): prefer IPv6 addresses before IPv4 even if resolver ordered differently by
@seanmonstar
in hyperium/hyper-util#194- chore(test): make proxy test robust wrt IPv4/v6 by
@Fabian-Gruenbichler
in hyperium/hyper-util#195- refactor: limit dependency futures-util to tests and client-legacy by
@hanna-kruppe
in hyperium/hyper-util#192- Fix some clippy lints by
@jplatte
in hyperium/hyper-util#196- ConnectErrors improvements by
@seanmonstar
in hyperium/hyper-util#197- fix(client): race in connection errors propagation by
@dare3path
in hyperium/hyper-util#184New Contributors
@Fabian-Gruenbichler
made their first contribution in hyperium/hyper-util#195@hanna-kruppe
made their first contribution in hyperium/hyper-util#192@jplatte
made their first contribution in hyperium/hyper-util#196@dare3path
made their first contribution in hyperium/hyper-util#184Full Changelog: https://github.com/hyperium/hyper-util/compare/v0.1.12...v0.1.13
Sourced from hyper-util's changelog.
0.1.13 (2025-05-27)
- Fix
HttpConnector
to always prefer IPv6 addresses first, if happy eyeballs is enabled.- Fix
legacy::Client
to return better errors if available on the connection.
2c3c55f
v0.1.13a01e6b2
fix(client): improve client errors details if available (#184)fc1d699
refactor(client): add socket addr to ConnectError0959d46
refactor(client): return the first connect error, not the last6328823
refactor(client): don't allocate for ConnectError messages3a971c9
Fix some clippy lints (#196)2b2c352
refactor: limit dependency futures-util to tests and client-legacy (#192)1bcd489
chore(test): make proxy test robust wrt IPv4/v6 (#195)d3b8440
fix(client): prefer IPv6 addresses before IPv4 even if resolver ordered
diffe...