Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

fix(deps): update rust crate uuid to v1.13.2 #265

Open
wants to merge 1 commit into
base: master
Choose a base branch
from

Conversation

renovate[bot]
Copy link
Contributor

@renovate renovate bot commented Jun 24, 2024

This PR contains the following updates:

Package Type Update Change
uuid dependencies minor 1.8.0 -> 1.13.2

Release Notes

uuid-rs/uuid (uuid)

v1.13.2

Compare Source

What's Changed

Full Changelog: uuid-rs/uuid@1.13.1...v1.13.2

v1.13.1

Compare Source

What's Changed
New Contributors

Full Changelog: uuid-rs/uuid@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: uuid-rs/uuid@1.12.1...1.13.0

v1.12.1

Compare Source

What's Changed
New Contributors

Full Changelog: uuid-rs/uuid@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: uuid-rs/uuid@1.11.1...1.12.0

v1.11.1

Compare Source

What's Changed
New Contributors

Full Changelog: uuid-rs/uuid@1.11.0...1.11.1

v1.11.0

Compare Source

What's Changed
New Contributors

Full Changelog: uuid-rs/uuid@1.10.0...1.11.0

v1.10.0

Compare Source

Deprecations

This release deprecates and renames the following functions:

  • Builder::from_rfc4122_timestamp -> Builder::from_gregorian_timestamp
  • Builder::from_sorted_rfc4122_timestamp -> Builder::from_sorted_gregorian_timestamp
  • Timestamp::from_rfc4122 -> Timestamp::from_gregorian
  • Timestamp::to_rfc4122 -> Timestamp::to_gregorian
What's Changed
New Contributors

Full Changelog: uuid-rs/uuid@1.9.1...1.10.0

v1.9.1

Compare Source

What's Changed

Full Changelog: uuid-rs/uuid@1.9.0...1.9.1

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: uuid-rs/uuid@1.8.0...1.9.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 was generated by Mend Renovate. View the repository job log.

@renovate renovate bot force-pushed the renovate/uuid-1.x-lockfile branch from ab014ac to 1d93ee9 Compare June 25, 2024 02:14
@renovate renovate bot changed the title fix(deps): update rust crate uuid to v1.9.0 fix(deps): update rust crate uuid to v1.9.1 Jun 25, 2024
@renovate renovate bot force-pushed the renovate/uuid-1.x-lockfile branch from 1d93ee9 to f525b9f Compare July 9, 2024 20:25
@renovate renovate bot changed the title fix(deps): update rust crate uuid to v1.9.1 fix(deps): update rust crate uuid to v1.10.0 Jul 9, 2024
@renovate renovate bot force-pushed the renovate/uuid-1.x-lockfile branch from f525b9f to 525ebd8 Compare October 16, 2024 07:58
@renovate renovate bot changed the title fix(deps): update rust crate uuid to v1.10.0 fix(deps): update rust crate uuid to v1.11.0 Oct 16, 2024
@renovate renovate bot changed the title fix(deps): update rust crate uuid to v1.11.0 fix(deps): update rust crate uuid to v1.11.1 Jan 10, 2025
@renovate renovate bot force-pushed the renovate/uuid-1.x-lockfile branch from 525ebd8 to d6be4b8 Compare January 10, 2025 06:49
@renovate renovate bot changed the title fix(deps): update rust crate uuid to v1.11.1 fix(deps): update rust crate uuid to v1.12.0 Jan 14, 2025
@renovate renovate bot force-pushed the renovate/uuid-1.x-lockfile branch from d6be4b8 to 213f6a4 Compare January 14, 2025 16:31
@renovate renovate bot changed the title fix(deps): update rust crate uuid to v1.12.0 fix(deps): update rust crate uuid to v1.12.1 Jan 21, 2025
@renovate renovate bot force-pushed the renovate/uuid-1.x-lockfile branch from 213f6a4 to 2be4338 Compare January 21, 2025 09:56
@renovate renovate bot force-pushed the renovate/uuid-1.x-lockfile branch from 2be4338 to 9b7ab39 Compare February 5, 2025 04:45
@renovate renovate bot changed the title fix(deps): update rust crate uuid to v1.12.1 fix(deps): update rust crate uuid to v1.13.0 Feb 5, 2025
@renovate renovate bot force-pushed the renovate/uuid-1.x-lockfile branch from 9b7ab39 to 62c07d2 Compare February 5, 2025 09:28
@renovate renovate bot changed the title fix(deps): update rust crate uuid to v1.13.0 fix(deps): update rust crate uuid to v1.13.1 Feb 5, 2025
@renovate renovate bot force-pushed the renovate/uuid-1.x-lockfile branch from 62c07d2 to 5b0a873 Compare February 18, 2025 02:04
@renovate renovate bot changed the title fix(deps): update rust crate uuid to v1.13.1 fix(deps): update rust crate uuid to v1.13.2 Feb 18, 2025
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

0 participants