Update all non-major dependencies #3

Open
renovatebot wants to merge 1 commit from renovate/all-minor-patch into main
Collaborator

This PR contains the following updates:

Package Type Update Change
anyhow dependencies patch 1.0.1001.0.102
clap dependencies minor 4.5.534.6.0
tempfile (source) dev-dependencies minor 3.23.03.27.0
toml dependencies patch 0.9.80.9.12
tracing (source) dependencies patch 0.1.430.1.44
tracing-subscriber (source) dependencies patch 0.3.220.3.23
uuid dependencies minor 1.19.01.22.0

Release Notes

dtolnay/anyhow (anyhow)

v1.0.102

Compare Source

v1.0.101

Compare Source

clap-rs/clap (clap)

v4.6.0

Compare Source

Compatibility
  • Update MSRV to 1.85

v4.5.61

Compare Source

Internal
  • Update dependencies

v4.5.60

Compare Source

Fixes
  • (help) Quote empty default values, possible values

v4.5.59

Compare Source

Fixes
  • Command::ignore_errors no longer masks help/version on subcommands

v4.5.58

Compare Source

v4.5.57

Compare Source

Fixes
  • Regression from 4.5.55 where having an argument with .value_terminator("--") caused problems with an argument with .last(true)

v4.5.56

Compare Source

Fixes
  • On conflict error, don't show conflicting arguments in the usage

v4.5.55

Compare Source

Fixes
  • Fix inconsistency in precedence between positionals with a value_terminator("--") and escapes (--) where ./foo -- bar means the first arg is empty, rather than escaping future args

v4.5.54

Compare Source

Fixes
  • (help) Move [default] to its own paragraph when PossibleValue::help is present in --help
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.
toml-rs/toml (toml)

v0.9.12

Compare Source

v0.9.11

Compare Source

v0.9.10

Compare Source

v0.9.9

Compare Source

tokio-rs/tracing (tracing)

v0.1.44: tracing 0.1.44

Compare Source

