Skip to content

Commit

Permalink
Merge #149
Browse files Browse the repository at this point in the history
149: fix(deps): update rust crate reqwest to 0.11.20 r=renovate[bot] a=renovate[bot]

[![Mend Renovate](https://app.renovatebot.com/images/banner.svg)](https://renovatebot.com)

This PR contains the following updates:

| Package | Type | Update | Change |
|---|---|---|---|
| [reqwest](https://togithub.com/seanmonstar/reqwest) | dependencies | patch | `0.11.11` -> `0.11.20` |

---

### Release Notes

<details>
<summary>seanmonstar/reqwest (reqwest)</summary>

### [`v0.11.20`](https://togithub.com/seanmonstar/reqwest/blob/HEAD/CHANGELOG.md#v01120)

[Compare Source](https://togithub.com/seanmonstar/reqwest/compare/v0.11.19...v0.11.20)

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

### [`v0.11.19`](https://togithub.com/seanmonstar/reqwest/blob/HEAD/CHANGELOG.md#v01119)

[Compare Source](https://togithub.com/seanmonstar/reqwest/compare/v0.11.18...v0.11.19)

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

### [`v0.11.18`](https://togithub.com/seanmonstar/reqwest/blob/HEAD/CHANGELOG.md#v01118)

[Compare Source](https://togithub.com/seanmonstar/reqwest/compare/v0.11.17...v0.11.18)

-   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`](https://togithub.com/seanmonstar/reqwest/blob/HEAD/CHANGELOG.md#v01117)

[Compare Source](https://togithub.com/seanmonstar/reqwest/compare/v0.11.16...v0.11.17)

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

### [`v0.11.16`](https://togithub.com/seanmonstar/reqwest/blob/HEAD/CHANGELOG.md#v01116)

[Compare Source](https://togithub.com/seanmonstar/reqwest/compare/v0.11.15...v0.11.16)

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

### [`v0.11.15`](https://togithub.com/seanmonstar/reqwest/blob/HEAD/CHANGELOG.md#v01115)

[Compare Source](https://togithub.com/seanmonstar/reqwest/compare/v0.11.14...v0.11.15)

-   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`](https://togithub.com/seanmonstar/reqwest/blob/HEAD/CHANGELOG.md#v01114)

[Compare Source](https://togithub.com/seanmonstar/reqwest/compare/v0.11.13...v0.11.14)

-   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`](https://togithub.com/seanmonstar/reqwest/blob/HEAD/CHANGELOG.md#v01113)

[Compare Source](https://togithub.com/seanmonstar/reqwest/compare/v0.11.12...v0.11.13)

-   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`](https://togithub.com/seanmonstar/reqwest/blob/HEAD/CHANGELOG.md#v01112)

[Compare Source](https://togithub.com/seanmonstar/reqwest/compare/v0.11.11...v0.11.12)

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

</details>

---

### Configuration

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

🚦 **Automerge**: Enabled.

♻ **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.

---

 - [ ] <!-- rebase-check -->If you want to rebase/retry this PR, check this box

---

This PR has been generated by [Mend Renovate](https://www.mend.io/free-developer-tools/renovate/). View repository job log [here](https://developer.mend.io/github/jaysonsantos/aur-pkgbuild-updater).
<!--renovate-debug:eyJjcmVhdGVkSW5WZXIiOiIzNi42OC4xIiwidXBkYXRlZEluVmVyIjoiMzYuNjguMSIsInRhcmdldEJyYW5jaCI6Im1haW4ifQ==-->


Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
  • Loading branch information
bors[bot] and renovate[bot] authored Aug 29, 2023
2 parents 477afae + 8a4a8d7 commit c2c0b52
Show file tree
Hide file tree
Showing 2 changed files with 110 additions and 37 deletions.
145 changes: 109 additions & 36 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ directories = "4.0.1"
futures = "0.3.21"
lazy_static = "1.4.0"
lenient_semver = "0.4.2"
reqwest = { version = "0.11.11", features = ["json", "stream"] }
reqwest = { version = "0.11.20", features = ["json", "stream"] }
scraper = "0.13.0"
semver = { version = "1.0.10", features = ["serde"] }
serde = { version = "1.0.137", features = ["derive"] }
Expand Down

0 comments on commit c2c0b52

Please sign in to comment.