Skip to content

Bump the cargo group with 9 updates #2648

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

Open
wants to merge 1 commit into
base: master
Choose a base branch
from

Conversation

dependabot[bot]
Copy link
Contributor

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

Bumps the cargo group with 9 updates:

Package From To
backtrace 0.3.74 0.3.75
chrono 0.4.40 0.4.41
crossterm 0.28.1 0.29.0
log 0.4.26 0.4.27
struct-patch 0.9.4 0.10.2
which 7.0.2 7.0.3
tempfile 3.15.0 3.20.0
gix 0.71.0 0.72.1
gix-path 0.10.15 0.10.18

Updates backtrace from 0.3.74 to 0.3.75

Release notes

Sourced from backtrace's releases.

0.3.75

What's Changed

New Contributors

Full Changelog: rust-lang/backtrace-rs@0.3.74...0.3.75

Commits
  • f8cc6ac Merge pull request #680 from ChrisDenton/0.3.75
  • 612c018 Cut backtrace 0.3.75
  • d7c5a45 Merge pull request #689 from workingjubilee/formalize-lru
  • c88b038 Revert "mem::swap, not mem::replace, in LRU backshifts"
  • b7fbd04 mem::swap, not mem::replace, in LRU backshifts
  • 3afccb1 raise backtrace MSRV to allow inline_const
  • 63b7d26 Use a custom container for Cache's cache
  • 154a0ea Update libloading dep, run cargo updaterust-lang/backtrace-rs#650
  • 4d7906brust-lang/backtrace-rs#682
  • a9c4658 Test Mac Catalyst in CI, and clean up unnecessary iOS env flags (rust-lang/ba...
  • Additional commits viewable in compare view

Updates chrono from 0.4.40 to 0.4.41

Release notes

Sourced from chrono's releases.

v0.4.41

What's Changed

Commits
  • d1de1d9 Bump version to 0.4.41
  • e2bd1d1 Add support for lenient format strings (#1693)
  • 2c95b0a Tweak expression to avoid repetition
  • ebeef99 TimeZone::from_posix_tz: Treat empty TZ variable as UTC
  • dc068f0 Tweak style on NaiveWeek fixes
  • b267a4f Implemented consistent Hash and Eq trait for NaiveWeek
  • 7c0bd13 Apply suggestions from clippy 1.86
  • 104cdc7 Bump MSRV to 1.62
  • 6a85301 Upgrade to windows-bindgen 0.61
  • 265c79b Tweak WeekdaySet method order
  • Additional commits viewable in compare view

Updates crossterm from 0.28.1 to 0.29.0

Release notes

Sourced from crossterm's releases.

0.29

Version 0.29

Added ⭐

  • Copy to clipboard using OSC52 (#974)
  • Derive standard traits for "SetCursorStyle" (#909)
  • Add query_keyboard_enhancement_flags to read enabled flags (#958)
  • Add is_* and as_* methods to the event enums (#949)
  • Add a feature flag for derive_more impls (#970)
  • Update rustix to 1.0 (#982)
  • Upgrade various dependencies

Breaking ⚠️

  • Correctly fix KeyModifiers Display impl Properly adding + in between modifiers (#979)

@​joshka @​linrongbin16 @​kmicklas @​maciek50322 @​rosew0od @​sxyazi @​the-mikedavis @​hthuz @​aschey @​naseschwarz @​Flokkq @​gaesa @​WindSoilder

Changelog

Sourced from crossterm's changelog.

Unreleased

Version 0.29

Added ⭐

  • Copy to clipboard using OSC52 (#974)
  • Derive standard traits for "SetCursorStyle" (#909)
  • Add query_keyboard_enhancement_flags to read enabled flags (#958)
  • Add is_* and as_* methods to the event enums (#949)
  • Add a feature flag for derive_more impls (#970)
  • Update rustix to 1.0 (#982)

Breaking ⚠️

  • Correctly fix KeyModifiers Display impl Properly adding + in between modifiers (#979)
Commits

Updates log from 0.4.26 to 0.4.27

Release notes

Sourced from log's releases.

0.4.27

What's Changed

Full Changelog: rust-lang/log@0.4.26...0.4.27

Changelog

Sourced from log's changelog.

[0.4.27] - 2025-03-24

What's Changed

Full Changelog: rust-lang/log@0.4.26...0.4.27

Commits
  • 35161d0 Merge pull request #674 from rust-lang/cargo/0.4.27
  • cc131ef prepare for 0.4.27 release
  • ea6f54d Merge pull request #673 from rust-lang/feat/logger-by-ref
  • d229c73 fix unclosed code block
  • 02486e4 fill in more tests for logger argument
  • 71e034f expand logger tests
  • dfa067e fix up kv passing
  • 39d4c3a run fmt
  • 7aacc8f pass global logger by value, supplied logger by ref
  • a438c6e Merge pull request #664 from tisonkun/logger-field
  • Additional commits viewable in compare view

Updates struct-patch from 0.9.4 to 0.10.2

Commits

Updates which from 7.0.2 to 7.0.3

Release notes

Sourced from which's releases.

7.0.3

  • Update rustix to version 1.0. Congrats to rustix on this milestone, and thanks @​mhils for this contribution to which!
Changelog

Sourced from which's changelog.

7.0.3

  • Update rustix to version 1.0. Congrats to rustix on this milestone, and thanks @​mhils for this contribution to which!
Commits

Updates tempfile from 3.15.0 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:

3.19.1

  • Don't unlink temporary files immediately on Windows (fixes #339). Unfortunately, this seemed to corrupt the file object (possibly a Windows kernel bug) in rare cases and isn't strictly speaking necessary.

3.19.0

  • Remove direct dependency on cfg-if. It's still in the tree, but we didn't really need to use it in this crate.
  • Add an unstable feature (unstable-windows-keep-open-tempfile) to test a potential fix to #339.

3.18.0

  • Update rustix to 1.0.0.
  • Make NamedTempFile::persist_noclobber atomic on Apple operating systems. It's now atomic on MacOS, Windows, and Linux (depending on the OS version and filesystem used).

3.17.1

  • Fix build with windows-sys 0.52. Unfortunately, we have no CI for older windows-sys versions at the moment...

3.17.0

  • Make sure to use absolute paths in when creating unnamed temporary files (avoids a small race in the "immediate unlink" logic) and in Builder::make_in (when creating temporary files of arbitrary types).
  • Prevent a theoretical crash that could (maybe) happen when a temporary file is created from a drop function run in a TLS destructor. Nobody has actually reported a case of this happening in practice and I have been unable to create this scenario in a test.
  • When reseeding with getrandom, use platform (e.g., CPU) specific randomness sources where possible.
  • Clarify some documentation.
  • Unlink unnamed temporary files on windows immediately when possible instead of waiting for the handle to be closed. We open files with "Unix" semantics, so this is generally possible.

3.16.0

... (truncated)

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

Updates gix from 0.71.0 to 0.72.1

Release notes

Sourced from gix's releases.

gix v0.72.1

Commit Statistics

  • 1 commit contributed to the release.
  • 0 commits were understood as conventional.
  • 0 issues like '(#ID)' were seen in commit messages

Commit Details

  • Uncategorized
    • Bump all prior pratch levels to majors (5f7f805)

gix v0.72.0

Bug Fixes

  • Adapt to changes in gix-actor Use the committer date and author date that are now backed by bytes and interpret these bytes into a gix_date::Time on demand.

  • correctly handle safe.directory for worktrees

  • safe.directory now applies to configuration as well This means that repo-local configuration that is considered safe, ideally with safe.directory=safe/dir/* notation, will be usable for sensitive operations.

  • make fs::walkdir_sorted_new() sort entries by paths literally This follows up 7b1b5bf864e74706aefeb1213e8bdb0545d5464a. Since packed-refs appears to be sorted by full ref name, loose-refs should also be emitted in that order.

    The comparison function is copied from gix::diff::object::tree::EntryRef. Non-utf8 file names are simply mapped to "" on Windows. We could add some fallback, but callers can't handle such file names anyway.

New Features (BREAKING)

  • use RelativePath for prefixed ref iteration. Its type captures the requirements better.

Commit Statistics

  • 40 commits contributed to the release.
  • 5 commits were understood as conventional.
  • 3 unique issues were worked on: #1788, #1912, #1928

Thanks Clippy

Clippy helped 1 time to make code idiomatic.

... (truncated)

Commits
  • e104545 Release gix-date v0.10.1, gix-utils v0.3.0, gix-actor v0.35.1, gix-validate v...
  • 5f7f805 bump all prior pratch levels to majors
  • cc5b696 Release gix-path v0.10.16, gix-features v0.42.0, gix-hash v0.17.1, gix-object...
  • 614b389 update more changelogs
  • 49fa9f3 Adjusting changelogs prior to release of gix-path v0.10.16, gix-features v0.4...
  • db0b095 Release gix-date v0.10.0, gix-utils v0.2.1, gix-actor v0.35.0, gix-validate v...
  • 0bf84db update changelogs prior to release
  • 3b1bef7 Merge pull request #1935 from pierrechevalier83/fix_1923
  • c3c6504 j fmt
  • 6f009d7 thanks clippy
  • Additional commits viewable in compare view

Updates gix-path from 0.10.15 to 0.10.18

Release notes

Sourced from gix-path's releases.

gix-path v0.10.18

A maintenance release without user-facing changes.

Commit Statistics

  • 4 commits contributed to the release over the course of 14 calendar days.
  • 14 days passed between releases.
  • 0 commits were understood as conventional.
  • 0 issues like '(#ID)' were seen in commit messages

Thanks Clippy

Clippy helped 1 time to make code idiomatic.

Commit Details

  • Uncategorized
    • Prepare changelogs prior to release of gix-index (bfc4880)
    • Merge pull request #1975 from GitoxideLabs/improvements (28935a5)
    • Thanks clippy (dbf65c9)
    • Merge pull request #1971 from GitoxideLabs/new-release (8d4c4d1)

gix-path v0.10.17

Commit Statistics

  • 1 commit contributed to the release.
  • 0 commits were understood as conventional.
  • 0 issues like '(#ID)' were seen in commit messages

Commit Details

  • Uncategorized
    • Bump all prior pratch levels to majors (5f7f805)

gix-path v0.10.16

New Features

  • Add &gix_path::RelativePath. It's a utility to assure functions get the right input, i.e. a type-safe version of what previously was &BStr

... (truncated)

Commits
  • d2b4c44 Release gix-path v0.10.18, gix-date v0.10.2, gix-traverse v0.46.2, gix-index ...
  • bfc4880 prepare changelogs prior to release of gix-index
  • fdfb239 Merge pull request #2000 from GitoxideLabs/improvements
  • 33c4d6b Merge pull request #2005 from 0-wiz-0/main
  • 00e8934 fix: Fix build on NetBSD
  • 9d0c809 Merge pull request #2003 from EliahKagan/run-ci/msrv-check
  • 3a63c68 Actually build gix to check MSRV
  • dc1d271 doc: Fix accessibility bug in MSRV badge
  • eaecc9b Further split check-msrv steps; let Windows use pwsh again
  • f10f18d Use --locked instead of checking Cargo.lock afterwards
  • 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 cargo group with 9 updates:

| Package | From | To |
| --- | --- | --- |
| [backtrace](https://github.com/rust-lang/backtrace-rs) | `0.3.74` | `0.3.75` |
| [chrono](https://github.com/chronotope/chrono) | `0.4.40` | `0.4.41` |
| [crossterm](https://github.com/crossterm-rs/crossterm) | `0.28.1` | `0.29.0` |
| [log](https://github.com/rust-lang/log) | `0.4.26` | `0.4.27` |
| [struct-patch](https://github.com/yanganto/struct-patch) | `0.9.4` | `0.10.2` |
| [which](https://github.com/harryfei/which-rs) | `7.0.2` | `7.0.3` |
| [tempfile](https://github.com/Stebalien/tempfile) | `3.15.0` | `3.20.0` |
| [gix](https://github.com/GitoxideLabs/gitoxide) | `0.71.0` | `0.72.1` |
| [gix-path](https://github.com/GitoxideLabs/gitoxide) | `0.10.15` | `0.10.18` |


Updates `backtrace` from 0.3.74 to 0.3.75
- [Release notes](https://github.com/rust-lang/backtrace-rs/releases)
- [Commits](rust-lang/backtrace-rs@0.3.74...0.3.75)

Updates `chrono` from 0.4.40 to 0.4.41
- [Release notes](https://github.com/chronotope/chrono/releases)
- [Changelog](https://github.com/chronotope/chrono/blob/main/CHANGELOG.md)
- [Commits](chronotope/chrono@v0.4.40...v0.4.41)

Updates `crossterm` from 0.28.1 to 0.29.0
- [Release notes](https://github.com/crossterm-rs/crossterm/releases)
- [Changelog](https://github.com/crossterm-rs/crossterm/blob/master/CHANGELOG.md)
- [Commits](https://github.com/crossterm-rs/crossterm/commits/0.29)

Updates `log` from 0.4.26 to 0.4.27
- [Release notes](https://github.com/rust-lang/log/releases)
- [Changelog](https://github.com/rust-lang/log/blob/master/CHANGELOG.md)
- [Commits](rust-lang/log@0.4.26...0.4.27)

Updates `struct-patch` from 0.9.4 to 0.10.2
- [Release notes](https://github.com/yanganto/struct-patch/releases)
- [Commits](yanganto/struct-patch@v0.9.4...v0.10.2)

Updates `which` from 7.0.2 to 7.0.3
- [Release notes](https://github.com/harryfei/which-rs/releases)
- [Changelog](https://github.com/harryfei/which-rs/blob/master/CHANGELOG.md)
- [Commits](harryfei/which-rs@7.0.2...7.0.3)

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

Updates `gix` from 0.71.0 to 0.72.1
- [Release notes](https://github.com/GitoxideLabs/gitoxide/releases)
- [Changelog](https://github.com/GitoxideLabs/gitoxide/blob/main/CHANGELOG.md)
- [Commits](GitoxideLabs/gitoxide@gix-v0.71.0...gix-v0.72.1)

Updates `gix-path` from 0.10.15 to 0.10.18
- [Release notes](https://github.com/GitoxideLabs/gitoxide/releases)
- [Changelog](https://github.com/GitoxideLabs/gitoxide/blob/main/CHANGELOG.md)
- [Commits](GitoxideLabs/gitoxide@gix-path-v0.10.15...gix-path-v0.10.18)

---
updated-dependencies:
- dependency-name: backtrace
  dependency-version: 0.3.75
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: cargo
- dependency-name: chrono
  dependency-version: 0.4.41
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: cargo
- dependency-name: crossterm
  dependency-version: 0.29.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: cargo
- dependency-name: log
  dependency-version: 0.4.27
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: cargo
- dependency-name: struct-patch
  dependency-version: 0.10.2
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: cargo
- dependency-name: which
  dependency-version: 7.0.3
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: cargo
- dependency-name: tempfile
  dependency-version: 3.20.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: cargo
- dependency-name: gix
  dependency-version: 0.72.1
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: cargo
- dependency-name: gix-path
  dependency-version: 0.10.18
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: cargo
...

Signed-off-by: dependabot[bot] <[email protected]>
@dependabot dependabot bot added dependencies Pull requests that update a dependency file rust Pull requests that update rust code labels May 20, 2025
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.

0 participants