Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update Rust crate tempfile to 3.8 - autoclosed #206

Closed
wants to merge 1 commit into from

Conversation

renovate[bot]
Copy link
Contributor

@renovate renovate bot commented Feb 25, 2023

Mend Renovate

This PR contains the following updates:

Package Type Update Change
tempfile (source) dependencies minor 3.3 -> 3.8

Release Notes

Stebalien/tempfile (tempfile)

v3.8.1

  • Update rustix to fix a potential panic on persist_noclobber on android.
  • Update redox_syscall to 0.4 (on redox).
  • Fix some docs typos.

v3.8.0

Compare Source

  • Added with_prefix and with_prefix_in to TempDir and NamedTempFile to make it easier to create temporary files/directories with nice prefixes.
  • Misc cleanups.

v3.7.1

Compare Source

  • Tempfile builds on haiku again.
  • Under the hood, we've switched from the unlinkat/linkat syscalls to the regular unlink/link syscalls where possible.

v3.7.0

Compare Source

BREAKING: This release updates the MSRV to 1.63. This isn't an API-breaking change (so no major
release) but it's still a breaking change for some users.

  • Update fastrand from 1.6 to 2.0
  • Update rustix to 0.38
  • Updates the MSRV to 1.63.
  • Provide AsFd/AsRawFd on wasi.

v3.6.0

Compare Source

  • Update windows-sys to 0.48.
  • Update rustix min version to 0.37.11
  • Forward some NamedTempFile and SpooledTempFile methods to the underlying File object for
    better performance (especially vectorized writes, etc.).
  • Implement AsFd and AsHandle.
  • Misc documentation fixes and code cleanups.

v3.5.0

Compare Source

  • Update rustix from 0.36 to 0.37.1. This makes wasi work on rust stable
  • Update windows-sys, redox_syscall
  • BREAKING: Remove the implementation of Write for &NamedTempFile<F> where &F: Write. Unfortunately, this can cause compile issues in unrelated code (https://github.com/Stebalien/tempfile/issues/224).

v3.4.0

Compare Source

SECURITY: Prior tempfile releases depended on remove_dir_all version 0.5.0 which was vulnerable to a TOCTOU race. This same race is present in rust versions prior to 1.58.1.

Features:

  • Generalized temporary files: NamedTempFile can now abstract over different kinds of files (e.g.,
    unix domain sockets, pipes, etc.):
    • Add Builder::make and Builder::make_in for generalized temp file
      creation.
    • Add NamedTempFile::from_parts to complement NamedTempFile::into_parts.
    • Add generic parameter to NamedTempFile to support wrapping non-File types.

Bug Fixes/Improvements:

  • Don't try to create a temporary file multiple times if the file path has been fully specified by
    the user (no random characters).
  • NamedTempFile::persist_noclobber is now always atomic on linux when renameat_with is
    supported. Previously, it would first link the new path, then unlink the previous path.
  • Fix compiler warnings on windows.

Trivia:

  • Switch from libc to rustix on wasi/unix. This now makes direct syscalls instead of calling
    through libc.
  • Remove remove_dir_all dependency. The rust standard library has optimized their internal version
    significantly.
  • Switch to official windows-sys windows bindings.

Breaking:

  • The minimum rust version is now 1.48.0.
  • Mark most functions as must_use.
  • Uses direct syscalls on linux by default, instead of libc.
  • The new type parameter in NamedTempFile may lead to type inference issues in some cases.

Configuration

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

🚦 Automerge: Enabled.

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 has been generated by Mend Renovate. View repository job log here.

@renovate renovate bot added the renovate Renovate bot label Feb 25, 2023
@renovate renovate bot force-pushed the renovate/tempfile-3.x branch 2 times, most recently from f3dfb67 to 5f5365c Compare March 2, 2023 11:33
@renovate renovate bot force-pushed the renovate/tempfile-3.x branch 2 times, most recently from a66ea14 to 061025a Compare March 11, 2023 22:12
@renovate renovate bot changed the title Update Rust crate tempfile to 3.4 Update Rust crate tempfile to 3.5 Mar 29, 2023
@renovate renovate bot changed the title Update Rust crate tempfile to 3.5 Update Rust crate tempfile to 3.6 Jun 6, 2023
@renovate renovate bot changed the title Update Rust crate tempfile to 3.6 Update Rust crate tempfile to 3.7 Jul 20, 2023
@renovate renovate bot changed the title Update Rust crate tempfile to 3.7 Update Rust crate tempfile to 3.8 Aug 19, 2023
@renovate renovate bot changed the title Update Rust crate tempfile to 3.8 Update Rust crate tempfile to 3.8 - autoclosed Dec 14, 2023
@renovate renovate bot closed this Dec 14, 2023
@renovate renovate bot deleted the renovate/tempfile-3.x branch December 14, 2023 19:55
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
renovate Renovate bot
Projects
None yet
Development

Successfully merging this pull request may close these issues.

0 participants