Releases: http-rs/http-client
Releases · http-rs/http-client
6.5.3
6.5.2
Deps
- Now only uses
dashmapforh1-client.
6.5.1
Same as 6.5.0 with one change:
Config::max_connections_per_host() is now properly named Config::set_max_connections_per_host().
Added
Confighas been stabilized and is now available by default!wasm_clientsupport forConfig(only timeouts).Config::max_connections_per_host(Supported onh1_clientandcurl_client.)
Deprecated
H1Client::with_max_connections()will be superseded byConfig::max_connections_per_host.
6.5.0
(Yanked)
Added
Confighas been stabilized and is now available by default!wasm_clientsupport forConfig(only timeouts).Config::max_connections_per_host(Supported onh1_clientandcurl_client.)
Deprecated
H1Client::with_max_connections()will be superseded byConfig::max_connections_per_host.
6.4.1
Docs
- Added
"unstable-config"to the docs builds.
6.4.0
Added
- Added a new
unstable-configfeature, which exposes runtime configuration via a newConfigstruct.
6.3.5
Fixed
- Multiple headers of the same name are now present with any client backend and not just
h1_client. - Connection when multiple IPs are present for a hostname not function with the
h1_clientbackend.
6.3.4
Fixed
h1_clientconnection pools now properly check if connections are still alive before recycling them.- Like, actually properly this time.
- There is a test now to ensure closed connections don't cause errors.
6.3.3
Fixed
h1_clientconnection pools now properly check if connections are still alive before recycling them.
6.3.1
Fixed
- Allow http-client to build & run properly when
h1_clientis enabled without either tls option. - Prefer
rustlsif both tls features are enabled.
Internal
- More exhaustive CI for feature combinations.