Skip to content

chore(deps): update rust crate tempfile to v3.27.0#43

Open
renovate[bot] wants to merge 1 commit intomainfrom
renovate/tempfile-3.x-lockfile
Open

chore(deps): update rust crate tempfile to v3.27.0#43
renovate[bot] wants to merge 1 commit intomainfrom
renovate/tempfile-3.x-lockfile

Conversation

@renovate
Copy link
Copy Markdown
Contributor

@renovate renovate Bot commented Aug 20, 2025

This PR contains the following updates:

Package Type Update Change
tempfile (source) dev-dependencies minor 3.20.03.27.0

Release Notes

Stebalien/tempfile (tempfile)

v3.27.0

Compare Source

This release adds TempPath::try_from_path and deprecates TempPath::from_path.

Prior to this release, TempPath::from_path made no attempts to convert relative paths into absolute paths. The following code would have deleted the wrong file:

let tmp_path = TempPath::from_path("foo")
std::env::set_current_dir("/some/other/path").unwrap();
drop(tmp_path);

Now:

  1. TempPath::from_path will attempt to convert relative paths into absolute paths. However, this isn't always possible as we need to call std::env::current_dir, which can fail. If we fail to convert the relative path to an absolute path, we simply keep the relative path.
  2. The TempPath::try_from_path behaves exactly like TempPath::from_path, except that it returns an error if we fail to convert a relative path into an absolute path (or if the passed path is empty).

Neither function attempt to verify the existence of the file in question.

Thanks to @​meng-xu-cs for reporting this issue.

v3.26.0

v3.25.0

  • Allow getrandom 0.4.x while retaining support for getrandom 0.3.x.

v3.24.0

Compare Source

  • Actually support WASIp2 without the nightly feature. This library is now feature complete on WASIp2 without any additional feature flags.
  • Exclude CI scripts from the published crate.

v3.23.0

Compare Source

  • Remove need for the "nightly" feature to compile with "wasip2".

v3.22.0

Compare Source

  • Updated windows-sys requirement to allow version 0.61.x
  • Remove unstable-windows-keep-open-tempfile feature.

v3.21.0

Compare Source

  • Updated windows-sys requirement to allow version 0.60.x

Configuration

📅 Schedule: Branch creation - At any time (no schedule defined), Automerge - At any time (no schedule defined).

🚦 Automerge: Disabled by config. Please merge this manually once you are satisfied.

Rebasing: Whenever PR becomes conflicted, or you tick the rebase/retry checkbox.

🔕 Ignore: Close this PR and you won't be reminded about this update again.


  • If you want to rebase/retry this PR, check this box

This PR was generated by Mend Renovate. View the repository job log.

@renovate renovate Bot changed the title chore(deps): update rust crate tempfile to v3.21.0 chore(deps): update rust crate tempfile to v3.22.0 Sep 9, 2025
@renovate renovate Bot force-pushed the renovate/tempfile-3.x-lockfile branch from 6ab6afc to c94e39a Compare September 9, 2025 18:07
@renovate renovate Bot changed the title chore(deps): update rust crate tempfile to v3.22.0 chore(deps): update rust crate tempfile to v3.23.0 Sep 23, 2025
@renovate renovate Bot force-pushed the renovate/tempfile-3.x-lockfile branch from c94e39a to 97784c1 Compare September 23, 2025 08:36
@sonarqubecloud
Copy link
Copy Markdown

@renovate renovate Bot force-pushed the renovate/tempfile-3.x-lockfile branch from 97784c1 to b748bff Compare November 4, 2025 06:28
@sonarqubecloud
Copy link
Copy Markdown

sonarqubecloud Bot commented Nov 4, 2025

@renovate renovate Bot force-pushed the renovate/tempfile-3.x-lockfile branch from b748bff to c6477ca Compare December 10, 2025 15:38
@renovate renovate Bot changed the title chore(deps): update rust crate tempfile to v3.23.0 chore(deps): update rust crate tempfile to v3.24.0 Dec 24, 2025
@renovate renovate Bot force-pushed the renovate/tempfile-3.x-lockfile branch from c6477ca to d7f955f Compare December 24, 2025 01:29
@renovate renovate Bot force-pushed the renovate/tempfile-3.x-lockfile branch from d7f955f to bc216c9 Compare December 31, 2025 15:26
@sonarqubecloud
Copy link
Copy Markdown

@renovate renovate Bot force-pushed the renovate/tempfile-3.x-lockfile branch from bc216c9 to cc56cf8 Compare February 2, 2026 17:00
@renovate renovate Bot changed the title chore(deps): update rust crate tempfile to v3.24.0 chore(deps): update rust crate tempfile to v3.25.0 Feb 9, 2026
@renovate renovate Bot force-pushed the renovate/tempfile-3.x-lockfile branch from cc56cf8 to d958a3f Compare February 12, 2026 18:42
@renovate renovate Bot force-pushed the renovate/tempfile-3.x-lockfile branch from d958a3f to 69a69c1 Compare February 24, 2026 09:30
@renovate renovate Bot changed the title chore(deps): update rust crate tempfile to v3.25.0 chore(deps): update rust crate tempfile to v3.26.0 Feb 24, 2026
@renovate renovate Bot changed the title chore(deps): update rust crate tempfile to v3.26.0 chore(deps): update rust crate tempfile to v3.27.0 Mar 11, 2026
@renovate renovate Bot force-pushed the renovate/tempfile-3.x-lockfile branch from 69a69c1 to bdd741b Compare March 11, 2026 01:04
@renovate renovate Bot force-pushed the renovate/tempfile-3.x-lockfile branch from bdd741b to 0adb7d1 Compare March 13, 2026 13:34
@sonarqubecloud
Copy link
Copy Markdown

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

None yet

Projects

None yet

Development

Successfully merging this pull request may close these issues.

0 participants