Skip to content

Bump the minor-changes group across 1 directory with 12 updates#346

Closed
dependabot[bot] wants to merge 1 commit intomasterfrom
dependabot/cargo/minor-changes-4fe09980a2
Closed

Bump the minor-changes group across 1 directory with 12 updates#346
dependabot[bot] wants to merge 1 commit intomasterfrom
dependabot/cargo/minor-changes-4fe09980a2

Conversation

@dependabot
Copy link
Copy Markdown
Contributor

@dependabot dependabot bot commented on behalf of github Apr 1, 2026

Bumps the minor-changes group with 12 updates in the / directory:

Package From To
anyhow 1.0.100 1.0.102
chrono 0.4.43 0.4.44
crypto-bigint 0.7.0-rc.27 0.7.3
crypto-primes 0.7.0-pre.9 0.7.0
getrandom 0.4.1 0.4.2
hmac 0.13.0-rc.5 0.13.0
k256 0.14.0-rc.7 0.14.0-rc.8
once_cell 1.21.3 1.21.4
p256 0.14.0-rc.7 0.14.0-rc.8
rsa 0.10.0-rc.15 0.10.0-rc.17
sha2 0.11.0-rc.5 0.11.0
uuid 1.20.0 1.23.0

Updates anyhow from 1.0.100 to 1.0.102

Release notes

Sourced from anyhow's releases.

1.0.102

1.0.101

Commits
  • 5c657b3 Release 1.0.102
  • e737fb6 Merge pull request #442 from dtolnay/backtrace
  • 7fe62b5 Further simply backtrace conditional compilation
  • c8cb5ca Merge pull request #441 from dtolnay/backtrace
  • de27df7 Delete CI use of --features=backtrace
  • 9b67e5d Merge pull request #440 from dtolnay/backtrace
  • efdb11a Simplify std_backtrace conditional code
  • b8a9a70 Merge pull request #439 from dtolnay/backtrace
  • a42fc2c Remove feature = "backtrace" conditional code
  • 2a2a3ce Re-word backtrace feature comment
  • Additional commits viewable in compare view

Updates chrono from 0.4.43 to 0.4.44

Release notes

Sourced from chrono's releases.

0.4.44

What's Changed

Commits
  • c14b459 Bump version to 0.4.44
  • ea832c5 Add track_caller to non-deprecated functions
  • cfae889 Fix panic message in to_rfc2822
  • f8900b5 docs: match MSRV with Cargo.toml contents
  • See full diff in compare view

Updates crypto-bigint from 0.7.0-rc.27 to 0.7.3

Changelog

Sourced from crypto-bigint's changelog.

0.7.3 (2026-03-25)

