Skip to content

fix(deps): update rust crate uuid to v1.9.0

Panter User for API access requested to merge renovate/uuid-1.x-lockfile into main

This MR contains the following updates:

Package Type Update Change
uuid dependencies minor 1.8.0 -> 1.9.0

Release Notes

uuid-rs/uuid (uuid)

v1.9.0

Compare Source

Uuid::now_v7() is guaranteed to be monotonic

Before this release, Uuid::now_v7() would only use the millisecond-precision timestamp for ordering. It now also uses a global 42-bit counter that's re-initialized each millisecond so that the following will always pass:

let a = Uuid::now_v7();
let b = Uuid::now_v7();

assert!(a < b);
What's Changed
New Contributors

Full Changelog: https://github.com/uuid-rs/uuid/compare/1.8.0...1.9.0


Configuration

📅 Schedule: Branch creation - At any time (no schedule defined), Automerge - At any time (no schedule defined).

🚦 Automerge: Enabled.

Rebasing: Whenever MR becomes conflicted, or you tick the rebase/retry checkbox.

🔕 Ignore: Close this MR and you won't be reminded about these updates again.


  • If you want to rebase/retry this MR, check this box

This MR has been generated by Renovate Bot.

Merge request reports