[PR #1472] [MERGED] chore(deps): bump reqwest from 0.12.15 to 0.12.19 #1416

Closed
opened 2026-01-05 14:55:12 +01:00 by adam · 0 comments
Owner

📋 Pull Request Information

Original PR: https://github.com/LGUG2Z/komorebi/pull/1472
Author: @dependabot[bot]
Created: 6/2/2025
Status: Merged
Merged: 6/2/2025
Merged by: @LGUG2Z

Base: masterHead: dependabot/cargo/reqwest-0.12.19


📝 Commits (1)

  • b73c282 chore(deps): bump reqwest from 0.12.15 to 0.12.19

📊 Changes

1 file changed (+40 additions, -16 deletions)

View changed files

📝 Cargo.lock (+40 -16)

📄 Description

Bumps reqwest from 0.12.15 to 0.12.19.

Release notes

Sourced from reqwest's releases.

v0.12.19

What's Changed

Full Changelog: https://github.com/seanmonstar/reqwest/compare/v0.12.18...v0.12.19

v0.12.18

What's Changed

  • Fix compilation when socks enabled without TLS.

v0.12.17

What's Changed

v0.12.16

Highlights

  • Add ClientBuilder::http3_congestion_bbr() to enable BBR congestion control.
  • Add ClientBuilder::http3_send_grease() to configure whether to send use QUIC grease.
  • Add ClientBuilder::http3_max_field_section_size() to configure the maximum response headers.
  • Add ClientBuilder::tcp_keepalive_interval() to configure TCP probe interval.
  • Add ClientBuilder::tcp_keepalive_retries() to configure TCP probe count.
  • Add Proxy::headers() to add extra headers that should be sent to a proxy.
  • Fix redirect::Policy::limit() which had an off-by-1 error, allowing 1 more redirect than specified.
  • Fix HTTP/3 to support streaming request bodies.
  • (wasm) Fix null bodies when calling Response::bytes_stream().

What's Changed

... (truncated)

Changelog

Sourced from reqwest's changelog.

v0.12.19

  • Fix redirect that changes the method to GET should remove payload headers.
  • Fix redirect to only check the next scheme if the policy action is to follow.
  • (wasm) Fix compilation error if cookies feature is enabled (by the way, it's a noop feature in wasm).

v0.12.18

  • Fix compilation when socks enabled without TLS.

v0.12.17

  • Fix compilation on macOS.

v0.12.16

  • Add ClientBuilder::http3_congestion_bbr() to enable BBR congestion control.
  • Add ClientBuilder::http3_send_grease() to configure whether to send use QUIC grease.
  • Add ClientBuilder::http3_max_field_section_size() to configure the maximum response headers.
  • Add ClientBuilder::tcp_keepalive_interval() to configure TCP probe interval.
  • Add ClientBuilder::tcp_keepalive_retries() to configure TCP probe count.
  • Add Proxy::headers() to add extra headers that should be sent to a proxy.
  • Fix redirect::Policy::limit() which had an off-by-1 error, allowing 1 more redirect than specified.
  • Fix HTTP/3 to support streaming request bodies.
  • (wasm) Fix null bodies when calling Response::bytes_stream().
Commits
  • 8cf142b v0.12.19
  • 35b6c83 fix(redirect): Using tower-http patch to fix invalid content-length heade...
  • a54c4cf disable util::add_cookie_header on wasm targets
  • a7a2db1 ci: check cookies feature on wasm target
  • 522638d fix: only check scheme after redirect Policy return follow (#2710)
  • 2fde244 ci: apparently dependabot doesn't understand increase-if-necessary
  • 35a6601 refactor: report custom reason phrase in error message (#2697)
  • 5e03d04 chore(ci): make dependabot tell us of breaking changes we could upgrade to (#...
  • 595c80b v0.12.18
  • f279ad1 fix compilation if socks is enabled without tls
  • 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/LGUG2Z/komorebi/pull/1472 **Author:** [@dependabot[bot]](https://github.com/apps/dependabot) **Created:** 6/2/2025 **Status:** ✅ Merged **Merged:** 6/2/2025 **Merged by:** [@LGUG2Z](https://github.com/LGUG2Z) **Base:** `master` ← **Head:** `dependabot/cargo/reqwest-0.12.19` --- ### 📝 Commits (1) - [`b73c282`](https://github.com/LGUG2Z/komorebi/commit/b73c2825608f49f607d6decc8adf3fcdbe9ea919) chore(deps): bump reqwest from 0.12.15 to 0.12.19 ### 📊 Changes **1 file changed** (+40 additions, -16 deletions) <details> <summary>View changed files</summary> 📝 `Cargo.lock` (+40 -16) </details> ### 📄 Description Bumps [reqwest](https://github.com/seanmonstar/reqwest) from 0.12.15 to 0.12.19. <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.19</h2> <h2>What's Changed</h2> <ul> <li>refactor: report custom reason phrase in error message by <a href="https://github.com/chanbengz"><code>@​chanbengz</code></a> in <a href="https://redirect.github.com/seanmonstar/reqwest/pull/2697">seanmonstar/reqwest#2697</a></li> <li>fix: only check scheme after Policy return <code>follow</code> by <a href="https://github.com/linyihai"><code>@​linyihai</code></a> in <a href="https://redirect.github.com/seanmonstar/reqwest/pull/2710">seanmonstar/reqwest#2710</a></li> <li>ci: check cookies feature on wasm target by <a href="https://github.com/seanmonstar"><code>@​seanmonstar</code></a> in <a href="https://redirect.github.com/seanmonstar/reqwest/pull/2711">seanmonstar/reqwest#2711</a></li> <li>fix(redirect): Using <code>tower-http</code> patch to fix invalid <code>content-length</code> header by <a href="https://github.com/linyihai"><code>@​linyihai</code></a> in <a href="https://redirect.github.com/seanmonstar/reqwest/pull/2709">seanmonstar/reqwest#2709</a></li> </ul> <p><strong>Full Changelog</strong>: <a href="https://github.com/seanmonstar/reqwest/compare/v0.12.18...v0.12.19">https://github.com/seanmonstar/reqwest/compare/v0.12.18...v0.12.19</a></p> <h2>v0.12.18</h2> <h2>What's Changed</h2> <ul> <li>Fix compilation when <code>socks</code> enabled without TLS.</li> </ul> <h2>v0.12.17</h2> <h2>What's Changed</h2> <ul> <li>build: Fix compilation issues on macOS by <a href="https://github.com/0x676e67"><code>@​0x676e67</code></a> in <a href="https://redirect.github.com/seanmonstar/reqwest/pull/2696">seanmonstar/reqwest#2696</a></li> </ul> <h2>v0.12.16</h2> <h2>Highlights</h2> <ul> <li>Add <code>ClientBuilder::http3_congestion_bbr()</code> to enable BBR congestion control.</li> <li>Add <code>ClientBuilder::http3_send_grease()</code> to configure whether to send use QUIC grease.</li> <li>Add <code>ClientBuilder::http3_max_field_section_size()</code> to configure the maximum response headers.</li> <li>Add <code>ClientBuilder::tcp_keepalive_interval()</code> to configure TCP probe interval.</li> <li>Add <code>ClientBuilder::tcp_keepalive_retries()</code> to configure TCP probe count.</li> <li>Add <code>Proxy::headers()</code> to add extra headers that should be sent to a proxy.</li> <li>Fix <code>redirect::Policy::limit()</code> which had an off-by-1 error, allowing 1 more redirect than specified.</li> <li>Fix HTTP/3 to support streaming request bodies.</li> <li>(wasm) Fix null bodies when calling <code>Response::bytes_stream()</code>.</li> </ul> <h2>What's Changed</h2> <ul> <li>Clarify that <code>Response::content_length()</code> is not derived from a <code>Content-Length</code> header in docs by <a href="https://github.com/babolivier"><code>@​babolivier</code></a> in <a href="https://redirect.github.com/seanmonstar/reqwest/pull/2588">seanmonstar/reqwest#2588</a></li> <li>docs: link to <code>char::REPLACEMENT_CHARACTER</code> by <a href="https://github.com/marcospb19"><code>@​marcospb19</code></a> in <a href="https://redirect.github.com/seanmonstar/reqwest/pull/1880">seanmonstar/reqwest#1880</a></li> <li>feat: add H3 client config support by <a href="https://github.com/smalls0098"><code>@​smalls0098</code></a> in <a href="https://redirect.github.com/seanmonstar/reqwest/pull/2609">seanmonstar/reqwest#2609</a></li> <li>chore: update brotli to v7 by <a href="https://github.com/nyurik"><code>@​nyurik</code></a> in <a href="https://redirect.github.com/seanmonstar/reqwest/pull/2620">seanmonstar/reqwest#2620</a></li> <li>Do not pull in an entirely different DEFLATE implementation just for tests by <a href="https://github.com/Shnatsel"><code>@​Shnatsel</code></a> in <a href="https://redirect.github.com/seanmonstar/reqwest/pull/2625">seanmonstar/reqwest#2625</a></li> <li>chore: fix some typos in comment by <a href="https://github.com/xixishidibei"><code>@​xixishidibei</code></a> in <a href="https://redirect.github.com/seanmonstar/reqwest/pull/2628">seanmonstar/reqwest#2628</a></li> <li>fix(wasm): handle null body in bytes_stream by <a href="https://github.com/alongubkin"><code>@​alongubkin</code></a> in <a href="https://redirect.github.com/seanmonstar/reqwest/pull/2632">seanmonstar/reqwest#2632</a></li> <li><code>ClientBuilder::interface</code> on macOS/Solarish OSes by <a href="https://github.com/hawkw"><code>@​hawkw</code></a> in <a href="https://redirect.github.com/seanmonstar/reqwest/pull/2623">seanmonstar/reqwest#2623</a></li> <li>ci: use ubuntu-latest in nightly job by <a href="https://github.com/seanmonstar"><code>@​seanmonstar</code></a> in <a href="https://redirect.github.com/seanmonstar/reqwest/pull/2646">seanmonstar/reqwest#2646</a></li> <li>feat: BBR congestion control for http3 by <a href="https://github.com/threeninesixseven"><code>@​threeninesixseven</code></a> in <a href="https://redirect.github.com/seanmonstar/reqwest/pull/2642">seanmonstar/reqwest#2642</a></li> <li>feat: Add extentions for Request by <a href="https://github.com/Xuanwo"><code>@​Xuanwo</code></a> in <a href="https://redirect.github.com/seanmonstar/reqwest/pull/2647">seanmonstar/reqwest#2647</a></li> <li>refactor: Store request timeout in request extensions instead by <a href="https://github.com/Xuanwo"><code>@​Xuanwo</code></a> in <a href="https://redirect.github.com/seanmonstar/reqwest/pull/2650">seanmonstar/reqwest#2650</a></li> <li>chore: make ci pass by <a href="https://github.com/linyihai"><code>@​linyihai</code></a> in <a href="https://redirect.github.com/seanmonstar/reqwest/pull/2666">seanmonstar/reqwest#2666</a></li> <li>update h3 dependencys by <a href="https://github.com/Ruben2424"><code>@​Ruben2424</code></a> in <a href="https://redirect.github.com/seanmonstar/reqwest/pull/2670">seanmonstar/reqwest#2670</a></li> <li>Document reqwest can make TLS and cookie requests with Wasm by <a href="https://github.com/nickbabcock"><code>@​nickbabcock</code></a> in <a href="https://redirect.github.com/seanmonstar/reqwest/pull/2661">seanmonstar/reqwest#2661</a></li> <li>fix(redirect): make the number of redirects of policy matches its maximum limit. by <a href="https://github.com/linyihai"><code>@​linyihai</code></a> in <a href="https://redirect.github.com/seanmonstar/reqwest/pull/2664">seanmonstar/reqwest#2664</a></li> </ul> <!-- raw HTML omitted --> </blockquote> <p>... (truncated)</p> </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.19</h2> <ul> <li>Fix redirect that changes the method to GET should remove payload headers.</li> <li>Fix redirect to only check the next scheme if the policy action is to follow.</li> <li>(wasm) Fix compilation error if <code>cookies</code> feature is enabled (by the way, it's a noop feature in wasm).</li> </ul> <h2>v0.12.18</h2> <ul> <li>Fix compilation when <code>socks</code> enabled without TLS.</li> </ul> <h2>v0.12.17</h2> <ul> <li>Fix compilation on macOS.</li> </ul> <h2>v0.12.16</h2> <ul> <li>Add <code>ClientBuilder::http3_congestion_bbr()</code> to enable BBR congestion control.</li> <li>Add <code>ClientBuilder::http3_send_grease()</code> to configure whether to send use QUIC grease.</li> <li>Add <code>ClientBuilder::http3_max_field_section_size()</code> to configure the maximum response headers.</li> <li>Add <code>ClientBuilder::tcp_keepalive_interval()</code> to configure TCP probe interval.</li> <li>Add <code>ClientBuilder::tcp_keepalive_retries()</code> to configure TCP probe count.</li> <li>Add <code>Proxy::headers()</code> to add extra headers that should be sent to a proxy.</li> <li>Fix <code>redirect::Policy::limit()</code> which had an off-by-1 error, allowing 1 more redirect than specified.</li> <li>Fix HTTP/3 to support streaming request bodies.</li> <li>(wasm) Fix null bodies when calling <code>Response::bytes_stream()</code>.</li> </ul> </blockquote> </details> <details> <summary>Commits</summary> <ul> <li><a href="https://github.com/seanmonstar/reqwest/commit/8cf142bd1f1722a1728a89af21747260bb993294"><code>8cf142b</code></a> v0.12.19</li> <li><a href="https://github.com/seanmonstar/reqwest/commit/35b6c837cd957d935b83116ac7171274d960167a"><code>35b6c83</code></a> fix(redirect): Using <code>tower-http</code> patch to fix invalid <code>content-length</code> heade...</li> <li><a href="https://github.com/seanmonstar/reqwest/commit/a54c4cfd241d89123df37cbb067da4321d0a7e0d"><code>a54c4cf</code></a> disable util::add_cookie_header on wasm targets</li> <li><a href="https://github.com/seanmonstar/reqwest/commit/a7a2db19e67503e6f542f2aeb87d379c42ed0789"><code>a7a2db1</code></a> ci: check cookies feature on wasm target</li> <li><a href="https://github.com/seanmonstar/reqwest/commit/522638d28cf101656f977eb174b944ecb7ac92c1"><code>522638d</code></a> fix: only check scheme after redirect Policy return <code>follow</code> (<a href="https://redirect.github.com/seanmonstar/reqwest/issues/2710">#2710</a>)</li> <li><a href="https://github.com/seanmonstar/reqwest/commit/2fde24419e06c8a069666658f69422bfd672a8e0"><code>2fde244</code></a> ci: apparently dependabot doesn't understand increase-if-necessary</li> <li><a href="https://github.com/seanmonstar/reqwest/commit/35a66014567b8bb877051b9d233fc9ba44b025ff"><code>35a6601</code></a> refactor: report custom reason phrase in error message (<a href="https://redirect.github.com/seanmonstar/reqwest/issues/2697">#2697</a>)</li> <li><a href="https://github.com/seanmonstar/reqwest/commit/5e03d0430e5d1d8c772276f62b86399801dd5f03"><code>5e03d04</code></a> chore(ci): make dependabot tell us of breaking changes we could upgrade to (#...</li> <li><a href="https://github.com/seanmonstar/reqwest/commit/595c80b1fbcdab73ac2ae93e4edc3406f453df25"><code>595c80b</code></a> v0.12.18</li> <li><a href="https://github.com/seanmonstar/reqwest/commit/f279ad148853fcab07ab9ded06798250a42ffddb"><code>f279ad1</code></a> fix compilation if socks is enabled without tls</li> <li>Additional commits viewable in <a href="https://github.com/seanmonstar/reqwest/compare/v0.12.15...v0.12.19">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.15&new-version=0.12.19)](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>
adam added the pull-request label 2026-01-05 14:55:12 +01:00
adam closed this issue 2026-01-05 14:55:12 +01:00
Sign in to join this conversation.
1 Participants
Notifications
Due Date
No due date set.
Dependencies

No dependencies set.

Reference: starred/komorebi#1416