Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

fix(deps): update rust crate reqwest to 0.11.18 #65

Open
wants to merge 1 commit into
base: master
Choose a base branch
from

Conversation

renovate[bot]
Copy link
Contributor

@renovate renovate bot commented Jun 21, 2021

Mend Renovate

This PR contains the following updates:

Package Type Update Change
reqwest dependencies patch 0.11.3 -> 0.11.18

Release Notes

seanmonstar/reqwest (reqwest)

v0.11.18

Compare Source

  • 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.

v0.11.17

Compare Source

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

v0.11.16

Compare Source

  • Chore: set MSRV in Cargo.toml.
  • Docs: fix build on docs.rs

v0.11.15

Compare Source

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

v0.11.14

Compare Source

  • 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.

v0.11.13

Compare Source

  • 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.

v0.11.12

Compare Source

  • 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.

v0.11.11

Compare Source

  • Add HTTP/2 keep-alive configuration methods on ClientBuilder.
  • Add ClientBuilder::http1_allow_obsolete_multiline_headers_in_responses().
  • Add impl Service<Request> for Client and &'_ Client.
  • (wasm) Add RequestBuilder::basic_auth().
  • Fix RequestBuilder::header to not override sensitive if user explicitly set on a HeaderValue.
  • Fix rustls parsing of elliptic curve private keys.
  • Fix Proxy URL parsing of some invalid targets.

v0.11.10

Compare Source

  • Add Error::url() to access the URL of an error.
  • Add Response::extensions() to access the http::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.

v0.11.9

Compare Source

  • 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.

v0.11.8

Compare Source

  • Update internal webpki-roots dependency.

v0.11.7

Compare Source

  • Add blocking::ClientBuilder::resolve() option, matching the async builder.
  • Implement From<tokio::fs::File> for Body.
  • Fix blocking request-scoped timeout applying to bodies as well.
  • (wasm) Fix request bodies using multipart vs formdata.
  • Update internal rustls to 0.20.

v0.11.6

Compare Source

  • (wasm) Fix request bodies more.

v0.11.5

Compare Source

  • Add ClientBuilder::http1_only() method.
  • Add tls::Version type, and ClientBuilder::min_tls_version() and ClientBuilder::max_tls_version() methods.
  • Implement TryFrom<Request> for http::Request.
  • Implement Clone for Identity.
  • Fix NO_PROXYenvironment 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.

v0.11.4

Compare Source

  • 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 and deflate 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 to Request and RequestBuilder

Configuration

📅 Schedule: Branch creation - At any time (no schedule defined), Automerge - At any time (no schedule defined).

🚦 Automerge: Disabled by config. Please merge this manually once you are satisfied.

Rebasing: Whenever PR becomes conflicted, or you tick the rebase/retry checkbox.

🔕 Ignore: Close this PR and you won't be reminded about this update again.


  • If you want to rebase/retry this PR, check this box

This PR has been generated by Mend Renovate. View repository job log here.

@codecov
Copy link

codecov bot commented Jun 21, 2021

Codecov Report

Patch coverage has no change and project coverage change: -0.21 ⚠️

Comparison is base (9eaf1d8) 92.80% compared to head (d709739) 92.60%.

❗ Current head d709739 differs from pull request most recent head 86f35c6. Consider uploading reports for the commit 86f35c6 to get more accurate results

Additional details and impacted files
@@            Coverage Diff             @@
##           master      #65      +/-   ##
==========================================
- Coverage   92.80%   92.60%   -0.21%     
==========================================
  Files          29       29              
  Lines        3809     3813       +4     
==========================================
- Hits         3535     3531       -4     
- Misses        274      282       +8     

see 6 files with indirect coverage changes

☔ View full report in Codecov by Sentry.
📢 Do you have feedback about the report comment? Let us know in this issue.

@renovate renovate bot force-pushed the renovate/reqwest-0.x branch from d709739 to 52944cc Compare October 19, 2021 02:02
@renovate renovate bot changed the title fix(deps): update rust crate reqwest to 0.11.4 fix(deps): update rust crate reqwest to 0.11.6 Oct 19, 2021
@renovate renovate bot changed the title fix(deps): update rust crate reqwest to 0.11.6 fix(deps): update rust crate reqwest to 0.11.9 Mar 7, 2022
@renovate renovate bot force-pushed the renovate/reqwest-0.x branch from 52944cc to cb5bfaf Compare March 7, 2022 15:06
@renovate renovate bot changed the title fix(deps): update rust crate reqwest to 0.11.9 fix(deps): update rust crate reqwest to 0.11.10 Mar 26, 2022
@renovate renovate bot force-pushed the renovate/reqwest-0.x branch from cb5bfaf to 51815b0 Compare March 26, 2022 13:47
@renovate renovate bot force-pushed the renovate/reqwest-0.x branch from 51815b0 to 215adbb Compare June 18, 2022 13:26
@renovate renovate bot changed the title fix(deps): update rust crate reqwest to 0.11.10 fix(deps): update rust crate reqwest to 0.11.11 Jun 18, 2022
@renovate renovate bot force-pushed the renovate/reqwest-0.x branch from 215adbb to 75e64fc Compare September 25, 2022 17:41
@renovate renovate bot changed the title fix(deps): update rust crate reqwest to 0.11.11 fix(deps): update rust crate reqwest to 0.11.12 Sep 25, 2022
@renovate renovate bot force-pushed the renovate/reqwest-0.x branch from 75e64fc to 4f6c03f Compare November 20, 2022 14:46
@renovate renovate bot changed the title fix(deps): update rust crate reqwest to 0.11.12 fix(deps): update rust crate reqwest to 0.11.13 Nov 20, 2022
@renovate renovate bot changed the title fix(deps): update rust crate reqwest to 0.11.13 fix(deps): update rust crate reqwest to 0.11.14 Mar 16, 2023
@renovate renovate bot force-pushed the renovate/reqwest-0.x branch from 4f6c03f to b0578cc Compare March 16, 2023 20:02
@renovate renovate bot changed the title fix(deps): update rust crate reqwest to 0.11.14 fix(deps): update rust crate reqwest to 0.11.15 Mar 23, 2023
@renovate renovate bot force-pushed the renovate/reqwest-0.x branch from b0578cc to feb804b Compare March 23, 2023 15:11
@renovate renovate bot changed the title fix(deps): update rust crate reqwest to 0.11.15 fix(deps): update rust crate reqwest to 0.11.16 Mar 27, 2023
@renovate renovate bot force-pushed the renovate/reqwest-0.x branch from feb804b to 14bc8b6 Compare March 27, 2023 23:57
@renovate renovate bot force-pushed the renovate/reqwest-0.x branch from 14bc8b6 to 86f35c6 Compare May 28, 2023 10:47
@renovate renovate bot changed the title fix(deps): update rust crate reqwest to 0.11.16 fix(deps): update rust crate reqwest to 0.11.18 May 28, 2023
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

0 participants