Skip to content

chore(deps): update all non-major dependencies#2

Open
renovate[bot] wants to merge 1 commit into
mainfrom
renovate/all-minor-patch
Open

chore(deps): update all non-major dependencies#2
renovate[bot] wants to merge 1 commit into
mainfrom
renovate/all-minor-patch

Conversation

@renovate
Copy link
Copy Markdown

@renovate renovate Bot commented Jul 20, 2025

This PR contains the following updates:

Package Type Update Change
assert_cmd dev-dependencies minor =2.0.17=2.2.2
cargo_metadata dependencies minor 0.20.00.23.0
clap dependencies minor 4.5.404.6.1
env_logger dependencies patch 0.11.80.11.10
log dependencies patch 0.4.270.4.30
predicates dev-dependencies patch =3.1.3=3.1.4
rayon dependencies minor 1.10.01.12.0
rustc-hash dependencies patch 2.1.12.1.2
serde (source) dependencies patch 1.0.2191.0.228
thiserror dependencies patch 2.0.122.0.18

Release Notes

assert-rs/assert_cmd (assert_cmd)

v2.2.2

Compare Source

Fixes
  • Ensure #[track_caller] works for better panic messages

v2.2.1

Compare Source

Internal
  • Dependency update

v2.2.0

Compare Source

Compatibility
  • Change cargo_bin bad paths to panics

v2.1.3

Compare Source

Fixes
  • Un-deprecate cargo_bin

v2.1.2

Compare Source

Fixes
  • Add #[must_use] to help catch missing assertions

v2.1.1

Compare Source

v2.1.0

Compare Source

Compatibility
  • Deprecated crate_name!() in favor of pkg_name!()
  • Deprecated Command::cargo_bin, CommandCargoExt::cargo_bin, cargo_bin in favor of cargo_bin!, cargo_bin_cmd!
Features
  • Provide cargo_bin_cmd!()
  • Use pkg_name!() as a default parameter to cargo_bin!()
oli-obk/cargo_metadata (cargo_metadata)

v0.23.1

Compare Source

Changed
  • Stabilized build_directory

v0.23.0

Compare Source

Added
  • Added FeatureName and PackageName newtype wrappers.

v0.22.0

Compare Source

Added
  • Added pub fn env_remove<K: Into<OsString>>(&mut self, key: K) -> &mut MetadataCommand to MetadataCommand.
  • Added export of cargo_platform at crate's root module.
Changed
  • Updated dependencies:
    • camino from 1.0.7 to 1.1.10
    • cargo_platform from 0.2.0 to 0.3.0
    • derive_builder from 0.12 to 0.20
    • semver from 1.0.7 to 1.0.26
    • serde_json from 1.0.118 to 1.0.142
    • serde from 1.0.136 to 1.0.219
    • thiserror from 2.0.3 to 2.0.12
  • Made Dependency's source member the same type as Package's source member: Option<Source>.

v0.21.0

Compare Source

clap-rs/clap (clap)

v4.6.1

Compare Source

Fixes
  • (derive) Ensure rebuilds happen when an read env variable is changed

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

v4.5.53

Compare Source

Features
  • Add default_values_if, default_values_ifs

v4.5.52

Compare Source

Fixes
  • Don't panic when args_conflicts_with_subcommands conflicts with an ArgGroup

v4.5.51

Compare Source

Fixes
  • (help) Correctly calculate padding for short flags that take a value
  • (help) Don't panic on short flags using ArgAction::Count

v4.5.50

Compare Source

Features
  • Accept Cow where String and &str are accepted

v4.5.49

Compare Source

Fixes
  • (help) Correctly wrap when ANSI escape codes are present

v4.5.48

Compare Source

Documentation
  • Add a new CLI Concepts document as another way of framing clap
  • Expand the typed_derive cookbook entry

v4.5.47

Compare Source

Features
  • Added impl FromArgMatches for ()
  • Added impl Args for ()
  • Added impl Subcommand for ()
  • Added impl FromArgMatches for Infallible
  • Added impl Subcommand for Infallible
Fixes
  • (derive) Update runtime error text to match clap

v4.5.46

Compare Source

Features
  • Expose StyledStr::push_str

v4.5.45

Compare Source

Fixes
  • (unstable-v5) ValueEnum variants now use the full doc comment, not summary, for PossibleValue::help

v4.5.44

Compare Source

Features
  • Add Command::mut_subcommands

v4.5.43

Compare Source

Fixes
  • (help) In long help, list Possible Values before defaults, rather than after, for a more consistent look

v4.5.42

Compare Source

Fixes
  • Include subcommand visible long aliases in --help

v4.5.41

Compare Source

Features
  • Add Styles::context and Styles::context_value to customize the styling of [default: value] like notes in the --help
rust-cli/env_logger (env_logger)

v0.11.10

Compare Source

Internal
  • Update dependencies

v0.11.9

Compare Source

rust-lang/log (log)

v0.4.30

Compare Source

What's Changed
New Contributors

Full Changelog: rust-lang/log@0.4.29...0.4.30

Notable Changes
  • MSRV is bumped to 1.71.0 in #​723

v0.4.29

Compare Source

v0.4.28

Compare Source

assert-rs/predicates-rs (predicates)

v3.1.4

Compare Source

  • Make BoxPredicate::find_case use the inner find_case implementation
rayon-rs/rayon (rayon)

v1.12.0

Compare Source

  • Fixed a bug in parallel Range<char> when the end is 0xE000, just past the
    surrogate boundary, which was unsafely producing invalid char values.
  • The new method ParallelSlice::par_array_windows works like par_windows
    but with a constant length, producing &[T; N] items.

