chore(deps): update rust crate uuid to v1.23.0 #64

Open
renovate-bot wants to merge 1 commit from renovate/uuid-1.x-lockfile into master
Collaborator

This PR contains the following updates:

Package Type Update Change
uuid dependencies minor 1.10.0 -> 1.23.0

Release Notes

uuid-rs/uuid (uuid)

v1.23.0

Compare Source

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: https://github.com/uuid-rs/uuid/compare/v1.22.0...v1.23.0

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

v1.19.0

Compare Source

What's Changed

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

v1.18.1

Compare Source

What's Changed

Full Changelog: https://github.com/uuid-rs/uuid/compare/v1.18.0...v1.18.1

v1.18.0

Compare Source

What's Changed

New Contributors

Full Changelog: https://github.com/uuid-rs/uuid/compare/v1.17.0...v1.18.0

v1.17.0

Compare Source

What's Changed

New Contributors

Full Changelog: https://github.com/uuid-rs/uuid/compare/v1.16.0...v1.17.0

v1.16.0

Compare Source

What's Changed

New Contributors

Full Changelog: https://github.com/uuid-rs/uuid/compare/v1.15.1...v1.16.0

v1.15.1

Compare Source

What's Changed

Full Changelog: https://github.com/uuid-rs/uuid/compare/v1.15.0...v1.15.1

v1.15.0

Compare Source

What's Changed

New Contributors

Full Changelog: https://github.com/uuid-rs/uuid/compare/v1.14.0...v1.15.0

v1.14.0

Compare Source

What's Changed

New Contributors

Full Changelog: https://github.com/uuid-rs/uuid/compare/v1.13.2...v1.14.0

v1.13.2

Compare Source

What's Changed

Full Changelog: https://github.com/uuid-rs/uuid/compare/1.13.1...v1.13.2

v1.13.1

Compare Source

What's Changed

New Contributors

Full Changelog: https://github.com/uuid-rs/uuid/compare/1.13.0...1.13.1

v1.13.0

Compare Source

⚠️ 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:

no-std users who enable the rng feature

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

Full Changelog: https://github.com/uuid-rs/uuid/compare/1.12.1...1.13.0

v1.12.1

Compare Source

What's Changed

New Contributors

Full Changelog: https://github.com/uuid-rs/uuid/compare/1.12.0...1.12.1

v1.12.0

Compare Source

⚠️ Possible Breakage

This release includes additional PartialEq implementations on Uuid, which can break inference in some cases.

What's Changed

New Contributors

Full Changelog: https://github.com/uuid-rs/uuid/compare/1.11.1...1.12.0

v1.11.1

Compare Source

What's Changed

New Contributors

Full Changelog: https://github.com/uuid-rs/uuid/compare/1.11.0...1.11.1

v1.11.0

Compare Source

What's Changed

New Contributors

Full Changelog: https://github.com/uuid-rs/uuid/compare/1.10.0...1.11.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.

