[PR #175] [MERGED] Update reqwest requirement from 0.10.7 to 0.11.0 #289

Closed
opened 2026-02-27 20:24:06 +03:00 by kerem · 0 comments
Owner

📋 Pull Request Information

Original PR: https://github.com/ramsayleung/rspotify/pull/175
Author: @dependabot[bot]
Created: 1/5/2021
Status: Merged
Merged: 1/6/2021
Merged by: @ramsayleung

Base: masterHead: dependabot/cargo/reqwest-0.11.0


📝 Commits (2)

  • 33cada1 Update reqwest requirement from 0.10.7 to 0.11.0
  • 4f7ea15 bump tokio to 1.0, too

📊 Changes

1 file changed (+2 additions, -2 deletions)

View changed files

📝 Cargo.toml (+2 -2)

📄 Description

Updates the requirements on reqwest to permit the latest version.

Release notes

Sourced from reqwest's releases.

v0.11.0

  • Change multipart to be an optional cargo feature.
  • Remove deprecated methods.
  • Update to Tokio v1.0.
  • Update to Bytes v1.0.
  • Update to hyper v0.14.
Changelog

Sourced from reqwest's changelog.

v0.11.0

  • Change multipart to be an optional cargo feature.

  • Remove deprecated methods.

  • Update to Tokio v1.0.

  • Update to Bytes v1.0.

  • Update to hyper v0.14.

v0.10.10

  • Add tcp_keepalive option to blocking::ClientBuilder.
  • Add multipart::Part::stream_with_length constructor, to create a streaming part with a known length.
  • Add ClientBuilder::https_only option, to allow requiring URLs to be https.
  • Change default tcp_keepalive value to be disabled.

v0.10.9

  • Add rustls-tls-native-roots, rustls-tls-webpki-roots, and rustls-tls-manual-roots Cargo features, to configure which certificate roots to use with rustls.
  • Add ClientBuilder::tcp_keepalive() method to enable TCP keepalive.
  • Add ClientBuilder::http1_writev() method to force enable or disable vectored writes.
  • Add Error::is_connect() method to identify if the error is related to connection-establishment.
  • Add blocking::ClientBuilder::brotli() method.
  • Windows: Update default protocol to HTTP for HTTPS system proxies, when a protocol is not specified.
  • (wasm) Add support for Cloudflare workers runtime.
  • (wasm) Add ClientBuilder::default_headers() method.
  • (wasm) Add RequestBuilder::build() method.

v0.10.8

  • Add must_use to RequestBuilder and ClientBuilder.
  • Fix Windows system proxy detection of Fiddler proxies.
  • (wasm) Add headers method to RequestBuilder.
  • (wasm) Add execute method to Client.
  • (wasm) Add TryFrom<http::Request> for Request.
  • (wasm) Fix checking for global window to work in non-browser environments.
  • (wasm) Fix sending of an empty body when not required.

v0.10.7

  • Add NO_PROXY environment variable support.
  • Add more Error::{is_request, is_body, is_decode} getters.
  • Add conversion of reqwest::ClientBuilder to reqwest::blocking::ClientBuilder.
  • Add headers_mut() to reqwest::blocking::Response.
  • (wasm) Add form(), query(), multipart and bearer_auth() to RequestBuilder.

v0.10.6

  • Changed handling of URLs that don't have http: or https: schemes, returning an error instead.
  • Fixed a potential hyper-rustls feature conflict.

... (truncated)

Commits

Dependabot will resolve any conflicts with this PR as long as you don't alter it yourself. You can also trigger a rebase manually by commenting @dependabot rebase.


Dependabot commands and options

You can trigger Dependabot actions by commenting on this PR:

  • @dependabot rebase will rebase this PR
  • @dependabot recreate will recreate this PR, overwriting any edits that have been made to it
  • @dependabot merge will merge this PR after your CI passes on it
  • @dependabot squash and merge will squash and merge this PR after your CI passes on it
  • @dependabot cancel merge will cancel a previously requested merge and block automerging
  • @dependabot reopen will reopen this PR if it is closed
  • @dependabot close will close this PR and stop Dependabot recreating it. You can achieve the same result by closing it manually
  • @dependabot ignore this major version will close this PR and stop Dependabot creating any more for this major version (unless you reopen the PR or upgrade to it yourself)
  • @dependabot ignore this minor version will close this PR and stop Dependabot creating any more for this minor version (unless you reopen the PR or upgrade to it yourself)
  • @dependabot ignore this dependency will close this PR and stop Dependabot creating any more for this dependency (unless you reopen the PR or upgrade to it yourself)

🔄 This issue represents a GitHub Pull Request. It cannot be merged through Gitea due to API limitations.

## 📋 Pull Request Information **Original PR:** https://github.com/ramsayleung/rspotify/pull/175 **Author:** [@dependabot[bot]](https://github.com/apps/dependabot) **Created:** 1/5/2021 **Status:** ✅ Merged **Merged:** 1/6/2021 **Merged by:** [@ramsayleung](https://github.com/ramsayleung) **Base:** `master` ← **Head:** `dependabot/cargo/reqwest-0.11.0` --- ### 📝 Commits (2) - [`33cada1`](https://github.com/ramsayleung/rspotify/commit/33cada179637d8a28aaf72ef7674a495637476c3) Update reqwest requirement from 0.10.7 to 0.11.0 - [`4f7ea15`](https://github.com/ramsayleung/rspotify/commit/4f7ea157af640931ac26c61a5222b6f551a77752) bump tokio to 1.0, too ### 📊 Changes **1 file changed** (+2 additions, -2 deletions) <details> <summary>View changed files</summary> 📝 `Cargo.toml` (+2 -2) </details> ### 📄 Description Updates the requirements on [reqwest](https://github.com/seanmonstar/reqwest) to permit the latest version. <details> <summary>Release notes</summary> <p><em>Sourced from <a href="https://github.com/seanmonstar/reqwest/releases">reqwest's releases</a>.</em></p> <blockquote> <h2>v0.11.0</h2> <ul> <li>Change <code>multipart</code> to be an optional cargo feature.</li> <li>Remove deprecated methods.</li> <li>Update to Tokio v1.0.</li> <li>Update to Bytes v1.0.</li> <li>Update to hyper v0.14.</li> </ul> </blockquote> </details> <details> <summary>Changelog</summary> <p><em>Sourced from <a href="https://github.com/seanmonstar/reqwest/blob/master/CHANGELOG.md">reqwest's changelog</a>.</em></p> <blockquote> <h1>v0.11.0</h1> <ul> <li> <p>Change <code>multipart</code> to be an optional cargo feature.</p> </li> <li> <p>Remove deprecated methods.</p> </li> <li> <p>Update to Tokio v1.0.</p> </li> <li> <p>Update to Bytes v1.0.</p> </li> <li> <p>Update to hyper v0.14.</p> </li> </ul> <h2>v0.10.10</h2> <ul> <li>Add <code>tcp_keepalive</code> option to <code>blocking::ClientBuilder</code>.</li> <li>Add <code>multipart::Part::stream_with_length</code> constructor, to create a streaming part with a known length.</li> <li>Add <code>ClientBuilder::https_only</code> option, to allow requiring URLs to be <code>https</code>.</li> <li>Change default <code>tcp_keepalive</code> value to be disabled.</li> </ul> <h2>v0.10.9</h2> <ul> <li>Add <code>rustls-tls-native-roots</code>, <code>rustls-tls-webpki-roots</code>, and <code>rustls-tls-manual-roots</code> Cargo features, to configure which certificate roots to use with rustls.</li> <li>Add <code>ClientBuilder::tcp_keepalive()</code> method to enable TCP keepalive.</li> <li>Add <code>ClientBuilder::http1_writev()</code> method to force enable or disable vectored writes.</li> <li>Add <code>Error::is_connect()</code> method to identify if the error is related to connection-establishment.</li> <li>Add <code>blocking::ClientBuilder::brotli()</code> method.</li> <li>Windows: Update default protocol to HTTP for HTTPS system proxies, when a protocol is not specified.</li> <li>(wasm) Add support for Cloudflare workers runtime.</li> <li>(wasm) Add <code>ClientBuilder::default_headers()</code> method.</li> <li>(wasm) Add <code>RequestBuilder::build()</code> method.</li> </ul> <h2>v0.10.8</h2> <ul> <li>Add <code>must_use</code> to <code>RequestBuilder</code> and <code>ClientBuilder</code>.</li> <li>Fix Windows system proxy detection of Fiddler proxies.</li> <li>(wasm) Add <code>headers</code> method to <code>RequestBuilder</code>.</li> <li>(wasm) Add <code>execute</code> method to <code>Client</code>.</li> <li>(wasm) Add <code>TryFrom&lt;http::Request&gt;</code> for <code>Request</code>.</li> <li>(wasm) Fix checking for global <code>window</code> to work in non-browser environments.</li> <li>(wasm) Fix sending of an empty body when not required.</li> </ul> <h2>v0.10.7</h2> <ul> <li>Add <code>NO_PROXY</code> environment variable support.</li> <li>Add more <code>Error::{is_request, is_body, is_decode}</code> getters.</li> <li>Add conversion of <code>reqwest::ClientBuilder</code> to <code>reqwest::blocking::ClientBuilder</code>.</li> <li>Add <code>headers_mut()</code> to <code>reqwest::blocking::Response</code>.</li> <li>(wasm) Add <code>form()</code>, <code>query()</code>, <code>multipart</code> and <code>bearer_auth()</code> to <code>RequestBuilder</code>.</li> </ul> <h2>v0.10.6</h2> <ul> <li>Changed handling of URLs that don't have <code>http:</code> or <code>https:</code> schemes, returning an error instead.</li> <li>Fixed a potential hyper-rustls feature conflict.</li> </ul> <!-- raw HTML omitted --> </blockquote> <p>... (truncated)</p> </details> <details> <summary>Commits</summary> <ul> <li><a href="https://github.com/seanmonstar/reqwest/commit/bd9ff9f371b756decf26fbbde1687433b0f63774"><code>bd9ff9f</code></a> v0.11.0</li> <li><a href="https://github.com/seanmonstar/reqwest/commit/afed48cafd58cc9d3697639052a1040112522931"><code>afed48c</code></a> Make multipart an optional feature (default off) (<a href="https://github-redirect.dependabot.com/seanmonstar/reqwest/issues/1128">#1128</a>)</li> <li><a href="https://github.com/seanmonstar/reqwest/commit/1f425a0244bcd7b4565dceb9076450d951f2ec03"><code>1f425a0</code></a> example: update usage doc for blocking example (<a href="https://github-redirect.dependabot.com/seanmonstar/reqwest/issues/1112">#1112</a>)</li> <li><a href="https://github.com/seanmonstar/reqwest/commit/3fb2c1c14376738c96e7950beb96d2b68d72a35a"><code>3fb2c1c</code></a> Remove deprecated features (<a href="https://github-redirect.dependabot.com/seanmonstar/reqwest/issues/1124">#1124</a>)</li> <li><a href="https://github.com/seanmonstar/reqwest/commit/a19eb3419637856d6d42f55dff6e4790613b2933"><code>a19eb34</code></a> Update to tokio 1.0, bytes 1.0 (<a href="https://github-redirect.dependabot.com/seanmonstar/reqwest/issues/1076">#1076</a>)</li> <li><a href="https://github.com/seanmonstar/reqwest/commit/5ee4fe5ab64a2e3d81efb9540cb9bdb98b8d6938"><code>5ee4fe5</code></a> Fix documentation line in for wasm Response</li> <li><a href="https://github.com/seanmonstar/reqwest/commit/73990a7a42267548a87945f22f08c951656191b5"><code>73990a7</code></a> Add From&lt;Bytes&gt; for blocking::Body (<a href="https://github-redirect.dependabot.com/seanmonstar/reqwest/issues/1114">#1114</a>)</li> <li><a href="https://github.com/seanmonstar/reqwest/commit/5099192b92df49f5fe7794b0112ec0f3a0a58ca7"><code>5099192</code></a> v0.10.10</li> <li><a href="https://github.com/seanmonstar/reqwest/commit/46efd058105905dbac4fac83d76a3980df56881c"><code>46efd05</code></a> Change default tcp_keepalive value to be disabled (<a href="https://github-redirect.dependabot.com/seanmonstar/reqwest/issues/1113">#1113</a>)</li> <li><a href="https://github.com/seanmonstar/reqwest/commit/3ca0bd98e87f4286ecbdcfd924755bda4436a212"><code>3ca0bd9</code></a> Bump ini from 1.3.5 to 1.3.8 in /examples/wasm_github_fetch (<a href="https://github-redirect.dependabot.com/seanmonstar/reqwest/issues/1111">#1111</a>)</li> <li>Additional commits viewable in <a href="https://github.com/seanmonstar/reqwest/compare/v0.10.7...v0.11.0">compare view</a></li> </ul> </details> <br /> Dependabot will resolve any conflicts with this PR as long as you don't alter it yourself. You can also trigger a rebase manually by commenting `@dependabot rebase`. [//]: # (dependabot-automerge-start) [//]: # (dependabot-automerge-end) --- <details> <summary>Dependabot commands and options</summary> <br /> You can trigger Dependabot actions by commenting on this PR: - `@dependabot rebase` will rebase this PR - `@dependabot recreate` will recreate this PR, overwriting any edits that have been made to it - `@dependabot merge` will merge this PR after your CI passes on it - `@dependabot squash and merge` will squash and merge this PR after your CI passes on it - `@dependabot cancel merge` will cancel a previously requested merge and block automerging - `@dependabot reopen` will reopen this PR if it is closed - `@dependabot close` will close this PR and stop Dependabot recreating it. You can achieve the same result by closing it manually - `@dependabot ignore this major version` will close this PR and stop Dependabot creating any more for this major version (unless you reopen the PR or upgrade to it yourself) - `@dependabot ignore this minor version` will close this PR and stop Dependabot creating any more for this minor version (unless you reopen the PR or upgrade to it yourself) - `@dependabot ignore this dependency` will close this PR and stop Dependabot creating any more for this dependency (unless you reopen the PR or upgrade to it yourself) </details> --- <sub>🔄 This issue represents a GitHub Pull Request. It cannot be merged through Gitea due to API limitations.</sub>
kerem 2026-02-27 20:24:06 +03:00
Sign in to join this conversation.
No milestone
No project
No assignees
1 participant
Notifications
Due date
The due date is invalid or out of range. Please use the format "yyyy-mm-dd".

No due date set.

Dependencies

No dependencies set.

Reference
starred/rspotify#289
No description provided.