Added

  • #[inline] attributes for shift and wrapping arithmetic ops (#1229)
  • MontyForm::{is_zero, is_one} methods (#1230)
  • Gcd supertrait bound to Unsigned/Signed traits (#1231)

Changed

  • Define Uint division traits generically (#1232)
  • Use generic implementation of bit operations for Wrapping (#1235)
  • Explicitly seal MontyForm (#1237)

#1229: RustCrypto/crypto-bigint#1229 #1230: RustCrypto/crypto-bigint#1230 #1231: RustCrypto/crypto-bigint#1231 #1232: RustCrypto/crypto-bigint#1232 #1235: RustCrypto/crypto-bigint#1235 #1237: RustCrypto/crypto-bigint#1237

0.7.2 (2026-03-20)

Added

  • Invert to MontyForm supertraits (#1226)

Changed

  • BREAKING: seal the Integer trait (#1227)

#1226: RustCrypto/crypto-bigint#1226 #1227: RustCrypto/crypto-bigint#1227

0.7.1 (2026-03-10) [YANKED]

NOTE: this release, like v0.7.0, was yanked due to last-minute breaking changes, namely sealing the Integer trait (#1227), which is technically a breaking change but one we do not expect will have any user-facing impact.

Added

  • Uint::{concat_resize, concat_checked, split_resize, split_checked} methods (#1223)

Changed

  • PrimeParams now requires a multiplicative generator value (#1221)
  • Improve performance of Monty pow/pow_vartime (#1222)

#1221: RustCrypto/crypto-bigint#1221 #1222: RustCrypto/crypto-bigint#1222 #1223: RustCrypto/crypto-bigint#1223

0.7.0 (2026-03-08) [YANKED]

NOTE: this release was yanked due to some last minute breaking-changes introduced in v0.7.1, namely an additional parameter added to const_prime_monty_params! / PrimeParams.

... (truncated)

Commits

Updates crypto-primes from 0.7.0-pre.9 to 0.7.0

Changelog

Sourced from crypto-primes's changelog.

[0.7.0] - 2026-03-09

Changed

  • Bumped crypto-bigint to 0.7.0. (#116)

#116: entropyxyz/crypto-primes#116

Commits
  • b882295 v0.7.0 released
  • 0ca52cc Bump glass_pumpkin to 1.10 which uses the same rand_core as the rest of t...
  • f50f892 Bump crypto-bigint to v0.7 final release (#116)
  • See full diff in compare view

Updates getrandom from 0.4.1 to 0.4.2

Changelog

Sourced from getrandom's changelog.

0.4.2 - 2026-03-03

Changed

  • Bump r-efi dependency to v6 #814

Fixed

  • Read errno only when it is set #810
  • Check the return value of ProcessPrng on Windows #811

#810: rust-random/getrandom#810 #811: rust-random/getrandom#811 #814: rust-random/getrandom#814

Commits

Updates hmac from 0.13.0-rc.5 to 0.13.0

Commits

Updates k256 from 0.14.0-rc.7 to 0.14.0-rc.8

Commits

Updates once_cell from 1.21.3 to 1.21.4

Changelog

Sourced from once_cell's changelog.

1.21.4

  • Fix unsoundness in OnceCell::wait under --features=parking_lot, #295.

    If thread A calls wait, while thread B calls get_or_try_init(f), and, furthermore, f panics, the wait incorrectly returns and thread A observes uninitialized memory.

    Kudos to @​meng-xu-cs for a nice find!

Commits
  • 80fe900 Merge pull request #296 from matklad/matklad/plfix
  • a5e09c9 release 1.21.4
  • 2426d45 Merge pull request #295 from matklad/matklad/plfix
  • a144121 Merge pull request #290 from alexanderkjall/run-tests-with-no-default-features
  • 232a1a4 Merge pull request #292 from phil-opp/doc-fix
  • d31767b fix OnceCell::wait with features=parking_lot
  • 28d29ae Fix: sync::OnceCell::try_insert docs should import sync variant
  • 0f78fb0 make the command 'cargo test --no-default-features' work
  • fda60a6 Merge pull request #287 from AbeZbm/add-tests
  • b5b98c0 Add tests for OnceRef
  • See full diff in compare view

Updates p256 from 0.14.0-rc.7 to 0.14.0-rc.8

Commits

Updates rsa from 0.10.0-rc.15 to 0.10.0-rc.17

Commits

Updates sha2 from 0.11.0-rc.5 to 0.11.0

Commits

Updates uuid from 1.20.0 to 1.23.0

Release notes

Sourced from uuid's releases.

v1.23.0

What's Changed

New Contributors

Special thanks

@​meng-xu-cs raised a series of bugs against the timestamp logic in uuid using automated tooling. The issues themselves were reasonably and responsibly presented and the end result is a better uuid library for everyone. Thanks!

Deprecations

This release includes the following deprecations:

  • Context: Renamed to ContextV1
  • Timestamp::from_gregorian: Renamed to Timestamp::from_gregorian_time

Change to Version::Max

Version::Max's u8 representation has changed from 0xff to 0x0f to match the value returned by Uuid::get_version_num.

Change to Uuid::get_version for the max UUID

Uuid::get_version will only return Some(Version::Max) if the UUID is actually the max UUID (all bytes are 0xff). Previously it would return Some if only the version field was 0x0f. This change matches the behaviour of the nil UUID, which only returns Some(Version::Nil) if the UUID is the nil UUID (all bytes are 0x00).

Full Changelog: uuid-rs/uuid@v1.22.0...v1.23.0

v1.22.0

What's Changed

New Contributors

Full Changelog: uuid-rs/uuid@v1.21.0...v1.22.0

v1.21.0

What's Changed

New Contributors

... (truncated)

Commits
  • 00ab922 Merge pull request #876 from uuid-rs/cargo/v1.23.0
  • 726ba45 prepare for 1.23.0 release
  • 996dade Merge pull request #875 from uuid-rs/fix/context-ordering
  • e140479 simplify a use stmt
  • 8ed9142 reorganize and document more v7 context internals
  • e09a322 use LazyLock to synchronize v1/v6 context initialization
  • 0f260cc Merge pull request #874 from uuid-rs/chore/impl-cleanups
  • 1419e91 clean up and refactor main lib tests
  • ceeaf4b ensure we don't overflow on counters less than 12
  • 63bc8f5 Merge pull request #873 from uuid-rs/fix/error-msg
  • 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 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 minor-changes group with 12 updates in the / directory:

| Package | From | To |
| --- | --- | --- |
| [anyhow](https://github.com/dtolnay/anyhow) | `1.0.100` | `1.0.102` |
| [chrono](https://github.com/chronotope/chrono) | `0.4.43` | `0.4.44` |
| [crypto-bigint](https://github.com/RustCrypto/crypto-bigint) | `0.7.0-rc.27` | `0.7.3` |
| [crypto-primes](https://github.com/entropyxyz/crypto-primes) | `0.7.0-pre.9` | `0.7.0` |
| [getrandom](https://github.com/rust-random/getrandom) | `0.4.1` | `0.4.2` |
| [hmac](https://github.com/RustCrypto/MACs) | `0.13.0-rc.5` | `0.13.0` |
| [k256](https://github.com/RustCrypto/elliptic-curves) | `0.14.0-rc.7` | `0.14.0-rc.8` |
| [once_cell](https://github.com/matklad/once_cell) | `1.21.3` | `1.21.4` |
| [p256](https://github.com/RustCrypto/elliptic-curves) | `0.14.0-rc.7` | `0.14.0-rc.8` |
| [rsa](https://github.com/RustCrypto/RSA) | `0.10.0-rc.15` | `0.10.0-rc.17` |
| [sha2](https://github.com/RustCrypto/hashes) | `0.11.0-rc.5` | `0.11.0` |
| [uuid](https://github.com/uuid-rs/uuid) | `1.20.0` | `1.23.0` |



Updates `anyhow` from 1.0.100 to 1.0.102
- [Release notes](https://github.com/dtolnay/anyhow/releases)
- [Commits](dtolnay/anyhow@1.0.100...1.0.102)

Updates `chrono` from 0.4.43 to 0.4.44
- [Release notes](https://github.com/chronotope/chrono/releases)
- [Changelog](https://github.com/chronotope/chrono/blob/main/CHANGELOG.md)
- [Commits](chronotope/chrono@v0.4.43...v0.4.44)

Updates `crypto-bigint` from 0.7.0-rc.27 to 0.7.3
- [Changelog](https://github.com/RustCrypto/crypto-bigint/blob/master/CHANGELOG.md)
- [Commits](RustCrypto/crypto-bigint@v0.7.0-rc.27...v0.7.3)

Updates `crypto-primes` from 0.7.0-pre.9 to 0.7.0
- [Changelog](https://github.com/entropyxyz/crypto-primes/blob/master/CHANGELOG.md)
- [Commits](entropyxyz/crypto-primes@v0.7.0-pre.9...v0.7.0)

Updates `getrandom` from 0.4.1 to 0.4.2
- [Changelog](https://github.com/rust-random/getrandom/blob/master/CHANGELOG.md)
- [Commits](rust-random/getrandom@v0.4.1...v0.4.2)

Updates `hmac` from 0.13.0-rc.5 to 0.13.0
- [Commits](RustCrypto/MACs@hmac-v0.13.0-rc.5...hmac-v0.13.0)

Updates `k256` from 0.14.0-rc.7 to 0.14.0-rc.8
- [Commits](RustCrypto/elliptic-curves@k256/v0.14.0-rc.7...k256/v0.14.0-rc.8)

Updates `once_cell` from 1.21.3 to 1.21.4
- [Changelog](https://github.com/matklad/once_cell/blob/master/CHANGELOG.md)
- [Commits](matklad/once_cell@v1.21.3...v1.21.4)

Updates `p256` from 0.14.0-rc.7 to 0.14.0-rc.8
- [Commits](RustCrypto/elliptic-curves@p256/v0.14.0-rc.7...p256/v0.14.0-rc.8)

Updates `rsa` from 0.10.0-rc.15 to 0.10.0-rc.17
- [Changelog](https://github.com/RustCrypto/RSA/blob/master/CHANGELOG.md)
- [Commits](RustCrypto/RSA@v0.10.0-rc.15...v0.10.0-rc.17)

Updates `sha2` from 0.11.0-rc.5 to 0.11.0
- [Commits](RustCrypto/hashes@sha2-v0.11.0-rc.5...sha2-v0.11.0)

Updates `uuid` from 1.20.0 to 1.23.0
- [Release notes](https://github.com/uuid-rs/uuid/releases)
- [Commits](uuid-rs/uuid@v1.20.0...v1.23.0)

---
updated-dependencies:
- dependency-name: anyhow
  dependency-version: 1.0.102
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: minor-changes
- dependency-name: chrono
  dependency-version: 0.4.44
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: minor-changes
- dependency-name: crypto-bigint
  dependency-version: 0.7.3
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: minor-changes
- dependency-name: crypto-primes
  dependency-version: 0.7.0
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: minor-changes
- dependency-name: getrandom
  dependency-version: 0.4.2
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: minor-changes
- dependency-name: hmac
  dependency-version: 0.13.0
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: minor-changes
- dependency-name: k256
  dependency-version: 0.14.0-rc.8
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: minor-changes
- dependency-name: once_cell
  dependency-version: 1.21.4
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: minor-changes
- dependency-name: p256
  dependency-version: 0.14.0-rc.8
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: minor-changes
- dependency-name: rsa
  dependency-version: 0.10.0-rc.17
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: minor-changes
- dependency-name: sha2
  dependency-version: 0.11.0
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: minor-changes
- dependency-name: uuid
  dependency-version: 1.23.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: minor-changes
...

Signed-off-by: dependabot[bot] <support@github.com>
@dependabot dependabot bot added dependencies Pull requests that update a dependency file rust Pull requests that update Rust code labels Apr 1, 2026
@dependabot @github
Copy link
Copy Markdown
Contributor Author

dependabot bot commented on behalf of github Apr 13, 2026

Looks like these dependencies are updatable in another way, so this is no longer needed.

@dependabot dependabot bot closed this Apr 13, 2026
@dependabot dependabot bot deleted the dependabot/cargo/minor-changes-4fe09980a2 branch April 13, 2026 03:04
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.

1 participant