v1.11.0

Compare Source

  • The minimum supported rustc is now 1.80.
  • iter::repeatn has been renamed to iter::repeat_n to match the name
    stabilized in the standard library. The old name still exists as a deprecated
    function for compatibility.
  • Fixed a bug in in_place_scope when the default global registry uses the
    current thread, like on WebAssembly without threading support.
  • binary_heap::Iter no longer requires a temporary allocation.
  • Relaxed trait bounds on many of the public structs.
  • Implemented IntoParallelIterator for Box<[T]> and its references.
  • Implemented FromParallelIterator<_> for Box<str> via String.
rust-lang/rustc-hash (rustc-hash)

v2.1.2

Compare Source

serde-rs/serde (serde)

v1.0.228

Compare Source

  • Allow building documentation with RUSTDOCFLAGS='--cfg=docsrs' set for the whole dependency graph (#​2995)

v1.0.227

Compare Source

v1.0.226

Compare Source

  • Deduplicate variant matching logic inside generated Deserialize impl for adjacently tagged enums (#​2935, thanks @​Mingun)

v1.0.225

Compare Source

  • Avoid triggering a deprecation warning in derived Serialize and Deserialize impls for a data structure that contains its own deprecations (#​2879, thanks @​rcrisanti)

v1.0.224

Compare Source

  • Remove private types being suggested in rustc diagnostics (#​2979)

v1.0.223

Compare Source

  • Fix serde_core documentation links (#​2978)

v1.0.222

Compare Source

  • Make serialize_with attribute produce code that works if respanned to 2024 edition (#​2950, thanks @​aytey)

v1.0.221

Compare Source

  • Documentation improvements (#​2973)
  • Deprecate serde_if_integer128! macro (#​2975)

v1.0.220

Compare Source

dtolnay/thiserror (thiserror)

v2.0.18

Compare Source

v2.0.17

Compare Source

  • Use differently named __private module per patch release (#​434)

v2.0.16

Compare Source

  • Add to "no-std" crates.io category (#​429)

v2.0.15

Compare Source

  • Prevent Error::provide API becoming unavailable from a future new compiler lint (#​427)

v2.0.14

Compare Source

  • Allow build-script cleanup failure with NFSv3 output directory to be non-fatal (#​426)

v2.0.13

Compare Source

  • Documentation improvements

Configuration

📅 Schedule: (UTC)

  • 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 was generated by Mend Renovate. View the repository job log.

@renovate renovate Bot force-pushed the renovate/all-minor-patch branch 2 times, most recently from 8117045 to 26cc50f Compare August 7, 2025 04:04
@renovate renovate Bot force-pushed the renovate/all-minor-patch branch 3 times, most recently from a736ab6 to 6130975 Compare August 16, 2025 20:09
@renovate renovate Bot force-pushed the renovate/all-minor-patch branch from 6130975 to e9bac0f Compare August 23, 2025 04:07
@renovate renovate Bot force-pushed the renovate/all-minor-patch branch 3 times, most recently from b00c11b to eadbf88 Compare September 5, 2025 08:04
@renovate renovate Bot force-pushed the renovate/all-minor-patch branch 4 times, most recently from e79a153 to a9da531 Compare September 21, 2025 07:07
@renovate renovate Bot force-pushed the renovate/all-minor-patch branch 2 times, most recently from a722a20 to 8ef1afb Compare September 30, 2025 04:02
@renovate renovate Bot force-pushed the renovate/all-minor-patch branch 2 times, most recently from f96805c to 9d23bf1 Compare October 20, 2025 23:12
@renovate renovate Bot force-pushed the renovate/all-minor-patch branch from 9d23bf1 to 7e845a7 Compare November 1, 2025 20:01
@renovate renovate Bot force-pushed the renovate/all-minor-patch branch 3 times, most recently from 8cb31cf to cc31bb1 Compare November 20, 2025 07:29
@renovate renovate Bot force-pushed the renovate/all-minor-patch branch from cc31bb1 to db3120c Compare December 2, 2025 23:46
@renovate renovate Bot force-pushed the renovate/all-minor-patch branch 2 times, most recently from 9b0cbc0 to 69a8660 Compare January 3, 2026 04:04
@renovate renovate Bot force-pushed the renovate/all-minor-patch branch from 69a8660 to cd11505 Compare January 10, 2026 07:49
@renovate renovate Bot force-pushed the renovate/all-minor-patch branch from cd11505 to 5e9583b Compare January 20, 2026 03:45
@renovate renovate Bot force-pushed the renovate/all-minor-patch branch 4 times, most recently from 94a7ec2 to 74150d0 Compare February 4, 2026 12:13
@renovate renovate Bot force-pushed the renovate/all-minor-patch branch 3 times, most recently from bc56656 to e3306be Compare February 20, 2026 03:29
@renovate renovate Bot force-pushed the renovate/all-minor-patch branch from e3306be to c497e13 Compare March 14, 2026 21:12
@renovate renovate Bot force-pushed the renovate/all-minor-patch branch from c497e13 to 3226cfd Compare March 31, 2026 11:14
@renovate renovate Bot force-pushed the renovate/all-minor-patch branch 2 times, most recently from 47663db to b194dcf Compare April 19, 2026 04:30
@renovate renovate Bot force-pushed the renovate/all-minor-patch branch from b194dcf to 62b0c29 Compare May 12, 2026 03:36
@renovate renovate Bot force-pushed the renovate/all-minor-patch branch from 62b0c29 to 45da359 Compare May 23, 2026 07:16
@renovate renovate Bot force-pushed the renovate/all-minor-patch branch from 45da359 to 4967445 Compare May 25, 2026 11:44
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