Releases: seanmonstar/reqwest
Releases Β· seanmonstar/reqwest
v0.11.27
What's Changed
- Add
hickory-dns
feature, deprecatingtrust-dns
. - (wasm) Fix
Form::text()
to not set octet-stream for plain text fields.
New Contributors
Full Changelog: v0.11.26...v0.11.27
v0.11.26
- Revert
system-configuration
upgrade, which broke MSRV on macOS.
v0.11.25
What's Changed
- Fix
Certificate::from_pem_bundle()
parsing. - Fix Apple linker errors from detecting system proxies.
New Contributors
- @cdata made their first contribution in #2130
- @yottalogical made their first contribution in #2154
Full Changelog: v0.11.24...v0.11.25
v0.11.24
What's Changed
- Add
Certificate::from_pem_bundle()
to add a bundle. - Add
http3_prior_knowledge()
to blocking client builder. - Remove
Sync
bounds requirement forBody::wrap_stream()
. - Fix HTTP/2 to retry
REFUSED_STREAM
requests. - Fix instances of converting
Url
toUri
that could panic.
New Contributors
- @magurotuna made their first contribution in #2081
- @michaelciraci made their first contribution in #2102
- @basic-bgnr made their first contribution in #2110
- @jgraef made their first contribution in #2114
- @LucasPickering made their first contribution in #2040
- @gibbz00 made their first contribution in #2032
Full Changelog: v0.11.23...v0.11.24
v0.11.23
What's Changed
- Add
Proxy::custom_http_auth(val)
for setting the rawProxy-Authorization
header when connecting to proxies. - Fix redirect to reject locations that are not
http://
orhttps://
. - Fix setting
nodelay
when TLS is enabled but URL is HTTP. - (wasm) Add
ClientBuilder::user_agent(val)
. - (wasm) add
multipart::Form::headers(headers)
.
New Contributors
- @tnull made their first contribution in #1993
- @FirelightFlagboy made their first contribution in #2018
- @bitfl0wer made their first contribution in #2036
- @tshepang made their first contribution in #2048
- @Noah-Kennedy made their first contribution in #2053
- @abls made their first contribution in #2062
- @lorepozo made their first contribution in #2064
- @jan-auer made their first contribution in #2068
v0.11.21
What's Changed
- Add automatically detecting macOS proxy settings.
- Add
ClientBuilder::tls_info(bool)
, which will puttls::TlsInfo
into the response extensions. - Fix trust-dns resolver from possible hangs.
- Fix connect timeout to be split among multiple IP addresses.
New Contributors
- @SpeedReach made their first contribution in #1960
- @jefflloyd made their first contribution in #1955
- @droe made their first contribution in #1938
- @conradludgate made their first contribution in #1940
v0.11.20
What's Changed
- Fix
deflate
decompression back to using zlib, as outlined in the spec.
v0.11.19
What's Changed
- Add
ClientBuilder::http1_ignore_invalid_headers_in_responses()
option. - Add
ClientBuilder::http1_allow_spaces_after_header_name_in_responses()
option. - Add support for
ALL_PROXY
environment variable. - Add support for
use_preconfigured_tls
when combined with HTTP/3. - Fix
deflate
decompression from using the zlib decoder. - Fix
Response::{text, text_with_charset}()
to strip BOM characters. - Fix a panic when HTTP/3 is used if UDP isn't able to connect.
- Fix some dependencies for HTTP/3.
- Increase MSRV to 1.63.
New Contributors
- @nyurik made their first contribution in #1849
- @smndtrl made their first contribution in #1856
- @attila-lin made their first contribution in #1869
- @ollyswanson made their first contribution in #1898
- @VivekPanyam made their first contribution in #1903
- @bouzuya made their first contribution in #1922
- @cipherbrain made their first contribution in #1927
- @T-Sujeeban made their first contribution in #1926
- @eric-seppanen made their first contribution in #1852
v0.11.18
What's Changed
- Fix
RequestBuilder::json()
method from overriding a previously setcontent-type
header. An existing value will be left in place. - Upgrade internal dependencies for rustls and compression.