[PR #715] [MERGED] build(deps): bump reqwest from 0.12.5 to 0.12.7 #6514

Closed
opened 2026-05-23 01:56:20 +01:00 by JakeStanger · 0 comments
Owner

📋 Pull Request Information

Original PR: https://github.com/JakeStanger/ironbar/pull/715
Author: @dependabot[bot]
Created: 8/26/2024
Status: Merged
Merged: 8/27/2024
Merged by: @JakeStanger

Base: masterHead: dependabot/cargo/reqwest-0.12.7


📝 Commits (1)

  • 77673a3 build(deps): bump reqwest from 0.12.5 to 0.12.7

📊 Changes

2 files changed (+37 additions, -14 deletions)

View changed files

📝 Cargo.lock (+36 -13)
📝 Cargo.toml (+1 -1)

📄 Description

Bumps reqwest from 0.12.5 to 0.12.7.

Release notes

Sourced from reqwest's releases.

v0.12.7

What's Changed

  • Revert adding impl Service<http::Request<_>> for Client.

Full Changelog: https://github.com/seanmonstar/reqwest/compare/v0.12.6...v0.12.7

v0.12.6

What's Changed

  • Add support for danger_accept_invalid_hostnames for rustls.
  • Add impl Service<http::Request<Body>> for Client and &'_ Client.
  • Add support for !Sync bodies in Body::wrap_stream().
  • Enable happy eyeballs when hickory-dns is used.
  • Fix Proxy so that HTTP(S)_PROXY values take precendence over ALL_PROXY.
  • Fix blocking::RequestBuilder::header() from unsetting sensitive on passed header values.

New Contributors

Thanks again

Full Changelog: https://github.com/seanmonstar/reqwest/compare/v0.12.5...v0.12.6

Changelog

Sourced from reqwest's changelog.

v0.12.7

  • Revert adding impl Service<http::Request<_>> for Client.

v0.12.6

  • Add support for danger_accept_invalid_hostnames for rustls.
  • Add impl Service<http::Request<Body>> for Client and &'_ Client.
  • Add support for !Sync bodies in Body::wrap_stream().
  • Enable happy eyeballs when hickory-dns is used.
  • Fix Proxy so that HTTP(S)_PROXY values take precendence over ALL_PROXY.
  • Fix blocking::RequestBuilder::header() from unsetting sensitive on passed header values.
Commits
  • 88bd9be v0.12.7
  • 68127f0 Revert "feat: Add impl Service\<http::Request<Body>> for Client and `&'_ C...
  • b2a28f5 v0.12.6
  • 522216e feat: Add impl Service\<http::Request<Body>> for Client and &'_ Client (...
  • 646b1f8 chore: update macOS system-configuration dep (#2368)
  • 85dd6da dns: improve error message for hickory-dns and warn in docs (#2389)
  • bfd31be docs: Improve RequestBuilder::multipart's documentation (#2388)
  • 8c7f338 chore: bump dev-dependency libflate (#2382)
  • dddf877 chore: bump h3 dependency
  • a53c944 chore: fix some comments
  • Additional commits viewable in compare view

Dependabot compatibility score

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 show <dependency name> ignore conditions will show all of the ignore conditions of the specified dependency
  • @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/JakeStanger/ironbar/pull/715 **Author:** [@dependabot[bot]](https://github.com/apps/dependabot) **Created:** 8/26/2024 **Status:** ✅ Merged **Merged:** 8/27/2024 **Merged by:** [@JakeStanger](https://github.com/JakeStanger) **Base:** `master` ← **Head:** `dependabot/cargo/reqwest-0.12.7` --- ### 📝 Commits (1) - [`77673a3`](https://github.com/JakeStanger/ironbar/commit/77673a305d7590658180a0305dbe4236b14671f5) build(deps): bump reqwest from 0.12.5 to 0.12.7 ### 📊 Changes **2 files changed** (+37 additions, -14 deletions) <details> <summary>View changed files</summary> 📝 `Cargo.lock` (+36 -13) 📝 `Cargo.toml` (+1 -1) </details> ### 📄 Description Bumps [reqwest](https://github.com/seanmonstar/reqwest) from 0.12.5 to 0.12.7. <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.12.7</h2> <h2>What's Changed</h2> <ul> <li>Revert adding <code>impl Service&lt;http::Request&lt;_&gt;&gt;</code> for <code>Client</code>.</li> </ul> <p><strong>Full Changelog</strong>: <a href="https://github.com/seanmonstar/reqwest/compare/v0.12.6...v0.12.7">https://github.com/seanmonstar/reqwest/compare/v0.12.6...v0.12.7</a></p> <h2>v0.12.6</h2> <h2>What's Changed</h2> <ul> <li>Add support for <code>danger_accept_invalid_hostnames</code> for <code>rustls</code>.</li> <li>Add <code>impl Service&lt;http::Request&lt;Body&gt;&gt;</code> for <code>Client</code> and <code>&amp;'_ Client</code>.</li> <li>Add support for <code>!Sync</code> bodies in <code>Body::wrap_stream()</code>.</li> <li>Enable happy eyeballs when <code>hickory-dns</code> is used.</li> <li>Fix <code>Proxy</code> so that <code>HTTP(S)_PROXY</code> values take precendence over <code>ALL_PROXY</code>.</li> <li>Fix <code>blocking::RequestBuilder::header()</code> from unsetting <code>sensitive</code> on passed header values.</li> </ul> <h2>New Contributors</h2> <ul> <li><a href="https://github.com/schopin-pro"><code>@​schopin-pro</code></a> made their first contribution in <a href="https://redirect.github.com/seanmonstar/reqwest/pull/2341">seanmonstar/reqwest#2341</a></li> <li><a href="https://github.com/Ten0"><code>@​Ten0</code></a> made their first contribution in <a href="https://redirect.github.com/seanmonstar/reqwest/pull/2353">seanmonstar/reqwest#2353</a></li> <li><a href="https://github.com/thalesfragoso"><code>@​thalesfragoso</code></a> made their first contribution in <a href="https://redirect.github.com/seanmonstar/reqwest/pull/2249">seanmonstar/reqwest#2249</a></li> <li><a href="https://github.com/nipunn1313"><code>@​nipunn1313</code></a> made their first contribution in <a href="https://redirect.github.com/seanmonstar/reqwest/pull/2361">seanmonstar/reqwest#2361</a></li> <li><a href="https://github.com/Threated"><code>@​Threated</code></a> made their first contribution in <a href="https://redirect.github.com/seanmonstar/reqwest/pull/2370">seanmonstar/reqwest#2370</a></li> <li><a href="https://github.com/FlowerCode"><code>@​FlowerCode</code></a> made their first contribution in <a href="https://redirect.github.com/seanmonstar/reqwest/pull/2380">seanmonstar/reqwest#2380</a></li> <li><a href="https://github.com/zeling"><code>@​zeling</code></a> made their first contribution in <a href="https://redirect.github.com/seanmonstar/reqwest/pull/2378">seanmonstar/reqwest#2378</a></li> <li><a href="https://github.com/murongshaozong"><code>@​murongshaozong</code></a> made their first contribution in <a href="https://redirect.github.com/seanmonstar/reqwest/pull/2385">seanmonstar/reqwest#2385</a></li> <li><a href="https://github.com/camio"><code>@​camio</code></a> made their first contribution in <a href="https://redirect.github.com/seanmonstar/reqwest/pull/2388">seanmonstar/reqwest#2388</a></li> <li><a href="https://github.com/alekseysidorov"><code>@​alekseysidorov</code></a> made their first contribution in <a href="https://redirect.github.com/seanmonstar/reqwest/pull/2356">seanmonstar/reqwest#2356</a></li> </ul> <h2>Thanks again</h2> <ul> <li><a href="https://github.com/seanmonstar"><code>@​seanmonstar</code></a></li> <li><a href="https://github.com/nyurik"><code>@​nyurik</code></a></li> </ul> <p><strong>Full Changelog</strong>: <a href="https://github.com/seanmonstar/reqwest/compare/v0.12.5...v0.12.6">https://github.com/seanmonstar/reqwest/compare/v0.12.5...v0.12.6</a></p> </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> <h2>v0.12.7</h2> <ul> <li>Revert adding <code>impl Service&lt;http::Request&lt;_&gt;&gt;</code> for <code>Client</code>.</li> </ul> <h2>v0.12.6</h2> <ul> <li>Add support for <code>danger_accept_invalid_hostnames</code> for <code>rustls</code>.</li> <li>Add <code>impl Service&lt;http::Request&lt;Body&gt;&gt;</code> for <code>Client</code> and <code>&amp;'_ Client</code>.</li> <li>Add support for <code>!Sync</code> bodies in <code>Body::wrap_stream()</code>.</li> <li>Enable happy eyeballs when <code>hickory-dns</code> is used.</li> <li>Fix <code>Proxy</code> so that <code>HTTP(S)_PROXY</code> values take precendence over <code>ALL_PROXY</code>.</li> <li>Fix <code>blocking::RequestBuilder::header()</code> from unsetting <code>sensitive</code> on passed header values.</li> </ul> </blockquote> </details> <details> <summary>Commits</summary> <ul> <li><a href="https://github.com/seanmonstar/reqwest/commit/88bd9be6df0ad19957f88f6a1ab5592917f4f9ca"><code>88bd9be</code></a> v0.12.7</li> <li><a href="https://github.com/seanmonstar/reqwest/commit/68127f0425e510d2319f4fc22f97f84e5612e63d"><code>68127f0</code></a> Revert &quot;feat: Add <code>impl Service\&lt;http::Request&lt;Body&gt;&gt;</code> for <code>Client</code> and `&amp;'_ C...</li> <li><a href="https://github.com/seanmonstar/reqwest/commit/b2a28f5ec370aa02a16ce12430172344c67aed0f"><code>b2a28f5</code></a> v0.12.6</li> <li><a href="https://github.com/seanmonstar/reqwest/commit/522216e890ccb13c43fb0d92af9598b3bedaaec5"><code>522216e</code></a> feat: Add <code>impl Service\&lt;http::Request&lt;Body&gt;&gt;</code> for <code>Client</code> and <code>&amp;'_ Client</code> (...</li> <li><a href="https://github.com/seanmonstar/reqwest/commit/646b1f80842fb513c31ad3d78374b13932c721c4"><code>646b1f8</code></a> chore: update macOS system-configuration dep (<a href="https://redirect.github.com/seanmonstar/reqwest/issues/2368">#2368</a>)</li> <li><a href="https://github.com/seanmonstar/reqwest/commit/85dd6dad826449a92975ccbb815b9aaebfede310"><code>85dd6da</code></a> dns: improve error message for hickory-dns and warn in docs (<a href="https://redirect.github.com/seanmonstar/reqwest/issues/2389">#2389</a>)</li> <li><a href="https://github.com/seanmonstar/reqwest/commit/bfd31beb1c3c06a047fea933243513945620983a"><code>bfd31be</code></a> docs: Improve RequestBuilder::multipart's documentation (<a href="https://redirect.github.com/seanmonstar/reqwest/issues/2388">#2388</a>)</li> <li><a href="https://github.com/seanmonstar/reqwest/commit/8c7f338507e89279b15e051a00c68124e5f1e353"><code>8c7f338</code></a> chore: bump dev-dependency libflate (<a href="https://redirect.github.com/seanmonstar/reqwest/issues/2382">#2382</a>)</li> <li><a href="https://github.com/seanmonstar/reqwest/commit/dddf87734018ddad8c9bc084b5ff351bb31ea9c0"><code>dddf877</code></a> chore: bump h3 dependency</li> <li><a href="https://github.com/seanmonstar/reqwest/commit/a53c944b24f690adc74d5f09ab47a2e6efe1ca52"><code>a53c944</code></a> chore: fix some comments</li> <li>Additional commits viewable in <a href="https://github.com/seanmonstar/reqwest/compare/v0.12.5...v0.12.7">compare view</a></li> </ul> </details> <br /> [![Dependabot compatibility score](https://dependabot-badges.githubapp.com/badges/compatibility_score?dependency-name=reqwest&package-manager=cargo&previous-version=0.12.5&new-version=0.12.7)](https://docs.github.com/en/github/managing-security-vulnerabilities/about-dependabot-security-updates#about-compatibility-scores) 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 show <dependency name> ignore conditions` will show all of the ignore conditions of the specified dependency - `@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>
JakeStanger 2026-05-23 01:56:20 +01: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
JakeStanger/ironbar#6514
No description provided.