Update tempfile requirement from ~3.2 to ~3.3 #313

Closed
dependabot[bot] wants to merge 1 commit from dependabot/cargo/tempfile-approx-3.3 into master
dependabot[bot] commented 2022-05-03 17:30:59 +00:00 (Migrated from github.com)

Updates the requirements on tempfile to permit the latest version.

Changelog

Sourced from tempfile's changelog.

3.3.0

Features:

  • Replace rand with fastrand for a significantly smaller dependency tree. Cryptographic randomness isn't necessary for temporary file names, and isn't all that helpful either.
  • Add limited WASI support.
  • Add a function to extract the inner data from a SpooledTempFile.

Bug Fixes:

  • Make it possible to persist unnamed temporary files on linux by removing the O_EXCL flag.
  • Fix redox minimum crate version.

3.2.0

Features:

  • Bump rand dependency to 0.8.
  • Bump cfg-if dependency to 1.0

Other than that, this release mostly includes small cleanups and simplifications.

Breaking: The minimum rust version is now 1.40.0.

3.1.0

Features:

  • Bump rand dependency to 0.7.

Breaking: The minimum rust version is now 1.32.0.

3.0.9

Documentation:

  • Add an example for reopening a named temporary file.
  • Flesh out the security documentation.

Features:

  • Introduce an append option to the builder.
  • Errors:
    • No longer implement the soft-deprecated description.
    • Implement source instead of cause.

... (truncated)

Commits
  • 1a40687 release 3.3.0
  • 92638c6 Merge pull request #164 from Stebalien/chore/cleanup
  • 92ae3e9 chore: remove extern crates
  • e49d9df Merge pull request #165 from Stebalien/pr-116
  • a5f535c fix: doc formatting
  • ab67cce Add docs pointing out early dop pitfalls
  • 8d40916 Merge pull request #163 from Stebalien/chore/update-deps
  • 9a63217 chore: update fastrand
  • 09e0b4b Merge pull request #162 from Stebalien/ref/replace-rand-with-fastrand
  • e24fae3 chore: avoid allocation when generating temp names
  • 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 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)
Updates the requirements on [tempfile](https://github.com/Stebalien/tempfile) to permit the latest version. <details> <summary>Changelog</summary> <p><em>Sourced from <a href="https://github.com/Stebalien/tempfile/blob/master/NEWS">tempfile's changelog</a>.</em></p> <blockquote> <h1>3.3.0</h1> <p>Features:</p> <ul> <li>Replace rand with fastrand for a significantly smaller dependency tree. Cryptographic randomness isn't necessary for temporary file names, and isn't all that helpful either.</li> <li>Add limited WASI support.</li> <li>Add a function to extract the inner data from a <code>SpooledTempFile</code>.</li> </ul> <p>Bug Fixes:</p> <ul> <li>Make it possible to persist unnamed temporary files on linux by removing the <code>O_EXCL</code> flag.</li> <li>Fix redox minimum crate version.</li> </ul> <h1>3.2.0</h1> <p>Features:</p> <ul> <li>Bump rand dependency to <code>0.8</code>.</li> <li>Bump cfg-if dependency to <code>1.0</code></li> </ul> <p>Other than that, this release mostly includes small cleanups and simplifications.</p> <p>Breaking: The minimum rust version is now <code>1.40.0</code>.</p> <h1>3.1.0</h1> <p>Features:</p> <ul> <li>Bump rand dependency to <code>0.7</code>.</li> </ul> <p>Breaking: The minimum rust version is now <code>1.32.0</code>.</p> <h1>3.0.9</h1> <p>Documentation:</p> <ul> <li>Add an example for reopening a named temporary file.</li> <li>Flesh out the security documentation.</li> </ul> <p>Features:</p> <ul> <li>Introduce an <code>append</code> option to the builder.</li> <li>Errors: <ul> <li>No longer implement the soft-deprecated <code>description</code>.</li> <li>Implement <code>source</code> instead of <code>cause</code>.</li> </ul> </li> </ul> <!-- raw HTML omitted --> </blockquote> <p>... (truncated)</p> </details> <details> <summary>Commits</summary> <ul> <li><a href="https://github.com/Stebalien/tempfile/commit/1a40687e06eb656044e3d2dffa1379f04b3ef3fd"><code>1a40687</code></a> release 3.3.0</li> <li><a href="https://github.com/Stebalien/tempfile/commit/92638c61f30534521d248fb0e708770b9a28cef7"><code>92638c6</code></a> Merge pull request <a href="https://github-redirect.dependabot.com/Stebalien/tempfile/issues/164">#164</a> from Stebalien/chore/cleanup</li> <li><a href="https://github.com/Stebalien/tempfile/commit/92ae3e9d6e82bdcfcf114be459d234d3602be2d4"><code>92ae3e9</code></a> chore: remove extern crates</li> <li><a href="https://github.com/Stebalien/tempfile/commit/e49d9dffe8b655d02adbf08f1359b6b9bdebb1d6"><code>e49d9df</code></a> Merge pull request <a href="https://github-redirect.dependabot.com/Stebalien/tempfile/issues/165">#165</a> from Stebalien/pr-116</li> <li><a href="https://github.com/Stebalien/tempfile/commit/a5f535c95b370f521e318c8b909067cb830a78e9"><code>a5f535c</code></a> fix: doc formatting</li> <li><a href="https://github.com/Stebalien/tempfile/commit/ab67ccee85fe00df744c4422befafd0ce1ff264d"><code>ab67cce</code></a> Add docs pointing out early dop pitfalls</li> <li><a href="https://github.com/Stebalien/tempfile/commit/8d40916b419171fa79f978583cf84740bce5e802"><code>8d40916</code></a> Merge pull request <a href="https://github-redirect.dependabot.com/Stebalien/tempfile/issues/163">#163</a> from Stebalien/chore/update-deps</li> <li><a href="https://github.com/Stebalien/tempfile/commit/9a6321760bcfae15ac488f1f4bd94db4e97e9367"><code>9a63217</code></a> chore: update fastrand</li> <li><a href="https://github.com/Stebalien/tempfile/commit/09e0b4b1b4382ab0bdb0c4df661e411ff462d5b9"><code>09e0b4b</code></a> Merge pull request <a href="https://github-redirect.dependabot.com/Stebalien/tempfile/issues/162">#162</a> from Stebalien/ref/replace-rand-with-fastrand</li> <li><a href="https://github.com/Stebalien/tempfile/commit/e24fae3ac2857544c608ad4727710a70d7631a14"><code>e24fae3</code></a> chore: avoid allocation when generating temp names</li> <li>Additional commits viewable in <a href="https://github.com/Stebalien/tempfile/compare/v3.2.0...v3.3.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>
dependabot[bot] commented 2023-02-27 10:10:11 +00:00 (Migrated from github.com)

Superseded by #319.

Superseded by #319.

Pull request closed

Sign in to join this conversation.
No description provided.