diff --git a/rust/Cargo.lock b/rust/Cargo.lock index 06ba2e890..90da15305 100644 --- a/rust/Cargo.lock +++ b/rust/Cargo.lock @@ -483,9 +483,9 @@ checksum = "1505bd5d3d116872e7271a6d4e16d81d0c8570876c8de68093a09ac269d8aac0" [[package]] name = "atomicwrites" -version = "0.4.3" +version = "0.4.4" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "fc7b2dbe9169059af0f821e811180fddc971fc210c776c133c7819ccd6e478db" +checksum = "3ef1bb8d1b645fe38d51dfc331d720fb5fc2c94b440c76cc79c80ff265ca33e3" dependencies = [ "rustix", "tempfile", diff --git a/rust/Cargo.toml b/rust/Cargo.toml index ab1046efc..78de3e322 100644 --- a/rust/Cargo.toml +++ b/rust/Cargo.toml @@ -25,6 +25,7 @@ members = [ resolver = "2" [workspace.dependencies] +atomicwrites = "0.4.4" boringtun = { version = "0.6", default-features = false } chrono = { version = "0.4", default-features = false, features = ["std", "clock", "oldtime", "serde"] } swift-bridge = "0.1.57" diff --git a/rust/gui-client/src-common/Cargo.toml b/rust/gui-client/src-common/Cargo.toml index 3c0045b54..cebcc549d 100644 --- a/rust/gui-client/src-common/Cargo.toml +++ b/rust/gui-client/src-common/Cargo.toml @@ -7,7 +7,7 @@ edition = "2021" [dependencies] anyhow = { version = "1.0" } arboard = { version = "3.4.0", default-features = false } -atomicwrites = "0.4.3" +atomicwrites = { workspace = true } connlib-shared = { workspace = true } crash-handler = "0.6.2" firezone-bin-shared = { workspace = true } diff --git a/rust/gui-client/src-tauri/Cargo.toml b/rust/gui-client/src-tauri/Cargo.toml index ea43e79f5..4298e6021 100644 --- a/rust/gui-client/src-tauri/Cargo.toml +++ b/rust/gui-client/src-tauri/Cargo.toml @@ -13,7 +13,7 @@ tauri-build = { version = "1.5", features = [] } [dependencies] anyhow = { version = "1.0" } -atomicwrites = "0.4.3" +atomicwrites = { workspace = true } chrono = { workspace = true } clap = { version = "4.5", features = ["derive", "env"] } connlib-client-shared = { workspace = true } diff --git a/rust/headless-client/Cargo.toml b/rust/headless-client/Cargo.toml index 25c056ed9..65c490eec 100644 --- a/rust/headless-client/Cargo.toml +++ b/rust/headless-client/Cargo.toml @@ -8,7 +8,7 @@ authors = ["Firezone, Inc."] [dependencies] anyhow = { version = "1.0" } -atomicwrites = "0.4.3" # Needed to safely backup `/etc/resolv.conf` and write the device ID on behalf of `gui-client` +atomicwrites = { workspace = true } # Needed to safely backup `/etc/resolv.conf` and write the device ID on behalf of `gui-client` backoff = "0.4.0" clap = { version = "4.5", features = ["derive", "env", "string"] } connlib-client-shared = { workspace = true } diff --git a/website/src/components/Changelog/GUI.tsx b/website/src/components/Changelog/GUI.tsx index 60f7b8419..972cfcf04 100644 --- a/website/src/components/Changelog/GUI.tsx +++ b/website/src/components/Changelog/GUI.tsx @@ -12,7 +12,16 @@ export default function GUI({ title }: { title: string }) { return ( - {/* When you cut a release, remove any solved issues from the "known issues" lists over in `client-apps`. This cannot be done when the issue's PR merges. */} + {/* When you cut a release, remove any solved issues from the "known issues" lists over in `client-apps`. This must not be done when the issue's PR merges. */} + {/* + + +