From 6d093445212cbd7b4a38cfb273517bf01880ea2a Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Wed, 24 Jul 2024 12:45:18 +1000 Subject: [PATCH] build(deps): Bump uuid from 1.8.0 to 1.10.0 in /rust (#6005) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Bumps [uuid](https://github.com/uuid-rs/uuid) from 1.8.0 to 1.10.0.
Release notes

Sourced from uuid's releases.

1.10.0

Deprecations

This release deprecates and renames the following functions:

What's Changed

New Contributors

Full Changelog: https://github.com/uuid-rs/uuid/compare/1.9.1...1.10.0

1.9.1

What's Changed

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

1.9.0

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

... (truncated)

Commits

[![Dependabot compatibility score](https://dependabot-badges.githubapp.com/badges/compatibility_score?dependency-name=uuid&package-manager=cargo&previous-version=1.8.0&new-version=1.10.0)](https://docs.github.com/en/github/managing-security-vulnerabilities/about-dependabot-security-updates#about-compatibility-scores) Dependabot will resolve any conflicts with this PR as long as you don't alter it yourself. You can also trigger a rebase manually by commenting `@dependabot rebase`. [//]: # (dependabot-automerge-start) [//]: # (dependabot-automerge-end) ---
Dependabot commands and options
You can trigger Dependabot actions by commenting on this PR: - `@dependabot rebase` will rebase this PR - `@dependabot recreate` will recreate this PR, overwriting any edits that have been made to it - `@dependabot merge` will merge this PR after your CI passes on it - `@dependabot squash and merge` will squash and merge this PR after your CI passes on it - `@dependabot cancel merge` will cancel a previously requested merge and block automerging - `@dependabot reopen` will reopen this PR if it is closed - `@dependabot close` will close this PR and stop Dependabot recreating it. You can achieve the same result by closing it manually - `@dependabot show ignore conditions` will show all of the ignore conditions of the specified dependency - `@dependabot ignore this major version` will close this PR and stop Dependabot creating any more for this major version (unless you reopen the PR or upgrade to it yourself) - `@dependabot ignore this minor version` will close this PR and stop Dependabot creating any more for this minor version (unless you reopen the PR or upgrade to it yourself) - `@dependabot ignore this dependency` will close this PR and stop Dependabot creating any more for this dependency (unless you reopen the PR or upgrade to it yourself)
Signed-off-by: dependabot[bot] Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> --- rust/Cargo.lock | 4 ++-- rust/bin-shared/Cargo.toml | 2 +- rust/connlib/shared/Cargo.toml | 2 +- rust/gateway/Cargo.toml | 2 +- rust/gui-client/src-tauri/Cargo.toml | 2 +- rust/headless-client/Cargo.toml | 2 +- rust/phoenix-channel/Cargo.toml | 2 +- rust/relay/Cargo.toml | 2 +- 8 files changed, 9 insertions(+), 9 deletions(-) diff --git a/rust/Cargo.lock b/rust/Cargo.lock index ac7a33d14..e52a2a331 100644 --- a/rust/Cargo.lock +++ b/rust/Cargo.lock @@ -6967,9 +6967,9 @@ checksum = "711b9620af191e0cdc7468a8d14e709c3dcdb115b36f838e601583af800a370a" [[package]] name = "uuid" -version = "1.8.0" +version = "1.10.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "a183cf7feeba97b4dd1c0d46788634f6221d87fa961b305bed08c851829efcc0" +checksum = "81dfa00651efa65069b0b6b651f4aaa31ba9e3c3ce0137aaad053604ee7e0314" dependencies = [ "getrandom 0.2.12", "serde", diff --git a/rust/bin-shared/Cargo.toml b/rust/bin-shared/Cargo.toml index 604dccf6c..052ec8562 100644 --- a/rust/bin-shared/Cargo.toml +++ b/rust/bin-shared/Cargo.toml @@ -30,7 +30,7 @@ libc = "0.2" [target.'cfg(target_os = "windows")'.dependencies] wintun = "0.4.0" -uuid = { version = "1.7.0", features = ["v4"] } +uuid = { version = "1.10.0", features = ["v4"] } [target.'cfg(windows)'.dependencies.windows] version = "0.57.0" diff --git a/rust/connlib/shared/Cargo.toml b/rust/connlib/shared/Cargo.toml index 805309f87..58eaff35e 100644 --- a/rust/connlib/shared/Cargo.toml +++ b/rust/connlib/shared/Cargo.toml @@ -33,7 +33,7 @@ thiserror = { version = "1.0", default-features = false } tokio = { workspace = true, features = ["fs"] } tracing = { workspace = true } url = { version = "2.4.1", default-features = false } -uuid = { version = "1.7", default-features = false, features = ["std", "v4", "serde"] } +uuid = { version = "1.10", default-features = false, features = ["std", "v4", "serde"] } [dev-dependencies] tokio = { version = "1.38", features = ["macros", "rt"] } diff --git a/rust/gateway/Cargo.toml b/rust/gateway/Cargo.toml index 91cd43cdf..0c4744e16 100644 --- a/rust/gateway/Cargo.toml +++ b/rust/gateway/Cargo.toml @@ -34,7 +34,7 @@ tokio-tungstenite = { version = "0.21", default-features = false, features = ["c tracing = { workspace = true } tracing-subscriber = "0.3.17" url = { version = "2.4.1", default-features = false } -uuid = { version = "1.7.0", features = ["v4"] } +uuid = { version = "1.10.0", features = ["v4"] } [dev-dependencies] serde_json = { version = "1.0", default-features = false, features = ["std"] } diff --git a/rust/gui-client/src-tauri/Cargo.toml b/rust/gui-client/src-tauri/Cargo.toml index 142605d29..3176cd4e1 100644 --- a/rust/gui-client/src-tauri/Cargo.toml +++ b/rust/gui-client/src-tauri/Cargo.toml @@ -47,7 +47,7 @@ tracing-log = "0.2" tracing-panic = "0.1.2" tracing-subscriber = { version = "0.3.17", features = ["env-filter"] } url = { version = "2.5.0", features = ["serde"] } -uuid = { version = "1.7.0", features = ["v4"] } +uuid = { version = "1.10.0", features = ["v4"] } zip = { version = "2", features = ["deflate", "time"], default-features = false } [dependencies.keyring] diff --git a/rust/headless-client/Cargo.toml b/rust/headless-client/Cargo.toml index 6c01ee541..7f670d845 100644 --- a/rust/headless-client/Cargo.toml +++ b/rust/headless-client/Cargo.toml @@ -32,7 +32,7 @@ tokio-util = { version = "0.7.11", features = ["codec"] } tracing = { workspace = true } tracing-subscriber = { version = "0.3.17", features = ["env-filter"] } url = { version = "2.3.1", default-features = false } -uuid = { version = "1.7", default-features = false, features = ["std", "v4", "serde"] } +uuid = { version = "1.10", default-features = false, features = ["std", "v4", "serde"] } [dev-dependencies] tempfile = "3.10.1" diff --git a/rust/phoenix-channel/Cargo.toml b/rust/phoenix-channel/Cargo.toml index 27ef708b1..c05898dd1 100644 --- a/rust/phoenix-channel/Cargo.toml +++ b/rust/phoenix-channel/Cargo.toml @@ -21,7 +21,7 @@ tokio = { workspace = true, features = ["net", "time"] } tokio-tungstenite = { workspace = true, features = ["rustls-tls-webpki-roots"] } tracing = { workspace = true } url = "2.4.1" -uuid = { version = "1.7", default-features = false, features = ["std", "v4"] } +uuid = { version = "1.10", default-features = false, features = ["std", "v4"] } [target.'cfg(target_os = "windows")'.dependencies] hostname = "0.4.0" diff --git a/rust/relay/Cargo.toml b/rust/relay/Cargo.toml index 2b6be6b3e..be748da00 100644 --- a/rust/relay/Cargo.toml +++ b/rust/relay/Cargo.toml @@ -37,7 +37,7 @@ tracing-stackdriver = { version = "0.10.0", features = ["opentelemetry"] } tracing-subscriber = { workspace = true, features = ["env-filter", "json", "fmt"] } trackable = "1.3.0" url = "2.4.1" -uuid = { version = "1.7.0", features = ["v4"] } +uuid = { version = "1.10.0", features = ["v4"] } [dev-dependencies] difference = "2.0.0"