All Versions
71
Latest Version
Avg Release Cycle
30 days
Latest Release
-
Changelog History
Page 1
Changelog History
Page 1
-
v0.11.10 Changes
- โ Add
Error::url()
to access the URL of an error. - โ Add
Response::extensions()
to access thehttp::Extensions
of a response. - ๐ Fix
rustls-native-certs
to log an error instead of panicking when loading an invalid system certificate. - ๐ Fix passing Basic Authorization header to proxies.
- โ Add
-
v0.11.9 Changes
- โ Add
ClientBuilder::http09_responses(bool)
option to allow receiving HTTP/0.9 responses. - ๐ Fix HTTP/2 to retry requests interrupted by an HTTP/2 graceful shutdown.
- ๐ Fix proxy loading from environment variables to ignore empty values.
- โ Add
-
v0.11.8 Changes
- โก๏ธ Update internal webpki-roots dependency.
-
v0.11.7 Changes
- โ Add
blocking::ClientBuilder::resolve()
option, matching the async builder. - Implement
From<tokio::fs::File>
forBody
. - ๐ Fix
blocking
request-scoped timeout applying to bodies as well. - (wasm) Fix request bodies using multipart vs formdata.
- โก๏ธ Update internal
rustls
to 0.20.
- โ Add
-
v0.11.6 Changes
- (wasm) Fix request bodies more.
-
v0.11.5 Changes
- โ Add
ClientBuilder::http1_only()
method. - Add
tls::Version
type, andClientBuilder::min_tls_version()
andClientBuilder::max_tls_version()
methods. - Implement
TryFrom<Request>
forhttp::Request
. - ๐ฏ Implement
Clone
forIdentity
. - ๐ Fix
NO_PROXY
environment variable parsing to more closely match curl's. Comma-separated entries are now trimmed for whitespace, and*
is allowed to match everything. - ๐ Fix redirection to respect
https_only
option. - (wasm) Add
Body::as_bytes()
method. - (wasm) Fix sometimes wrong conversation of bytes into a
JsValue
. - (wasm) Avoid dependency on serde-serialize feature.
- โ Add
-
v0.11.4 Changes
- โ Add
ClientBuilder::resolve()
option to override DNS resolution for specific domains. - โ Add
native-tls-alpn
Cargo feature to use ALPN with the native-tls backend. - โ Add
ClientBuilder::deflate()
option anddeflate
Cargo feature to support decoding response bodies using deflate. - โ Add
RequestBuilder::version()
to allow setting the HTTP version of a request. - ๐ Fix allowing "invalid" certificates with the
rustls-tls
backend, when the server uses TLS v1.2 or v1.3. - ๐ฏ (wasm) Add
try_clone
toRequest
andRequestBuilder
- โ Add
-
v0.11.3 Changes
- โ Add
impl From<hyper::Body> for reqwest::Body
. - (wasm) Add credentials mode methods to
RequestBuilder
.
- โ Add
-
v0.11.2 Changes
- โ Add
CookieStore
trait to customize the type that stores and retrieves cookies for a session. - โ Add
cookie::Jar
as a defaultCookieStore
, easing creating some session cookies before creating theClient
. - Add
ClientBuilder::http2_adaptive_window()
option to configure an adaptive HTTP2 flow control behavior. - Add
ClientBuilder::http2_max_frame_size()
option to adjust the maximum HTTP2 frame size that can be received. - Implement
IntoUrl
forString
, making it more convenient to create requests withformat!
.
- โ Add
-
v0.11.1 Changes
- Add
ClientBuilder::tls_built_in_root_certs()
option to disable built-in root certificates. - ๐ Fix
rustls-tls
glue to more often support ALPN to upgrade to HTTP/2. - ๐ Fix proxy parsing to assume
http://
if no scheme is found. - ๐ Fix connection pool idle reaping by enabling hyper's
runtime
feature. - (wasm) Add
Request::new()
constructor.
- Add