chore(deps): update rust crate uuid to v1.13.2
This MR contains the following updates:
Package | Type | Update | Change |
---|---|---|---|
uuid | workspace.dependencies | minor |
1.12.0 -> 1.13.2
|
Release Notes
uuid-rs/uuid (uuid)
v1.13.2
What's Changed
- Add a compile_error when no source of randomness is available on wasm32-unknown-unknown by @KodrAus in https://github.com/uuid-rs/uuid/pull/804
- Prepare for 1.13.2 release by @KodrAus in https://github.com/uuid-rs/uuid/pull/805
Full Changelog: https://github.com/uuid-rs/uuid/compare/1.13.1...v1.13.2
v1.13.1
What's Changed
- Fix
wasm32
withatomics
by @bushrat011899 in https://github.com/uuid-rs/uuid/pull/797 - Prepare for 1.13.1 release by @KodrAus in https://github.com/uuid-rs/uuid/pull/799
New Contributors
- @bushrat011899 made their first contribution in https://github.com/uuid-rs/uuid/pull/797
Full Changelog: https://github.com/uuid-rs/uuid/compare/1.13.0...1.13.1
v1.13.0

Potential Breakage

This release updates our version of getrandom
to 0.3
and rand
to 0.9
. It is a potentially breaking change for the following users:
rng
feature
no-std users who enable the uuid
still uses getrandom
by default on these platforms. Upgrade your version of getrandom
and follow its new docs on configuring a custom backend.
wasm32-unknown-unknown
users who enable the rng
feature without the js
feature
Upgrade your version of getrandom
and follow its new docs on configuring a backend.
You'll also need to enable the rng-getrandom
or rng-rand
feature of uuid
to force it to use getrandom
as its backend:
[dependencies.uuid]
version = "1.13.0"
- features = ["v4"]
+ features = ["v4", "rng-getrandom"]
[dependencies.getrandom]
version = "0.3"
If you're on wasm32-unknown-unknown
and using the js
feature of uuid
you shouldn't see any breakage. We've kept this behavior by vendoring in getrandom
's web-based backend when the js
feature is enabled.
What's Changed
- Update
getrandom
to0.3
andrand
to0.9
by @KodrAus in https://github.com/uuid-rs/uuid/pull/793 - Support forcing
getrandom
onwasm32-unknown-unknown
without JavaScript by @KodrAus in https://github.com/uuid-rs/uuid/pull/794 - Prepare for 1.13.0 release by @KodrAus in https://github.com/uuid-rs/uuid/pull/795
Full Changelog: https://github.com/uuid-rs/uuid/compare/1.12.1...1.13.0
v1.12.1
What's Changed
- Fix links to namespaces in documentation by @cstyles in https://github.com/uuid-rs/uuid/pull/789
- use inherent to_be_bytes and to_le_bytes methods by @Vrtgs in https://github.com/uuid-rs/uuid/pull/788
- Reduce bitshifts in from_u64_pair by @KodrAus in https://github.com/uuid-rs/uuid/pull/790
- prepare for 1.12.1 release by @KodrAus in https://github.com/uuid-rs/uuid/pull/791
New Contributors
- @cstyles made their first contribution in https://github.com/uuid-rs/uuid/pull/789
- @Vrtgs made their first contribution in https://github.com/uuid-rs/uuid/pull/788
Full Changelog: https://github.com/uuid-rs/uuid/compare/1.12.0...1.12.1
Configuration
-
If you want to rebase/retry this MR, check this box
This MR has been generated by Renovate Bot.