🔕 Ignore: Close this PR and you won't be reminded about this update again.


  • 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 | |---|---|---|---| | [uuid](https://github.com/uuid-rs/uuid) | dependencies | minor | `1.10.0` -> `1.23.0` | --- ### Release Notes <details> <summary>uuid-rs/uuid (uuid)</summary> ### [`v1.23.0`](https://github.com/uuid-rs/uuid/releases/tag/v1.23.0) [Compare Source](https://github.com/uuid-rs/uuid/compare/v1.22.0...v1.23.0) #### What's Changed - feat: add support for 'hyphenated' format in the serde module by [@&#8203;FrenchDilettante](https://github.com/FrenchDilettante) in [#&#8203;865](https://github.com/uuid-rs/uuid/pull/865) - Fix a number of bugs in time-related code by [@&#8203;KodrAus](https://github.com/KodrAus) in [#&#8203;872](https://github.com/uuid-rs/uuid/pull/872) - Reword invalid char error message by [@&#8203;KodrAus](https://github.com/KodrAus) in [#&#8203;873](https://github.com/uuid-rs/uuid/pull/873) - Impl cleanups by [@&#8203;KodrAus](https://github.com/KodrAus) in [#&#8203;874](https://github.com/uuid-rs/uuid/pull/874) - Use LazyLock to synchronize v1/v6 context initialization by [@&#8203;KodrAus](https://github.com/KodrAus) in [#&#8203;875](https://github.com/uuid-rs/uuid/pull/875) - Prepare for 1.23.0 release by [@&#8203;KodrAus](https://github.com/KodrAus) in [#&#8203;876](https://github.com/uuid-rs/uuid/pull/876) #### New Contributors - [@&#8203;FrenchDilettante](https://github.com/FrenchDilettante) made their first contribution in [#&#8203;865](https://github.com/uuid-rs/uuid/pull/865) #### Special thanks [@&#8203;meng-xu-cs](https://github.com/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**: <https://github.com/uuid-rs/uuid/compare/v1.22.0...v1.23.0> ### [`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> ### [`v1.19.0`](https://github.com/uuid-rs/uuid/releases/tag/v1.19.0) [Compare Source](https://github.com/uuid-rs/uuid/compare/v1.18.1...v1.19.0) #### What's Changed - Switch serde dependency to serde\_core by [@&#8203;paolobarbolini](https://github.com/paolobarbolini) in [#&#8203;843](https://github.com/uuid-rs/uuid/pull/843) - Upgrade to 2021 edition and fix most clippy warnings by [@&#8203;paolobarbolini](https://github.com/paolobarbolini) in [#&#8203;848](https://github.com/uuid-rs/uuid/pull/848) - Prepare for 1.19.0 release by [@&#8203;KodrAus](https://github.com/KodrAus) in [#&#8203;849](https://github.com/uuid-rs/uuid/pull/849) **Full Changelog**: <https://github.com/uuid-rs/uuid/compare/v1.18.1...v1.19.0> ### [`v1.18.1`](https://github.com/uuid-rs/uuid/releases/tag/v1.18.1) [Compare Source](https://github.com/uuid-rs/uuid/compare/v1.18.0...v1.18.1) #### What's Changed - Unsafe cleanup by [@&#8203;KodrAus](https://github.com/KodrAus) in [#&#8203;841](https://github.com/uuid-rs/uuid/pull/841) - Prepare for 1.18.1 release by [@&#8203;KodrAus](https://github.com/KodrAus) in [#&#8203;842](https://github.com/uuid-rs/uuid/pull/842) **Full Changelog**: <https://github.com/uuid-rs/uuid/compare/v1.18.0...v1.18.1> ### [`v1.18.0`](https://github.com/uuid-rs/uuid/releases/tag/v1.18.0) [Compare Source](https://github.com/uuid-rs/uuid/compare/v1.17.0...v1.18.0) #### What's Changed - Fix up mismatched\_lifetime\_syntaxes lint by [@&#8203;KodrAus](https://github.com/KodrAus) in [#&#8203;837](https://github.com/uuid-rs/uuid/pull/837) - Conversions between `Timestamp` and `std::time::SystemTime` by [@&#8203;dcormier](https://github.com/dcormier) in [#&#8203;835](https://github.com/uuid-rs/uuid/pull/835) - Wrap the error type used in time conversions by [@&#8203;KodrAus](https://github.com/KodrAus) in [#&#8203;838](https://github.com/uuid-rs/uuid/pull/838) - Prepare for 1.18.0 release by [@&#8203;KodrAus](https://github.com/KodrAus) in [#&#8203;839](https://github.com/uuid-rs/uuid/pull/839) #### New Contributors - [@&#8203;dcormier](https://github.com/dcormier) made their first contribution in [#&#8203;835](https://github.com/uuid-rs/uuid/pull/835) **Full Changelog**: <https://github.com/uuid-rs/uuid/compare/v1.17.0...v1.18.0> ### [`v1.17.0`](https://github.com/uuid-rs/uuid/releases/tag/v1.17.0) [Compare Source](https://github.com/uuid-rs/uuid/compare/v1.16.0...v1.17.0) #### What's Changed - Added convenience implementation TryFrom<String> for std by [@&#8203;Nahuel-M](https://github.com/Nahuel-M) in [#&#8203;819](https://github.com/uuid-rs/uuid/pull/819) - Update OSX builds to arm by [@&#8203;KodrAus](https://github.com/KodrAus) in [#&#8203;825](https://github.com/uuid-rs/uuid/pull/825) - Replace derive(Hash) with manual impl in Uuid by [@&#8203;diopoex](https://github.com/diopoex) in [#&#8203;824](https://github.com/uuid-rs/uuid/pull/824) - Add `wasm32v1-none` Support by [@&#8203;bushrat011899](https://github.com/bushrat011899) in [#&#8203;828](https://github.com/uuid-rs/uuid/pull/828) - Prepare for 1.17.0 release by [@&#8203;KodrAus](https://github.com/KodrAus) in [#&#8203;829](https://github.com/uuid-rs/uuid/pull/829) #### New Contributors - [@&#8203;Nahuel-M](https://github.com/Nahuel-M) made their first contribution in [#&#8203;819](https://github.com/uuid-rs/uuid/pull/819) - [@&#8203;diopoex](https://github.com/diopoex) made their first contribution in [#&#8203;824](https://github.com/uuid-rs/uuid/pull/824) **Full Changelog**: <https://github.com/uuid-rs/uuid/compare/v1.16.0...v1.17.0> ### [`v1.16.0`](https://github.com/uuid-rs/uuid/releases/tag/v1.16.0) [Compare Source](https://github.com/uuid-rs/uuid/compare/v1.15.1...v1.16.0) #### What's Changed - Mark `Uuid::new_v8` const by [@&#8203;tguichaoua](https://github.com/tguichaoua) in [#&#8203;815](https://github.com/uuid-rs/uuid/pull/815) - Prepare for 1.16.0 release by [@&#8203;KodrAus](https://github.com/KodrAus) in [#&#8203;817](https://github.com/uuid-rs/uuid/pull/817) #### New Contributors - [@&#8203;tguichaoua](https://github.com/tguichaoua) made their first contribution in [#&#8203;815](https://github.com/uuid-rs/uuid/pull/815) **Full Changelog**: <https://github.com/uuid-rs/uuid/compare/v1.15.1...v1.16.0> ### [`v1.15.1`](https://github.com/uuid-rs/uuid/releases/tag/v1.15.1) [Compare Source](https://github.com/uuid-rs/uuid/compare/v1.15.0...v1.15.1) #### What's Changed - Guarantee v7 timestamp will never overflow by [@&#8203;KodrAus](https://github.com/KodrAus) in [#&#8203;811](https://github.com/uuid-rs/uuid/pull/811) - Prepare for 1.15.1 release by [@&#8203;KodrAus](https://github.com/KodrAus) in [#&#8203;812](https://github.com/uuid-rs/uuid/pull/812) **Full Changelog**: <https://github.com/uuid-rs/uuid/compare/v1.15.0...v1.15.1> ### [`v1.15.0`](https://github.com/uuid-rs/uuid/releases/tag/v1.15.0) [Compare Source](https://github.com/uuid-rs/uuid/compare/v1.14.0...v1.15.0) #### What's Changed - Add a manual `Debug` implementation for NonNilUUid by [@&#8203;rick-de-water](https://github.com/rick-de-water) in [#&#8203;808](https://github.com/uuid-rs/uuid/pull/808) - Support higher precision, shiftable timestamps in V7 UUIDs by [@&#8203;KodrAus](https://github.com/KodrAus) in [#&#8203;809](https://github.com/uuid-rs/uuid/pull/809) - Prepare for 1.15.0 release by [@&#8203;KodrAus](https://github.com/KodrAus) in [#&#8203;810](https://github.com/uuid-rs/uuid/pull/810) #### New Contributors - [@&#8203;rick-de-water](https://github.com/rick-de-water) made their first contribution in [#&#8203;808](https://github.com/uuid-rs/uuid/pull/808) **Full Changelog**: <https://github.com/uuid-rs/uuid/compare/v1.14.0...v1.15.0> ### [`v1.14.0`](https://github.com/uuid-rs/uuid/releases/tag/v1.14.0) [Compare Source](https://github.com/uuid-rs/uuid/compare/v1.13.2...v1.14.0) #### What's Changed - Add FromStr impls to the fmt structs by [@&#8203;tysen](https://github.com/tysen) in [#&#8203;806](https://github.com/uuid-rs/uuid/pull/806) - Prepare for 1.14.0 release by [@&#8203;KodrAus](https://github.com/KodrAus) in [#&#8203;807](https://github.com/uuid-rs/uuid/pull/807) #### New Contributors - [@&#8203;tysen](https://github.com/tysen) made their first contribution in [#&#8203;806](https://github.com/uuid-rs/uuid/pull/806) **Full Changelog**: <https://github.com/uuid-rs/uuid/compare/v1.13.2...v1.14.0> ### [`v1.13.2`](https://github.com/uuid-rs/uuid/releases/tag/v1.13.2) [Compare Source](https://github.com/uuid-rs/uuid/compare/1.13.1...v1.13.2) #### What's Changed - Add a compile\_error when no source of randomness is available on wasm32-unknown-unknown by [@&#8203;KodrAus](https://github.com/KodrAus) in [#&#8203;804](https://github.com/uuid-rs/uuid/pull/804) - Prepare for 1.13.2 release by [@&#8203;KodrAus](https://github.com/KodrAus) in [#&#8203;805](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`](https://github.com/uuid-rs/uuid/releases/tag/1.13.1) [Compare Source](https://github.com/uuid-rs/uuid/compare/1.13.0...1.13.1) #### What's Changed - Fix `wasm32` with `atomics` by [@&#8203;bushrat011899](https://github.com/bushrat011899) in [#&#8203;797](https://github.com/uuid-rs/uuid/pull/797) - Prepare for 1.13.1 release by [@&#8203;KodrAus](https://github.com/KodrAus) in [#&#8203;799](https://github.com/uuid-rs/uuid/pull/799) #### New Contributors - [@&#8203;bushrat011899](https://github.com/bushrat011899) made their first contribution in [#&#8203;797](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`](https://github.com/uuid-rs/uuid/releases/tag/1.13.0) [Compare Source](https://github.com/uuid-rs/uuid/compare/1.12.1...1.13.0) #### :warning: 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: ##### no-std users who enable the `rng` feature `uuid` still uses `getrandom` by default on these platforms. Upgrade your version of `getrandom` and [follow its new docs](https://docs.rs/getrandom/0.3.1/getrandom/index.html#custom-backend) 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](https://docs.rs/getrandom/0.3.1/getrandom/index.html#custom-backend) 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: ```diff [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` to `0.3` and `rand` to `0.9` by [@&#8203;KodrAus](https://github.com/KodrAus) in [#&#8203;793](https://github.com/uuid-rs/uuid/pull/793) - Support forcing `getrandom` on `wasm32-unknown-unknown` without JavaScript by [@&#8203;KodrAus](https://github.com/KodrAus) in [#&#8203;794](https://github.com/uuid-rs/uuid/pull/794) - Prepare for 1.13.0 release by [@&#8203;KodrAus](https://github.com/KodrAus) in [#&#8203;795](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`](https://github.com/uuid-rs/uuid/releases/tag/1.12.1) [Compare Source](https://github.com/uuid-rs/uuid/compare/1.12.0...1.12.1) #### What's Changed - Fix links to namespaces in documentation by [@&#8203;cstyles](https://github.com/cstyles) in [#&#8203;789](https://github.com/uuid-rs/uuid/pull/789) - use inherent to\_be\_bytes and to\_le\_bytes methods by [@&#8203;Vrtgs](https://github.com/Vrtgs) in [#&#8203;788](https://github.com/uuid-rs/uuid/pull/788) - Reduce bitshifts in from\_u64\_pair by [@&#8203;KodrAus](https://github.com/KodrAus) in [#&#8203;790](https://github.com/uuid-rs/uuid/pull/790) - prepare for 1.12.1 release by [@&#8203;KodrAus](https://github.com/KodrAus) in [#&#8203;791](https://github.com/uuid-rs/uuid/pull/791) #### New Contributors - [@&#8203;cstyles](https://github.com/cstyles) made their first contribution in [#&#8203;789](https://github.com/uuid-rs/uuid/pull/789) - [@&#8203;Vrtgs](https://github.com/Vrtgs) made their first contribution in [#&#8203;788](https://github.com/uuid-rs/uuid/pull/788) **Full Changelog**: <https://github.com/uuid-rs/uuid/compare/1.12.0...1.12.1> ### [`v1.12.0`](https://github.com/uuid-rs/uuid/releases/tag/1.12.0) [Compare Source](https://github.com/uuid-rs/uuid/compare/1.11.1...1.12.0) #### :warning: Possible Breakage This release includes additional `PartialEq` implementations on `Uuid`, which can break inference in some cases. #### What's Changed - feat: Add `NonZeroUuid` type for optimized `Option<Uuid>` representation by [@&#8203;ab22593k](https://github.com/ab22593k) in [#&#8203;779](https://github.com/uuid-rs/uuid/pull/779) - Finalize `NonNilUuid` by [@&#8203;KodrAus](https://github.com/KodrAus) in [#&#8203;783](https://github.com/uuid-rs/uuid/pull/783) - Prepare for 1.12.0 release by [@&#8203;KodrAus](https://github.com/KodrAus) in [#&#8203;784](https://github.com/uuid-rs/uuid/pull/784) #### New Contributors - [@&#8203;ab22593k](https://github.com/ab22593k) made their first contribution in [#&#8203;779](https://github.com/uuid-rs/uuid/pull/779) **Full Changelog**: <https://github.com/uuid-rs/uuid/compare/1.11.1...1.12.0> ### [`v1.11.1`](https://github.com/uuid-rs/uuid/releases/tag/1.11.1) [Compare Source](https://github.com/uuid-rs/uuid/compare/1.11.0...1.11.1) #### What's Changed - Finish cut off docs by [@&#8203;KodrAus](https://github.com/KodrAus) in [#&#8203;777](https://github.com/uuid-rs/uuid/pull/777) - Fix links in CONTRIBUTING.md by [@&#8203;jacobggman](https://github.com/jacobggman) in [#&#8203;778](https://github.com/uuid-rs/uuid/pull/778) - Update rust toolchain before building by [@&#8203;KodrAus](https://github.com/KodrAus) in [#&#8203;781](https://github.com/uuid-rs/uuid/pull/781) - Prepare for 1.11.1 release by [@&#8203;KodrAus](https://github.com/KodrAus) in [#&#8203;782](https://github.com/uuid-rs/uuid/pull/782) #### New Contributors - [@&#8203;jacobggman](https://github.com/jacobggman) made their first contribution in [#&#8203;778](https://github.com/uuid-rs/uuid/pull/778) **Full Changelog**: <https://github.com/uuid-rs/uuid/compare/1.11.0...1.11.1> ### [`v1.11.0`](https://github.com/uuid-rs/uuid/releases/tag/1.11.0) [Compare Source](https://github.com/uuid-rs/uuid/compare/1.10.0...1.11.0) #### What's Changed - Upgrade zerocopy to 0.8 by [@&#8203;yotamofek](https://github.com/yotamofek) in [#&#8203;771](https://github.com/uuid-rs/uuid/pull/771) - Prepare for 1.11.0 release by [@&#8203;KodrAus](https://github.com/KodrAus) in [#&#8203;772](https://github.com/uuid-rs/uuid/pull/772) #### New Contributors - [@&#8203;yotamofek](https://github.com/yotamofek) made their first contribution in [#&#8203;771](https://github.com/uuid-rs/uuid/pull/771) **Full Changelog**: <https://github.com/uuid-rs/uuid/compare/1.10.0...1.11.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. 🔕 **Ignore**: Close this PR and you won't be reminded about this update again. --- - [ ] <!-- 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:eyJjcmVhdGVkSW5WZXIiOiIzOC4xMjQuMSIsInVwZGF0ZWRJblZlciI6IjQyLjUyLjgiLCJ0YXJnZXRCcmFuY2giOiJtYXN0ZXIiLCJsYWJlbHMiOlsicmVub3ZhdGUtYm90Il19-->
renovate-bot force-pushed renovate/uuid-1.x-lockfile from a165a84a52
All checks were successful
ci/woodpecker/push/woodpecker Pipeline was successful
ci/woodpecker/pr/woodpecker Pipeline was successful
to af950522b9 2025-01-10 22:36:44 +05:30
Compare
renovate-bot changed title from fix(deps): update rust crate uuid to v1.11.0 to fix(deps): update rust crate uuid to v1.11.1 2025-01-10 22:36:45 +05:30
renovate-bot changed title from fix(deps): update rust crate uuid to v1.11.1 to fix(deps): update rust crate uuid to v1.12.0 2025-01-20 05:09:57 +05:30
renovate-bot force-pushed renovate/uuid-1.x-lockfile from af950522b9 to bb9ad4fc5f 2025-01-20 05:09:57 +05:30 Compare
renovate-bot force-pushed renovate/uuid-1.x-lockfile from bb9ad4fc5f to 20bdf468d5 2025-01-27 05:10:11 +05:30 Compare
renovate-bot changed title from fix(deps): update rust crate uuid to v1.12.0 to fix(deps): update rust crate uuid to v1.12.1 2025-01-27 05:10:12 +05:30
renovate-bot changed title from fix(deps): update rust crate uuid to v1.12.1 to fix(deps): update rust crate uuid to v1.13.1 2025-02-10 05:11:00 +05:30
renovate-bot force-pushed renovate/uuid-1.x-lockfile from 20bdf468d5 to 869d815e4a 2025-02-10 05:11:01 +05:30 Compare
renovate-bot changed title from fix(deps): update rust crate uuid to v1.13.1 to fix(deps): update rust crate uuid to v1.14.0 2025-02-24 05:10:01 +05:30
renovate-bot force-pushed renovate/uuid-1.x-lockfile from 869d815e4a to 09db29e5da 2025-02-24 05:10:01 +05:30 Compare
renovate-bot force-pushed renovate/uuid-1.x-lockfile from 09db29e5da to f1bb67b834
Some checks failed
renovate/artifacts Artifact file update failure
2025-03-17 05:08:43 +05:30
Compare
renovate-bot changed title from fix(deps): update rust crate uuid to v1.14.0 to fix(deps): update rust crate uuid to v1.16.0 2025-03-17 05:08:43 +05:30
renovate-bot changed title from fix(deps): update rust crate uuid to v1.16.0 to fix(deps): update rust crate uuid to v1.17.0 2025-05-26 05:18:01 +05:30
Author
Collaborator

⚠️ Artifact update problem

Renovate failed to update an artifact related to this branch. You probably do not want to merge this PR as-is.

♻ Renovate will retry this branch, including artifacts, only when one of the following happens:

  • any of the package files in this branch needs updating, or
  • the branch becomes conflicted, or
  • you click the rebase/retry checkbox if found above, or
  • you rename this PR's title to start with "rebase!" to trigger it manually

The artifact failure details are included below:

File name: Cargo.lock
Command failed: cargo update --config net.git-fetch-with-cli=true --manifest-path Cargo.toml --package uuid@1.10.0 --precise 1.23.0
    Updating crates.io index
error: failed to select a version for `js-sys`.
    ... required by package `uuid v1.23.0`
    ... which satisfies dependency `uuid = "^1"` of package `dumbserve v0.1.0 (/tmp/renovate-bot-cache/repos/gitea/realaravinth/dumbserve)`
versions that meet the requirements `^0.3` (locked to 0.3.69) are: 0.3.69

package `uuid` depends on `js-sys` with feature `std` but `js-sys` does not have that feature.


failed to select a version for `js-sys` which could resolve this conflict

### ⚠️ Artifact update problem Renovate failed to update an artifact related to this branch. You probably do not want to merge this PR as-is. ♻ Renovate will retry this branch, including artifacts, only when one of the following happens: - any of the package files in this branch needs updating, or - the branch becomes conflicted, or - you click the rebase/retry checkbox if found above, or - you rename this PR's title to start with "rebase!" to trigger it manually The artifact failure details are included below: ##### File name: Cargo.lock ``` Command failed: cargo update --config net.git-fetch-with-cli=true --manifest-path Cargo.toml --package uuid@1.10.0 --precise 1.23.0 Updating crates.io index error: failed to select a version for `js-sys`. ... required by package `uuid v1.23.0` ... which satisfies dependency `uuid = "^1"` of package `dumbserve v0.1.0 (/tmp/renovate-bot-cache/repos/gitea/realaravinth/dumbserve)` versions that meet the requirements `^0.3` (locked to 0.3.69) are: 0.3.69 package `uuid` depends on `js-sys` with feature `std` but `js-sys` does not have that feature. failed to select a version for `js-sys` which could resolve this conflict ```
renovate-bot changed title from fix(deps): update rust crate uuid to v1.17.0 to fix(deps): update rust crate uuid to v1.18.0 2025-08-18 05:36:59 +05:30
renovate-bot changed title from fix(deps): update rust crate uuid to v1.18.0 to fix(deps): update rust crate uuid to v1.18.1 2025-09-08 05:11:46 +05:30
renovate-bot changed title from fix(deps): update rust crate uuid to v1.18.1 to chore(deps): update rust crate uuid to v1.18.1 2025-09-15 05:11:41 +05:30
renovate-bot changed title from chore(deps): update rust crate uuid to v1.18.1 to chore(deps): update rust crate uuid to v1.19.0 2025-12-08 05:11:52 +05:30
renovate-bot changed title from chore(deps): update rust crate uuid to v1.19.0 to chore(deps): update rust crate uuid to v1.20.0 2026-01-26 05:07:01 +05:30
renovate-bot changed title from chore(deps): update rust crate uuid to v1.20.0 to chore(deps): update rust crate uuid to v1.21.0 2026-02-16 05:07:05 +05:30
renovate-bot changed title from chore(deps): update rust crate uuid to v1.21.0 to chore(deps): update rust crate uuid to v1.22.0 2026-03-09 05:07:11 +05:30
renovate-bot changed title from chore(deps): update rust crate uuid to v1.22.0 to chore(deps): update rust crate uuid to v1.23.0 2026-03-30 05:06:45 +05:30
Some checks failed
renovate/artifacts Artifact file update failure
This pull request can be merged automatically.
This branch is out-of-date with the base branch
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/uuid-1.x-lockfile:renovate/uuid-1.x-lockfile
git switch renovate/uuid-1.x-lockfile

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 master
git merge --no-ff renovate/uuid-1.x-lockfile
git switch renovate/uuid-1.x-lockfile
git rebase master
git switch master
git merge --ff-only renovate/uuid-1.x-lockfile
git switch renovate/uuid-1.x-lockfile
git rebase master
git switch master
git merge --no-ff renovate/uuid-1.x-lockfile
git switch master
git merge --squash renovate/uuid-1.x-lockfile
git switch master
git merge --ff-only renovate/uuid-1.x-lockfile
git switch master
git merge renovate/uuid-1.x-lockfile
git push origin master
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
realaravinth/dumbserve!64
No description provided.