reqwest v0.9.6 Release Notes

  • ๐Ÿ”‹ Features

    • โž• Add Proxy::basic_auth method to support proxy authorization.
    • โž• Add rustls-tls optional feature to use rustls instead of native-tls.
    • โž• Add try_clone method to Request and RequestBuilder.
    • โž• Add reqwest::async::multipart support, similar to the synchronous API.
    • โž• Adds default-tls-vendored optional feature to vendor OpenSSL.

    ๐Ÿ›  Fixes

    • ๐Ÿ›  Fix panic from top-level reqwest::get if client builder fails to build.
    • โœ‚ Removed timeout waiting for reqwest::Client runtime to startup.
    • ๐Ÿ›  Fix RequestBuilder::headers to properly append extra headers of the same name.

    ๐ŸŽ Performance

    • Replaced DNS threadpool using getaddrinfo with a non-blocking DNS resolver.