Reqwest Versions Save

An easy and powerful Rust HTTP Client

v0.11.21

6 months ago

What's Changed

  • Add automatically detecting macOS proxy settings.
  • Add ClientBuilder::tls_info(bool), which will put tls::TlsInfo into the response extensions.
  • Fix trust-dns resolver from possible hangs.
  • Fix connect timeout to be split among multiple IP addresses.

New Contributors

v0.11.20

8 months ago

What's Changed

  • Fix deflate decompression back to using zlib, as outlined in the spec.

v0.11.19

8 months ago

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

v0.11.18

11 months ago

What's Changed

  • Fix RequestBuilder::json() method from overriding a previously set content-type header. An existing value will be left in place.
  • Upgrade internal dependencies for rustls and compression.

New Contributors

v0.11.17

1 year ago

What's Changed

  • Upgrade internal dependencies of Experimental HTTP/3 to use quinn v0.9
  • (wasm) Fix blob url support

New Contributors

v0.11.16

1 year ago

What's Changed

v0.11.15

1 year ago

What's Changed

  • Add RequestBuilder methods to split and reconstruct from its parts.
  • Add experimental HTTP/3 support. 🧪3️🎉
  • Fix connection_verbose to log write_vectored calls.
  • (wasm) Make requests actually cancel if the future is dropped.

New Contributors

Full Changelog: https://github.com/seanmonstar/reqwest/compare/v0.11.14...v0.11.15

v0.11.14

1 year ago

What's Changed

  • Adds Proxy::no_proxy(url) that works like the NO_PROXY environment variable.
  • Adds multipart::Part::headers(headers) method to add custom headers.
  • (wasm) Add Response::bytes_stream().
  • Perf: several internal optimizations reducing copies and memory allocations.

New Contributors

v0.11.13

1 year ago

What's Changed

  • Add ClientBuilder::dns_resolver() option for custom DNS resolvers.
  • Add ClientBuilder::tls_sni(bool) option to enable or disable TLS Server Name Indication.
  • Add Identity::from_pkcs8_pem() constructor when using native-tls.
  • Fix redirect::Policy::limited(0) from following any redirects.

New Contributors

v0.11.12

1 year ago

What's Changed

  • Add ClientBuilder::resolve_to_addrs() which allows a slice of IP addresses to be specified for a single host.
  • Add Response::upgrade() to await whether the server agrees to an HTTP upgrade.

New Contributors ❤️