Skip to content

chore(deps): Bump the all-cargo-version-updates group with 6 updates#1824

Merged
CommanderStorm merged 1 commit intomainfrom
dependabot/cargo/all-cargo-version-updates-593576d63f
May 12, 2025
Merged

chore(deps): Bump the all-cargo-version-updates group with 6 updates#1824
CommanderStorm merged 1 commit intomainfrom
dependabot/cargo/all-cargo-version-updates-593576d63f

Conversation

@dependabot
Copy link
Copy Markdown
Contributor

@dependabot dependabot bot commented on behalf of github May 12, 2025

Bumps the all-cargo-version-updates group with 6 updates:

Package From To
actix-http 3.10.0 3.11.0
actix-web 4.10.2 4.11.0
brotli 7.0.0 8.0.1
clap 4.5.37 4.5.38
subst 0.3.7 0.3.8
tempfile 3.19.1 3.20.0

Updates actix-http from 3.10.0 to 3.11.0

Release notes

Sourced from actix-http's releases.

actix-http: v3.11.0

  • Update brotli dependency to 8.
Commits
  • 69dda5c ci: fix msrv job
  • 1b4b61d chore(awc): prepare release 3.7.0
  • 2c55d65 chore(actix-web): prepare release 4.11.0
  • 276f5d5 chore(actix-http): prepare release 3.11.0
  • 5f3c028 chore: narrow tokio dep to account for RUSTSEC-2025-0023
  • 3d3b31e fix: svg files should be compressed (#3486)
  • 3147aac feat: do not use host header on http2 for guard (#3525)
  • 079400a build: add clippy-msrv recipe
  • a49f055 build(deps): update url requirement from 2.1 to 2.5.4 (#3527)
  • 55268b6 fix: improve logger header values printing
  • Additional commits viewable in compare view

Updates actix-web from 4.10.2 to 4.11.0

Release notes

Sourced from actix-web's releases.

actix-web: v4.11.0

  • Add Logger::log_level() method.
  • Improve handling of non-UTF-8 header values in Logger middleware.
  • Add HttpServer::shutdown_signal() method.
  • Mark HttpServer as #[must_use].
  • Allow SVG images to be compressed by the Compress middleware.
  • Ignore Host header in Host guard when connection protocol is HTTP/2.
  • Re-export mime dependency.
  • Update brotli dependency to 8.
Commits
  • 69dda5c ci: fix msrv job
  • 1b4b61d chore(awc): prepare release 3.7.0
  • 2c55d65 chore(actix-web): prepare release 4.11.0
  • 276f5d5 chore(actix-http): prepare release 3.11.0
  • 5f3c028 chore: narrow tokio dep to account for RUSTSEC-2025-0023
  • 3d3b31e fix: svg files should be compressed (#3486)
  • 3147aac feat: do not use host header on http2 for guard (#3525)
  • 079400a build: add clippy-msrv recipe
  • a49f055 build(deps): update url requirement from 2.1 to 2.5.4 (#3527)
  • 55268b6 fix: improve logger header values printing
  • Additional commits viewable in compare view

Updates brotli from 7.0.0 to 8.0.1

Commits

Updates clap from 4.5.37 to 4.5.38

Release notes

Sourced from clap's releases.

v4.5.38

[4.5.38] - 2025-05-11

Fixes

  • (help) When showing aliases, include leading -- or -
Changelog

Sourced from clap's changelog.

[4.5.38] - 2025-05-11

Fixes

  • (help) When showing aliases, include leading -- or -
Commits
  • 2920fb0 chore: Release
  • 8902627 docs: Update changelog
  • 79d696f Merge pull request #5813 from epage/ignore
  • 479df35 fix(parser): Fill in defaults on ignored error
  • a1d69ca refactor(parser): Split up parsing from post-processing
  • 6827841 test(parser): Show bad ignore_errors defaulting case
  • 76d0049 test(parser): Verify defaulting on errors
  • 3f5c05c test(parser): Ensure we are actually testing ignore_errors
  • ba4745d chore(ci): Fix use of permissions
  • 22944b4 chore(ci): Use matrix for tracking the runner
  • Additional commits viewable in compare view

Updates subst from 0.3.7 to 0.3.8

Changelog

Sourced from subst's changelog.

Version 0.3.8 - 2025-05-09

  • [fix][minor] Fix out-of-bounds read when input string ends with a dollar sign.
Commits
  • 2931f9a Bump version to 0.3.8.
  • 818f87e Update CHANGELOG.
  • 89c93ed Merge pull request #33 from kaspar030/fix-panic-dollar-eos
  • 7c14437 fix: properly handle $ at end of input
  • aa697ca Merge pull request #32 from kaspar030/bump-cache-action
  • 75e9814 ci: bump actions/cache to v4
  • See full diff in compare view

Updates tempfile from 3.19.1 to 3.20.0

Changelog

Sourced from tempfile's changelog.

3.20.0

This release mostly unifies the behavior/capabilities around "keeping" temporary files:

  • Rename Builder::keep(bool) (via deprecation) to Builder::disable_cleanup(bool) to make it clear that behaves differently from NamedTempFile::keep(). The former disables automatic cleanup while the latter consumes the NamedTempFile object entirely and unsets the "temporary file" attribute (on Windows).
  • Rename TempDir::into_path (via deprecation) to TempDir::keep to mirror NamedTempFile::keep.
  • Add TempDir::disable_cleanup, NamedTempFile::disable_cleanup, and TempPath::disable_cleanup making it possible to disable automatic cleanup in-place after creating a temporary file/directory (equivalent to calling Builder::disable_cleanup before creating the file/directory).

Additionally, it adds a few spooled temporary file features:

  • Add SpooledTempFile::into_file for turning a SpooledTempFile into a regular unnamed temporary file, writing it to the backing storage ("rolling" it) if it was still stored in-memory.
  • Add spooled_tempfile_in and SpooledTempFile::new_in methods for creating spooled temporary files in a specific directory. This makes it possible to choose the backing device for your spooled temporary file which is rather important on Linux where the default temporary directory is likely backed by memory (defeating the entire point of having a spooled temporary file).

Finally, this release improves documentation, especially the top-level documentation explaining which temporary file type to use.

BREAKING for those with deny(warnings):

  • Builder::keep deprecated in favor of Builder::disable_cleanup.
  • TempDir::into_path is deprecated in favor of TempDir::keep.

BREAKING:

Commits
  • 99ffea6 chore: release v3.20.0 (#358)
  • bd2b267 feat: make it possible to disable cleanup in-place after creation (#355)
  • 3b30099 ci: really check docs for warnings (#357)
  • f701f52 ci: check docs (#356)
  • d34afe9 doc: improve SpooledData documentation
  • 6deb42e doc: make it easier to pick the correct tempfile constructor/type
  • e284782 feat: allow creating spooled temporary files in a specific directory (#353)
  • 07edc31 feat: implement SpooledTempFile::into_file (#352)
  • b122355 fix: add must_use attribute to TempDir::keep (#351)
  • cbd1e97 feat: rename TempDir::into_path to TempDir::keep (#349)
  • Additional commits viewable in compare view

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 <dependency name> major version will close this group update PR and stop Dependabot creating any more for the specific dependency's major version (unless you unignore this specific dependency's major version or upgrade to it yourself)
  • @dependabot ignore <dependency name> minor version will close this group update PR and stop Dependabot creating any more for the specific dependency's minor version (unless you unignore this specific dependency's minor version or upgrade to it yourself)
  • @dependabot ignore <dependency name> will close this group update PR and stop Dependabot creating any more for the specific dependency (unless you unignore this specific dependency or upgrade to it yourself)
  • @dependabot unignore <dependency name> will remove all of the ignore conditions of the specified dependency
  • @dependabot unignore <dependency name> <ignore condition> will remove the ignore condition of the specified dependency and ignore conditions

Bumps the all-cargo-version-updates group with 6 updates:

| Package | From | To |
| --- | --- | --- |
| [actix-http](https://github.com/actix/actix-web) | `3.10.0` | `3.11.0` |
| [actix-web](https://github.com/actix/actix-web) | `4.10.2` | `4.11.0` |
| [brotli](https://github.com/dropbox/rust-brotli) | `7.0.0` | `8.0.1` |
| [clap](https://github.com/clap-rs/clap) | `4.5.37` | `4.5.38` |
| [subst](https://github.com/fizyr/subst) | `0.3.7` | `0.3.8` |
| [tempfile](https://github.com/Stebalien/tempfile) | `3.19.1` | `3.20.0` |


Updates `actix-http` from 3.10.0 to 3.11.0
- [Release notes](https://github.com/actix/actix-web/releases)
- [Changelog](https://github.com/actix/actix-web/blob/master/CHANGES.md)
- [Commits](actix/actix-web@http-v3.10.0...http-v3.11.0)

Updates `actix-web` from 4.10.2 to 4.11.0
- [Release notes](https://github.com/actix/actix-web/releases)
- [Changelog](https://github.com/actix/actix-web/blob/master/CHANGES.md)
- [Commits](actix/actix-web@web-v4.10.2...web-v4.11.0)

Updates `brotli` from 7.0.0 to 8.0.1
- [Release notes](https://github.com/dropbox/rust-brotli/releases)
- [Commits](https://github.com/dropbox/rust-brotli/commits)

Updates `clap` from 4.5.37 to 4.5.38
- [Release notes](https://github.com/clap-rs/clap/releases)
- [Changelog](https://github.com/clap-rs/clap/blob/master/CHANGELOG.md)
- [Commits](clap-rs/clap@clap_complete-v4.5.37...clap_complete-v4.5.38)

Updates `subst` from 0.3.7 to 0.3.8
- [Changelog](https://github.com/fizyr/subst/blob/main/CHANGELOG)
- [Commits](fizyr/subst@v0.3.7...v0.3.8)

Updates `tempfile` from 3.19.1 to 3.20.0
- [Changelog](https://github.com/Stebalien/tempfile/blob/master/CHANGELOG.md)
- [Commits](Stebalien/tempfile@v3.19.1...v3.20.0)

---
updated-dependencies:
- dependency-name: actix-http
  dependency-version: 3.11.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: all-cargo-version-updates
- dependency-name: actix-web
  dependency-version: 4.11.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: all-cargo-version-updates
- dependency-name: brotli
  dependency-version: 8.0.1
  dependency-type: direct:production
  update-type: version-update:semver-major
  dependency-group: all-cargo-version-updates
- dependency-name: clap
  dependency-version: 4.5.38
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: all-cargo-version-updates
- dependency-name: subst
  dependency-version: 0.3.8
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: all-cargo-version-updates
- dependency-name: tempfile
  dependency-version: 3.20.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: all-cargo-version-updates
...

Signed-off-by: dependabot[bot] <support@github.com>
@dependabot dependabot bot added dependencies Pull requests that update a dependency file rust Pull requests that update Rust code labels May 12, 2025
@CommanderStorm CommanderStorm merged commit ef2af96 into main May 12, 2025
20 checks passed
@CommanderStorm CommanderStorm deleted the dependabot/cargo/all-cargo-version-updates-593576d63f branch May 12, 2025 09:17
NINNiT pushed a commit to NINNiT/martin that referenced this pull request May 17, 2025
…aplibre#1824)

Bumps the all-cargo-version-updates group with 6 updates:

| Package | From | To |
| --- | --- | --- |
| [actix-http](https://github.com/actix/actix-web) | `3.10.0` | `3.11.0`
|
| [actix-web](https://github.com/actix/actix-web) | `4.10.2` | `4.11.0`
|
| [brotli](https://github.com/dropbox/rust-brotli) | `7.0.0` | `8.0.1` |
| [clap](https://github.com/clap-rs/clap) | `4.5.37` | `4.5.38` |
| [subst](https://github.com/fizyr/subst) | `0.3.7` | `0.3.8` |
| [tempfile](https://github.com/Stebalien/tempfile) | `3.19.1` |
`3.20.0` |

Updates `actix-http` from 3.10.0 to 3.11.0
<details>
<summary>Release notes</summary>
<p><em>Sourced from <a
href="https://github.com/actix/actix-web/releases">actix-http's
releases</a>.</em></p>
<blockquote>
<h2>actix-http: v3.11.0</h2>
<ul>
<li>Update <code>brotli</code> dependency to <code>8</code>.</li>
</ul>
</blockquote>
</details>
<details>
<summary>Commits</summary>
<ul>
<li><a
href="https://github.com/actix/actix-web/commit/69dda5c943cb309ac4dc7c52978750e40d6b674e"><code>69dda5c</code></a>
ci: fix msrv job</li>
<li><a
href="https://github.com/actix/actix-web/commit/1b4b61d83994ec9335d3ce132858f73c66499a93"><code>1b4b61d</code></a>
chore(awc): prepare release 3.7.0</li>
<li><a
href="https://github.com/actix/actix-web/commit/2c55d659dda7852f890fec71c7489e1bfce9e502"><code>2c55d65</code></a>
chore(actix-web): prepare release 4.11.0</li>
<li><a
href="https://github.com/actix/actix-web/commit/276f5d5bd481db3b9c0e563d12c6c7816548f69e"><code>276f5d5</code></a>
chore(actix-http): prepare release 3.11.0</li>
<li><a
href="https://github.com/actix/actix-web/commit/5f3c02813a4a9310c965f664c3ea34306650a6e4"><code>5f3c028</code></a>
chore: narrow tokio dep to account for RUSTSEC-2025-0023</li>
<li><a
href="https://github.com/actix/actix-web/commit/3d3b31e16a35d7aa0950e98713b80a43fbc1fb26"><code>3d3b31e</code></a>
fix: svg files should be compressed (<a
href="https://github.com/actix/actix-web/issues/3486">#3486</a>)</li>
<li><a
href="https://github.com/actix/actix-web/commit/3147aaccc73e7611a88a2e18dbfbaadb27b96983"><code>3147aac</code></a>
feat: do not use host header on http2 for guard (<a
href="https://github.com/actix/actix-web/issues/3525">#3525</a>)</li>
<li><a
href="https://github.com/actix/actix-web/commit/079400a72b79d918491aef783db41a6230fbcfce"><code>079400a</code></a>
build: add clippy-msrv recipe</li>
<li><a
href="https://github.com/actix/actix-web/commit/a49f055561325dc8541de169eb5bcf049260747d"><code>a49f055</code></a>
build(deps): update url requirement from 2.1 to 2.5.4 (<a
href="https://github.com/actix/actix-web/issues/3527">#3527</a>)</li>
<li><a
href="https://github.com/actix/actix-web/commit/55268b6898e6411cb60d17cc2e78b3e1737aec83"><code>55268b6</code></a>
fix: improve logger header values printing</li>
<li>Additional commits viewable in <a
href="https://github.com/actix/actix-web/compare/http-v3.10.0...http-v3.11.0">compare
view</a></li>
</ul>
</details>
<br />

Updates `actix-web` from 4.10.2 to 4.11.0
<details>
<summary>Release notes</summary>
<p><em>Sourced from <a
href="https://github.com/actix/actix-web/releases">actix-web's
releases</a>.</em></p>
<blockquote>
<h2>actix-web: v4.11.0</h2>
<ul>
<li>Add <code>Logger::log_level()</code> method.</li>
<li>Improve handling of non-UTF-8 header values in <code>Logger</code>
middleware.</li>
<li>Add <code>HttpServer::shutdown_signal()</code> method.</li>
<li>Mark <code>HttpServer</code> as <code>#[must_use]</code>.</li>
<li>Allow SVG images to be compressed by the <code>Compress</code>
middleware.</li>
<li>Ignore <code>Host</code> header in <code>Host</code> guard when
connection protocol is HTTP/2.</li>
<li>Re-export <code>mime</code> dependency.</li>
<li>Update <code>brotli</code> dependency to <code>8</code>.</li>
</ul>
</blockquote>
</details>
<details>
<summary>Commits</summary>
<ul>
<li><a
href="https://github.com/actix/actix-web/commit/69dda5c943cb309ac4dc7c52978750e40d6b674e"><code>69dda5c</code></a>
ci: fix msrv job</li>
<li><a
href="https://github.com/actix/actix-web/commit/1b4b61d83994ec9335d3ce132858f73c66499a93"><code>1b4b61d</code></a>
chore(awc): prepare release 3.7.0</li>
<li><a
href="https://github.com/actix/actix-web/commit/2c55d659dda7852f890fec71c7489e1bfce9e502"><code>2c55d65</code></a>
chore(actix-web): prepare release 4.11.0</li>
<li><a
href="https://github.com/actix/actix-web/commit/276f5d5bd481db3b9c0e563d12c6c7816548f69e"><code>276f5d5</code></a>
chore(actix-http): prepare release 3.11.0</li>
<li><a
href="https://github.com/actix/actix-web/commit/5f3c02813a4a9310c965f664c3ea34306650a6e4"><code>5f3c028</code></a>
chore: narrow tokio dep to account for RUSTSEC-2025-0023</li>
<li><a
href="https://github.com/actix/actix-web/commit/3d3b31e16a35d7aa0950e98713b80a43fbc1fb26"><code>3d3b31e</code></a>
fix: svg files should be compressed (<a
href="https://github.com/actix/actix-web/issues/3486">#3486</a>)</li>
<li><a
href="https://github.com/actix/actix-web/commit/3147aaccc73e7611a88a2e18dbfbaadb27b96983"><code>3147aac</code></a>
feat: do not use host header on http2 for guard (<a
href="https://github.com/actix/actix-web/issues/3525">#3525</a>)</li>
<li><a
href="https://github.com/actix/actix-web/commit/079400a72b79d918491aef783db41a6230fbcfce"><code>079400a</code></a>
build: add clippy-msrv recipe</li>
<li><a
href="https://github.com/actix/actix-web/commit/a49f055561325dc8541de169eb5bcf049260747d"><code>a49f055</code></a>
build(deps): update url requirement from 2.1 to 2.5.4 (<a
href="https://github.com/actix/actix-web/issues/3527">#3527</a>)</li>
<li><a
href="https://github.com/actix/actix-web/commit/55268b6898e6411cb60d17cc2e78b3e1737aec83"><code>55268b6</code></a>
fix: improve logger header values printing</li>
<li>Additional commits viewable in <a
href="https://github.com/actix/actix-web/compare/web-v4.10.2...web-v4.11.0">compare
view</a></li>
</ul>
</details>
<br />

Updates `brotli` from 7.0.0 to 8.0.1
<details>
<summary>Commits</summary>
<ul>
<li>See full diff in <a
href="https://github.com/dropbox/rust-brotli/commits">compare
view</a></li>
</ul>
</details>
<br />

Updates `clap` from 4.5.37 to 4.5.38
<details>
<summary>Release notes</summary>
<p><em>Sourced from <a
href="https://github.com/clap-rs/clap/releases">clap's
releases</a>.</em></p>
<blockquote>
<h2>v4.5.38</h2>
<h2>[4.5.38] - 2025-05-11</h2>
<h3>Fixes</h3>
<ul>
<li><em>(help)</em> When showing aliases, include leading
<code>--</code> or <code>-</code></li>
</ul>
</blockquote>
</details>
<details>
<summary>Changelog</summary>
<p><em>Sourced from <a
href="https://github.com/clap-rs/clap/blob/master/CHANGELOG.md">clap's
changelog</a>.</em></p>
<blockquote>
<h2>[4.5.38] - 2025-05-11</h2>
<h3>Fixes</h3>
<ul>
<li><em>(help)</em> When showing aliases, include leading
<code>--</code> or <code>-</code></li>
</ul>
</blockquote>
</details>
<details>
<summary>Commits</summary>
<ul>
<li><a
href="https://github.com/clap-rs/clap/commit/2920fb082c987acb72ed1d1f47991c4d157e380d"><code>2920fb0</code></a>
chore: Release</li>
<li><a
href="https://github.com/clap-rs/clap/commit/8902627c2b7d9b54fee1588e5f426fe8bd132cd2"><code>8902627</code></a>
docs: Update changelog</li>
<li><a
href="https://github.com/clap-rs/clap/commit/79d696f925c6763b65ea53a75a50bf81ed359632"><code>79d696f</code></a>
Merge pull request <a
href="https://github.com/clap-rs/clap/issues/5813">#5813</a>
from epage/ignore</li>
<li><a
href="https://github.com/clap-rs/clap/commit/479df35abd8f1ba6fbfb2a9f1be635c9defcb471"><code>479df35</code></a>
fix(parser): Fill in defaults on ignored error</li>
<li><a
href="https://github.com/clap-rs/clap/commit/a1d69ca824f27cb7351a06ec689838e99d2c1be5"><code>a1d69ca</code></a>
refactor(parser): Split up parsing from post-processing</li>
<li><a
href="https://github.com/clap-rs/clap/commit/682784193017f7b310a2f3e82cced923e8845547"><code>6827841</code></a>
test(parser): Show bad ignore_errors defaulting case</li>
<li><a
href="https://github.com/clap-rs/clap/commit/76d0049330090f3b2bc46ad4014457bc889c4cc9"><code>76d0049</code></a>
test(parser): Verify defaulting on errors</li>
<li><a
href="https://github.com/clap-rs/clap/commit/3f5c05ce3877b43489cfd4fba1e96a89a692169d"><code>3f5c05c</code></a>
test(parser): Ensure we are actually testing ignore_errors</li>
<li><a
href="https://github.com/clap-rs/clap/commit/ba4745dd1112922d5aeea867f01f8b29028289a9"><code>ba4745d</code></a>
chore(ci): Fix use of permissions</li>
<li><a
href="https://github.com/clap-rs/clap/commit/22944b4c3521562f78b6cf32cefc260cbed16798"><code>22944b4</code></a>
chore(ci): Use matrix for tracking the runner</li>
<li>Additional commits viewable in <a
href="https://github.com/clap-rs/clap/compare/clap_complete-v4.5.37...clap_complete-v4.5.38">compare
view</a></li>
</ul>
</details>
<br />

Updates `subst` from 0.3.7 to 0.3.8
<details>
<summary>Changelog</summary>
<p><em>Sourced from <a
href="https://github.com/fizyr/subst/blob/main/CHANGELOG">subst's
changelog</a>.</em></p>
<blockquote>
<h1>Version 0.3.8 - 2025-05-09</h1>
<ul>
<li>[fix][minor] Fix out-of-bounds read when input string ends with a
dollar sign.</li>
</ul>
</blockquote>
</details>
<details>
<summary>Commits</summary>
<ul>
<li><a
href="https://github.com/fizyr/subst/commit/2931f9a5ffd5da50367767089abccb93f402d3ec"><code>2931f9a</code></a>
Bump version to 0.3.8.</li>
<li><a
href="https://github.com/fizyr/subst/commit/818f87eb13058c8e436d99e83ef7017b61a027da"><code>818f87e</code></a>
Update CHANGELOG.</li>
<li><a
href="https://github.com/fizyr/subst/commit/89c93ed8d8e4249f166588e269798b1c5cc5b997"><code>89c93ed</code></a>
Merge pull request <a
href="https://github.com/fizyr/subst/issues/33">#33</a> from
kaspar030/fix-panic-dollar-eos</li>
<li><a
href="https://github.com/fizyr/subst/commit/7c144378f3d8048736d65ebe006416653336180c"><code>7c14437</code></a>
fix: properly handle <code>$</code> at end of input</li>
<li><a
href="https://github.com/fizyr/subst/commit/aa697cad5d45588e605f865ba7058c7e0021e8d4"><code>aa697ca</code></a>
Merge pull request <a
href="https://github.com/fizyr/subst/issues/32">#32</a> from
kaspar030/bump-cache-action</li>
<li><a
href="https://github.com/fizyr/subst/commit/75e98147c012e9cb66cfb3a71dfa4f2320b143b8"><code>75e9814</code></a>
ci: bump <code>actions/cache</code> to v4</li>
<li>See full diff in <a
href="https://github.com/fizyr/subst/compare/v0.3.7...v0.3.8">compare
view</a></li>
</ul>
</details>
<br />

Updates `tempfile` from 3.19.1 to 3.20.0
<details>
<summary>Changelog</summary>
<p><em>Sourced from <a
href="https://github.com/Stebalien/tempfile/blob/master/CHANGELOG.md">tempfile's
changelog</a>.</em></p>
<blockquote>
<h2>3.20.0</h2>
<p>This release mostly unifies the behavior/capabilities around
&quot;keeping&quot; temporary files:</p>
<ul>
<li>Rename <code>Builder::keep(bool)</code> (via deprecation) to
<code>Builder::disable_cleanup(bool)</code> to make it clear that
behaves differently from <code>NamedTempFile::keep()</code>. The former
disables automatic cleanup while the latter <em>consumes</em> the
<code>NamedTempFile</code> object entirely and unsets the
&quot;temporary file&quot; attribute (on Windows).</li>
<li>Rename <code>TempDir::into_path</code> (via deprecation) to
<code>TempDir::keep</code> to mirror
<code>NamedTempFile::keep</code>.</li>
<li>Add <code>TempDir::disable_cleanup</code>,
<code>NamedTempFile::disable_cleanup</code>, and
<code>TempPath::disable_cleanup</code> making it possible to disable
automatic cleanup in-place <em>after</em> creating a temporary
file/directory (equivalent to calling
<code>Builder::disable_cleanup</code> before creating the
file/directory).</li>
</ul>
<p>Additionally, it adds a few spooled temporary file features:</p>
<ul>
<li>Add <code>SpooledTempFile::into_file</code> for turning a
<code>SpooledTempFile</code> into a regular unnamed temporary file,
writing it to the backing storage (&quot;rolling&quot; it) if it was
still stored in-memory.</li>
<li>Add <code>spooled_tempfile_in</code> and
<code>SpooledTempFile::new_in</code> methods for creating spooled
temporary files in a specific directory. This makes it possible to
choose the backing device for your spooled temporary file which is
rather important on Linux where the default temporary directory is
likely backed by memory (defeating the entire point of having a spooled
temporary file).</li>
</ul>
<p>Finally, this release improves documentation, especially the
top-level documentation explaining which temporary file type to use.</p>
<p><strong>BREAKING</strong> for those with
<code>deny(warnings)</code>:</p>
<ul>
<li><code>Builder::keep</code> deprecated in favor of
<code>Builder::disable_cleanup</code>.</li>
<li><code>TempDir::into_path</code> is deprecated in favor of
<code>TempDir::keep</code>.</li>
</ul>
<p><strong>BREAKING</strong>:</p>
</blockquote>
</details>
<details>
<summary>Commits</summary>
<ul>
<li><a
href="https://github.com/Stebalien/tempfile/commit/99ffea61ade621161db326b6745c7b36a90ddbd0"><code>99ffea6</code></a>
chore: release v3.20.0 (<a
href="https://github.com/Stebalien/tempfile/issues/358">#358</a>)</li>
<li><a
href="https://github.com/Stebalien/tempfile/commit/bd2b2674423ae6598070fab30e6627810ac282a9"><code>bd2b267</code></a>
feat: make it possible to disable cleanup in-place after creation (<a
href="https://github.com/Stebalien/tempfile/issues/355">#355</a>)</li>
<li><a
href="https://github.com/Stebalien/tempfile/commit/3b30099abd7585a9b6600276f6dcdfa557e88f19"><code>3b30099</code></a>
ci: really check docs for warnings (<a
href="https://github.com/Stebalien/tempfile/issues/357">#357</a>)</li>
<li><a
href="https://github.com/Stebalien/tempfile/commit/f701f5245624b8cfcd782dfd62fcfe86d35c173b"><code>f701f52</code></a>
ci: check docs (<a
href="https://github.com/Stebalien/tempfile/issues/356">#356</a>)</li>
<li><a
href="https://github.com/Stebalien/tempfile/commit/d34afe99fd93bb13253128cc58dfc4032edfa5a5"><code>d34afe9</code></a>
doc: improve SpooledData documentation</li>
<li><a
href="https://github.com/Stebalien/tempfile/commit/6deb42e04ceb2f2c306510b1605d9548e77868e5"><code>6deb42e</code></a>
doc: make it easier to pick the correct tempfile constructor/type</li>
<li><a
href="https://github.com/Stebalien/tempfile/commit/e284782c6c1c2f565af2ab9b5c0be9f9c5ed3607"><code>e284782</code></a>
feat: allow creating spooled temporary files in a specific directory (<a
href="https://github.com/Stebalien/tempfile/issues/353">#353</a>)</li>
<li><a
href="https://github.com/Stebalien/tempfile/commit/07edc310a5c8725346cd2bb2a5d065ff298f4fa0"><code>07edc31</code></a>
feat: implement <code>SpooledTempFile::into_file</code> (<a
href="https://github.com/Stebalien/tempfile/issues/352">#352</a>)</li>
<li><a
href="https://github.com/Stebalien/tempfile/commit/b1223553bb888e35bab7675fbac235e4be6eaf7e"><code>b122355</code></a>
fix: add must_use attribute to TempDir::keep (<a
href="https://github.com/Stebalien/tempfile/issues/351">#351</a>)</li>
<li><a
href="https://github.com/Stebalien/tempfile/commit/cbd1e976e106d4a12432e124494f735bf40eafe2"><code>cbd1e97</code></a>
feat: rename <code>TempDir::into_path</code> to
<code>TempDir::keep</code> (<a
href="https://github.com/Stebalien/tempfile/issues/349">#349</a>)</li>
<li>Additional commits viewable in <a
href="https://github.com/Stebalien/tempfile/compare/v3.19.1...v3.20.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 show <dependency name> ignore conditions` will show all
of the ignore conditions of the specified dependency
- `@dependabot ignore <dependency name> major version` will close this
group update PR and stop Dependabot creating any more for the specific
dependency's major version (unless you unignore this specific
dependency's major version or upgrade to it yourself)
- `@dependabot ignore <dependency name> minor version` will close this
group update PR and stop Dependabot creating any more for the specific
dependency's minor version (unless you unignore this specific
dependency's minor version or upgrade to it yourself)
- `@dependabot ignore <dependency name>` will close this group update PR
and stop Dependabot creating any more for the specific dependency
(unless you unignore this specific dependency or upgrade to it yourself)
- `@dependabot unignore <dependency name>` will remove all of the ignore
conditions of the specified dependency
- `@dependabot unignore <dependency name> <ignore condition>` will
remove the ignore condition of the specified dependency and ignore
conditions


</details>

Signed-off-by: dependabot[bot] <support@github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

dependencies Pull requests that update a dependency file rust Pull requests that update Rust code

Projects

None yet

Development

Successfully merging this pull request may close these issues.

1 participant