Fixed
Changed
  • tracing-core: updated to 0.1.36 (#​3440)
uuid-rs/uuid (uuid)

v1.22.0

Compare Source

What's Changed

New Contributors

Full Changelog: https://github.com/uuid-rs/uuid/compare/v1.21.0...v1.22.0

v1.21.0

Compare Source

What's Changed

New Contributors

Full Changelog: https://github.com/uuid-rs/uuid/compare/v1.20.0...v1.21.0

v1.20.0

Compare Source

What's Changed

New Contributors

Full Changelog: https://github.com/uuid-rs/uuid/compare/v1.19.0...v1.20.0


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.

👻 Immortal: This PR will be recreated if closed unmerged. Get config help if that's undesired.


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

This PR has been generated by Renovate Bot.

This PR contains the following updates: | Package | Type | Update | Change | |---|---|---|---| | [anyhow](https://github.com/dtolnay/anyhow) | dependencies | patch | `1.0.100` → `1.0.102` | | [clap](https://github.com/clap-rs/clap) | dependencies | minor | `4.5.53` → `4.6.0` | | [tempfile](https://stebalien.com/projects/tempfile-rs/) ([source](https://github.com/Stebalien/tempfile)) | dev-dependencies | minor | `3.23.0` → `3.27.0` | | [toml](https://github.com/toml-rs/toml) | dependencies | patch | `0.9.8` → `0.9.12` | | [tracing](https://tokio.rs) ([source](https://github.com/tokio-rs/tracing)) | dependencies | patch | `0.1.43` → `0.1.44` | | [tracing-subscriber](https://tokio.rs) ([source](https://github.com/tokio-rs/tracing)) | dependencies | patch | `0.3.22` → `0.3.23` | | [uuid](https://github.com/uuid-rs/uuid) | dependencies | minor | `1.19.0` → `1.22.0` | --- ### Release Notes <details> <summary>dtolnay/anyhow (anyhow)</summary> ### [`v1.0.102`](https://github.com/dtolnay/anyhow/releases/tag/1.0.102) [Compare Source](https://github.com/dtolnay/anyhow/compare/1.0.101...1.0.102) - Remove backtrace dependency ([#&#8203;438](https://github.com/dtolnay/anyhow/issues/438), [#&#8203;439](https://github.com/dtolnay/anyhow/issues/439), [#&#8203;440](https://github.com/dtolnay/anyhow/issues/440), [#&#8203;441](https://github.com/dtolnay/anyhow/issues/441), [#&#8203;442](https://github.com/dtolnay/anyhow/issues/442)) ### [`v1.0.101`](https://github.com/dtolnay/anyhow/releases/tag/1.0.101) [Compare Source](https://github.com/dtolnay/anyhow/compare/1.0.100...1.0.101) - Add #\[inline] to anyhow::Ok helper ([#&#8203;437](https://github.com/dtolnay/anyhow/issues/437), thanks [@&#8203;Ibitier](https://github.com/Ibitier)) </details> <details> <summary>clap-rs/clap (clap)</summary> ### [`v4.6.0`](https://github.com/clap-rs/clap/blob/HEAD/CHANGELOG.md#460---2026-03-12) [Compare Source](https://github.com/clap-rs/clap/compare/v4.5.61...v4.6.0) ##### Compatibility - Update MSRV to 1.85 ### [`v4.5.61`](https://github.com/clap-rs/clap/blob/HEAD/CHANGELOG.md#4561---2026-03-12) [Compare Source](https://github.com/clap-rs/clap/compare/v4.5.60...v4.5.61) ##### Internal - Update dependencies ### [`v4.5.60`](https://github.com/clap-rs/clap/blob/HEAD/CHANGELOG.md#4560---2026-02-19) [Compare Source](https://github.com/clap-rs/clap/compare/v4.5.59...v4.5.60) ##### Fixes - *(help)* Quote empty default values, possible values ### [`v4.5.59`](https://github.com/clap-rs/clap/blob/HEAD/CHANGELOG.md#4559---2026-02-16) [Compare Source](https://github.com/clap-rs/clap/compare/v4.5.58...v4.5.59) ##### Fixes - `Command::ignore_errors` no longer masks help/version on subcommands ### [`v4.5.58`](https://github.com/clap-rs/clap/blob/HEAD/CHANGELOG.md#4558---2026-02-11) [Compare Source](https://github.com/clap-rs/clap/compare/v4.5.57...v4.5.58) ### [`v4.5.57`](https://github.com/clap-rs/clap/blob/HEAD/CHANGELOG.md#4557---2026-02-03) [Compare Source](https://github.com/clap-rs/clap/compare/v4.5.56...v4.5.57) ##### Fixes - Regression from 4.5.55 where having an argument with `.value_terminator("--")` caused problems with an argument with `.last(true)` ### [`v4.5.56`](https://github.com/clap-rs/clap/blob/HEAD/CHANGELOG.md#4556---2026-01-29) [Compare Source](https://github.com/clap-rs/clap/compare/v4.5.55...v4.5.56) ##### Fixes - On conflict error, don't show conflicting arguments in the usage ### [`v4.5.55`](https://github.com/clap-rs/clap/blob/HEAD/CHANGELOG.md#4555---2026-01-27) [Compare Source](https://github.com/clap-rs/clap/compare/v4.5.54...v4.5.55) ##### Fixes - Fix inconsistency in precedence between positionals with a `value_terminator("--")` and escapes (`--`) where `./foo -- bar` means the first arg is empty, rather than escaping future args ### [`v4.5.54`](https://github.com/clap-rs/clap/blob/HEAD/CHANGELOG.md#4554---2026-01-02) [Compare Source](https://github.com/clap-rs/clap/compare/v4.5.53...v4.5.54) ##### Fixes - *(help)* Move `[default]` to its own paragraph when `PossibleValue::help` is present in `--help` </details> <details> <summary>Stebalien/tempfile (tempfile)</summary> ### [`v3.27.0`](https://github.com/Stebalien/tempfile/blob/HEAD/CHANGELOG.md#3270) [Compare Source](https://github.com/Stebalien/tempfile/compare/v3.26.0...v3.27.0) 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: ```rust 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 [@&#8203;meng-xu-cs](https://github.com/meng-xu-cs) for reporting this issue. ### [`v3.26.0`](https://github.com/Stebalien/tempfile/blob/HEAD/CHANGELOG.md#3260) - Support `NamedTempFile::persist` on RedoxOS ([#&#8203;393](https://github.com/Stebalien/tempfile/issues/393)) (thanks to [@&#8203;Andy-Python-Programmer](https://github.com/Andy-Python-Programmer)). ### [`v3.25.0`](https://github.com/Stebalien/tempfile/blob/HEAD/CHANGELOG.md#3250) - Allow `getrandom` 0.4.x while retaining support for `getrandom` 0.3.x. ### [`v3.24.0`](https://github.com/Stebalien/tempfile/blob/HEAD/CHANGELOG.md#3240) [Compare Source](https://github.com/Stebalien/tempfile/compare/v3.23.0...v3.24.0) - 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. </details> <details> <summary>toml-rs/toml (toml)</summary> ### [`v0.9.12`](https://github.com/toml-rs/toml/compare/toml-v0.9.11...toml-v0.9.12) [Compare Source](https://github.com/toml-rs/toml/compare/toml-v0.9.11...toml-v0.9.12) ### [`v0.9.11`](https://github.com/toml-rs/toml/compare/toml-v0.9.10...toml-v0.9.11) [Compare Source](https://github.com/toml-rs/toml/compare/toml-v0.9.10...toml-v0.9.11) ### [`v0.9.10`](https://github.com/toml-rs/toml/compare/toml-v0.9.9...toml-v0.9.10) [Compare Source](https://github.com/toml-rs/toml/compare/toml-v0.9.9...toml-v0.9.10) ### [`v0.9.9`](https://github.com/toml-rs/toml/compare/toml-v0.9.8...toml-v0.9.9) [Compare Source](https://github.com/toml-rs/toml/compare/toml-v0.9.8...toml-v0.9.9) </details> <details> <summary>tokio-rs/tracing (tracing)</summary> ### [`v0.1.44`](https://github.com/tokio-rs/tracing/releases/tag/tracing-0.1.44): tracing 0.1.44 [Compare Source](https://github.com/tokio-rs/tracing/compare/tracing-0.1.43...tracing-0.1.44) ##### Fixed - Fix `record_all` panic ([#&#8203;3432]) ##### Changed - `tracing-core`: updated to 0.1.36 ([#&#8203;3440]) [#&#8203;3432]: https://github.com/tokio-rs/tracing/pull/3432 [#&#8203;3440]: https://github.com/tokio-rs/tracing/pull/3440 </details> <details> <summary>uuid-rs/uuid (uuid)</summary> ### [`v1.22.0`](https://github.com/uuid-rs/uuid/releases/tag/v1.22.0) [Compare Source](https://github.com/uuid-rs/uuid/compare/v1.21.0...v1.22.0) #### What's Changed - Default to rand 0.10 by [@&#8203;haxtibal](https://github.com/haxtibal) in [#&#8203;863](https://github.com/uuid-rs/uuid/pull/863) - Prepare for 1.22.0 release by [@&#8203;KodrAus](https://github.com/KodrAus) in [#&#8203;864](https://github.com/uuid-rs/uuid/pull/864) #### New Contributors - [@&#8203;haxtibal](https://github.com/haxtibal) made their first contribution in [#&#8203;863](https://github.com/uuid-rs/uuid/pull/863) **Full Changelog**: <https://github.com/uuid-rs/uuid/compare/v1.21.0...v1.22.0> ### [`v1.21.0`](https://github.com/uuid-rs/uuid/releases/tag/v1.21.0) [Compare Source](https://github.com/uuid-rs/uuid/compare/v1.20.0...v1.21.0) #### What's Changed - Update getrandom to 0.4 by [@&#8203;KodrAus](https://github.com/KodrAus) in [#&#8203;858](https://github.com/uuid-rs/uuid/pull/858) - feat: impl core::error::Error for Error by [@&#8203;XAMPPRocky](https://github.com/XAMPPRocky) in [#&#8203;852](https://github.com/uuid-rs/uuid/pull/852) - Prepare for 1.21.0 release by [@&#8203;KodrAus](https://github.com/KodrAus) in [#&#8203;859](https://github.com/uuid-rs/uuid/pull/859) #### New Contributors - [@&#8203;XAMPPRocky](https://github.com/XAMPPRocky) made their first contribution in [#&#8203;852](https://github.com/uuid-rs/uuid/pull/852) **Full Changelog**: <https://github.com/uuid-rs/uuid/compare/v1.20.0...v1.21.0> ### [`v1.20.0`](https://github.com/uuid-rs/uuid/releases/tag/v1.20.0) [Compare Source](https://github.com/uuid-rs/uuid/compare/v1.19.0...v1.20.0) #### What's Changed - Derive Ord and PartialOrd for NonNilUuid by [@&#8203;mivort](https://github.com/mivort) in [#&#8203;854](https://github.com/uuid-rs/uuid/pull/854) - Implement Deserialize on adapter types by [@&#8203;KodrAus](https://github.com/KodrAus) in [#&#8203;855](https://github.com/uuid-rs/uuid/pull/855) - Deprecate `macro-diagnostics` by [@&#8203;KodrAus](https://github.com/KodrAus) in [#&#8203;856](https://github.com/uuid-rs/uuid/pull/856) - Prepare for 1.20.0 release by [@&#8203;KodrAus](https://github.com/KodrAus) in [#&#8203;857](https://github.com/uuid-rs/uuid/pull/857) #### New Contributors - [@&#8203;mivort](https://github.com/mivort) made their first contribution in [#&#8203;854](https://github.com/uuid-rs/uuid/pull/854) **Full Changelog**: <https://github.com/uuid-rs/uuid/compare/v1.19.0...v1.20.0> </details> --- ### 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. 👻 **Immortal**: This PR will be recreated if closed unmerged. Get [config help](https://github.com/renovatebot/renovate/discussions) if that's undesired. --- - [ ] <!-- rebase-check -->If you want to rebase/retry this PR, check this box --- This PR has been generated by [Renovate Bot](https://github.com/renovatebot/renovate). <!--renovate-debug:eyJjcmVhdGVkSW5WZXIiOiI0Mi41OS4xIiwidXBkYXRlZEluVmVyIjoiNDMuNjkuMCIsInRhcmdldEJyYW5jaCI6Im1haW4iLCJsYWJlbHMiOltdfQ==-->
renovatebot force-pushed renovate/all-minor-patch from 86f5872f7d to f4bcacad4b 2025-12-18 14:32:12 +01:00 Compare
renovatebot changed title from Update Rust crate toml to v0.9.9 to Update Rust crate toml to v0.9.10 2025-12-18 14:47:33 +01:00
renovatebot force-pushed renovate/all-minor-patch from f4bcacad4b to c4e55a28b1 2025-12-18 14:47:34 +01:00 Compare
renovatebot force-pushed renovate/all-minor-patch from c4e55a28b1 to 461d61b8ef 2025-12-18 15:33:16 +01:00 Compare
renovatebot changed title from Update Rust crate toml to v0.9.10 to Update all non-major dependencies 2025-12-18 15:33:16 +01:00
renovatebot force-pushed renovate/all-minor-patch from 461d61b8ef to 9bde1fb57f 2025-12-24 00:17:46 +01:00 Compare
renovatebot force-pushed renovate/all-minor-patch from 9bde1fb57f to 02f9a1af49 2026-01-02 23:17:26 +01:00 Compare
renovatebot force-pushed renovate/all-minor-patch from 02f9a1af49 to 6be92cd7fe 2026-01-09 17:17:30 +01:00 Compare
renovatebot force-pushed renovate/all-minor-patch from 6be92cd7fe to a2c5e33407 2026-01-25 00:17:38 +01:00 Compare
renovatebot force-pushed renovate/all-minor-patch from a2c5e33407 to 5ce0a22d92 2026-01-27 21:48:04 +01:00 Compare
renovatebot force-pushed renovate/all-minor-patch from 5ce0a22d92 to 2b0c97ad7c 2026-01-29 17:48:31 +01:00 Compare
renovatebot force-pushed renovate/all-minor-patch from 2b0c97ad7c to 8f80ecabc2 2026-02-03 17:48:35 +01:00 Compare
renovatebot force-pushed renovate/all-minor-patch from 8f80ecabc2 to e0b1758fd5 2026-02-05 20:33:31 +01:00 Compare
renovatebot force-pushed renovate/all-minor-patch from e0b1758fd5 to 563287eff6 2026-02-09 20:32:40 +01:00 Compare
renovatebot force-pushed renovate/all-minor-patch from 563287eff6 to d8a8c01580 2026-02-10 19:17:43 +01:00 Compare
renovatebot force-pushed renovate/all-minor-patch from d8a8c01580 to 28f2e6890f 2026-02-10 19:47:49 +01:00 Compare
renovatebot force-pushed renovate/all-minor-patch from 28f2e6890f to d71a4ce046 2026-02-11 14:47:47 +01:00 Compare
renovatebot force-pushed renovate/all-minor-patch from d71a4ce046 to 8e65e2f7b9 2026-02-12 17:32:47 +01:00 Compare
renovatebot force-pushed renovate/all-minor-patch from 8e65e2f7b9 to 1eb0b1008f
Some checks failed
renovate/artifacts Artifact file update failure
2026-02-14 02:02:51 +01:00
Compare
renovatebot force-pushed renovate/all-minor-patch from 1eb0b1008f
Some checks failed
renovate/artifacts Artifact file update failure
to 529fd5dd50 2026-02-16 19:04:55 +01:00
Compare
renovatebot force-pushed renovate/all-minor-patch from 529fd5dd50 to e92e96a5a6
Some checks failed
renovate/artifacts Artifact file update failure
2026-02-16 23:17:14 +01:00
Compare
renovatebot force-pushed renovate/all-minor-patch from e92e96a5a6
Some checks failed
renovate/artifacts Artifact file update failure
to 1498e8b7b8
Some checks failed
renovate/artifacts Artifact file update failure
2026-02-19 20:34:20 +01:00
Compare
renovatebot force-pushed renovate/all-minor-patch from 1498e8b7b8
Some checks failed
renovate/artifacts Artifact file update failure
to 9a4956edb0 2026-02-20 04:18:08 +01:00
Compare
renovatebot force-pushed renovate/all-minor-patch from 9a4956edb0 to fd9b77e64f 2026-02-22 17:32:54 +01:00 Compare
renovatebot force-pushed renovate/all-minor-patch from fd9b77e64f to c1d0508272 2026-02-23 04:52:30 +01:00 Compare
renovatebot force-pushed renovate/all-minor-patch from c1d0508272 to d5b97f9340
Some checks failed
renovate/artifacts Artifact file update failure
2026-02-24 05:03:13 +01:00
Compare
renovatebot force-pushed renovate/all-minor-patch from d5b97f9340
Some checks failed
renovate/artifacts Artifact file update failure
to 287720fdda 2026-03-06 00:47:35 +01:00
Compare
renovatebot force-pushed renovate/all-minor-patch from 287720fdda to 53647f8c35 2026-03-08 08:47:41 +01:00 Compare
renovatebot force-pushed renovate/all-minor-patch from 53647f8c35 to dcff95cf68 2026-03-11 02:02:47 +01:00 Compare
renovatebot force-pushed renovate/all-minor-patch from dcff95cf68 to cbca2cc006 2026-03-12 18:03:41 +01:00 Compare
renovatebot force-pushed renovate/all-minor-patch from cbca2cc006 to 8880b1bb45
Some checks failed
renovate/artifacts Artifact file update failure
2026-03-12 20:18:27 +01:00
Compare
renovatebot force-pushed renovate/all-minor-patch from 8880b1bb45
Some checks failed
renovate/artifacts Artifact file update failure
to 64dce47f77 2026-03-13 11:32:51 +01:00
Compare
renovatebot force-pushed renovate/all-minor-patch from 64dce47f77 to 5221ec4da9 2026-03-13 20:02:54 +01:00 Compare
This pull request can be merged automatically.
You are not authorized to merge this pull request.
View command line instructions

Checkout

From your project repository, check out a new branch and test the changes.
git fetch -u origin renovate/all-minor-patch:renovate/all-minor-patch
git switch renovate/all-minor-patch

Merge

Merge the changes and update on Forgejo.

Warning: The "Autodetect manual merge" setting is not enabled for this repository, you will have to mark this pull request as manually merged afterwards.

git switch main
git merge --no-ff renovate/all-minor-patch
git switch renovate/all-minor-patch
git rebase main
git switch main
git merge --ff-only renovate/all-minor-patch
git switch renovate/all-minor-patch
git rebase main
git switch main
git merge --no-ff renovate/all-minor-patch
git switch main
git merge --squash renovate/all-minor-patch
git switch main
git merge --ff-only renovate/all-minor-patch
git switch main
git merge renovate/all-minor-patch
git push origin main
Sign in to join this conversation.
No reviewers
No labels
No milestone
No project
No assignees
1 participant
Notifications
Due date
The due date is invalid or out of range. Please use the format "yyyy-mm-dd".

No due date set.

Dependencies

No dependencies set.

Reference
lilly/nm-file-secret-agent!3
No description provided.