fix(deps): update rust crate uuid to v1.8.0
This MR contains the following updates:
Package | Type | Update | Change |
---|---|---|---|
uuid | dependencies | minor |
1.7.0 -> 1.8.0
|
uuid | dependencies | minor |
^1.7.0 -> ^1.8.0
|
Release Notes
uuid-rs/uuid (uuid)
v1.8.0
⚠ ️ Potential Breakage ⚠ ️
A new impl AsRef<Uuid> for Uuid
bound has been added, which can break inference on code like:
let b = uuid.as_ref();
You can fix these by explicitly typing the result of the conversion:
let b: &[u8] = uuid.as_ref();
or by calling as_bytes
instead:
let b = uuid.as_bytes();
What's Changed
- docs: fix small spelling mistake by @bengsparks in https://github.com/uuid-rs/uuid/pull/737
- serde serialize_with support by @dakaizou in https://github.com/uuid-rs/uuid/pull/735
- Fix up CI builds by @KodrAus in https://github.com/uuid-rs/uuid/pull/744
- Only add
wasm-bindgen
as a dependency onwasm32-unknown-unknown
by @emilk in https://github.com/uuid-rs/uuid/pull/738 - impl AsRef for Uuid by @koshell in https://github.com/uuid-rs/uuid/pull/743
- Add v6 to v8 draft link to README by @KodrAus in https://github.com/uuid-rs/uuid/pull/746
- Add a workflow for running cargo outdated by @KodrAus in https://github.com/uuid-rs/uuid/pull/745
- Prepare for 1.8.0 release by @KodrAus in https://github.com/uuid-rs/uuid/pull/747
New Contributors
- @bengsparks made their first contribution in https://github.com/uuid-rs/uuid/pull/737
- @dakaizou made their first contribution in https://github.com/uuid-rs/uuid/pull/735
- @emilk made their first contribution in https://github.com/uuid-rs/uuid/pull/738
- @koshell made their first contribution in https://github.com/uuid-rs/uuid/pull/743
Full Changelog: https://github.com/uuid-rs/uuid/compare/1.7.0...1.8.0
Configuration
-
If you want to rebase/retry this MR, check this box
This MR has been generated by Renovate Bot.