Update Rust crate tempfile to v3.20.0 #69
Loading…
x
Reference in New Issue
Block a user
No description provided.
Delete Branch "renovate/tempfile-3.x-lockfile"
Deleting a branch is permanent. Although the deleted branch may continue to exist for a short time before it actually gets removed, it CANNOT be undone in most cases. Continue?
This PR contains the following updates:
3.19.1
->3.20.0
Release Notes
Stebalien/tempfile (tempfile)
v3.20.0
Compare Source
This release mostly unifies the behavior/capabilities around "keeping" temporary files:
Builder::keep(bool)
(via deprecation) toBuilder::disable_cleanup(bool)
to make it clear that behaves differently fromNamedTempFile::keep()
. The former disables automatic cleanup while the latter consumes theNamedTempFile
object entirely and unsets the "temporary file" attribute (on Windows).TempDir::into_path
(via deprecation) toTempDir::keep
to mirrorNamedTempFile::keep
.TempDir::disable_cleanup
,NamedTempFile::disable_cleanup
, andTempPath::disable_cleanup
making it possible to disable automatic cleanup in-place after creating a temporary file/directory (equivalent to callingBuilder::disable_cleanup
before creating the file/directory).Additionally, it adds a few spooled temporary file features:
SpooledTempFile::into_file
for turning aSpooledTempFile
into a regular unnamed temporary file, writing it to the backing storage ("rolling" it) if it was still stored in-memory.spooled_tempfile_in
andSpooledTempFile::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 ofBuilder::disable_cleanup
.TempDir::into_path
is deprecated in favor ofTempDir::keep
.BREAKING:
Configuration
📅 Schedule: Branch creation - At any time (no schedule defined), Automerge - At any time (no schedule defined).
🚦 Automerge: Enabled.
♻ Rebasing: Whenever PR is behind base branch, or you tick the rebase/retry checkbox.
🔕 Ignore: Close this PR and you won't be reminded about this update again.
This PR has been generated by Renovate Bot.