From fafc0dec572b5d46619380bcc2dac578cb69720d Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Fri, 8 May 2026 12:20:30 +0000 Subject: [PATCH 1/3] chore(deps): bump rpassword from 6.0.1 to 7.5.0 Bumps [rpassword](https://github.com/conradkleinespel/rpassword) from 6.0.1 to 7.5.0. - [Release notes](https://github.com/conradkleinespel/rpassword/releases) - [Upgrade guide](https://github.com/conradkleinespel/rpassword/blob/main/UPGRADE.md) - [Commits](https://github.com/conradkleinespel/rpassword/compare/v6.0.1...v7.5.0) --- updated-dependencies: - dependency-name: rpassword dependency-version: 7.5.0 dependency-type: direct:production ... Signed-off-by: dependabot[bot] --- Cargo.lock | 23 ++++++++++++++++------- Cargo.toml | 2 +- 2 files changed, 17 insertions(+), 8 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index 5e88598..cd5e539 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -1581,7 +1581,7 @@ dependencies = [ "libc", "option-ext", "redox_users 0.5.2", - "windows-sys 0.59.0", + "windows-sys 0.61.2", ] [[package]] @@ -5639,7 +5639,7 @@ version = "0.13.5" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "be769465445e8c1474e9c5dac2018218498557af32d9ed057325ec9a41ae81bf" dependencies = [ - "heck 0.4.1", + "heck 0.5.0", "itertools 0.14.0", "log", "multimap", @@ -6207,14 +6207,13 @@ checksum = "3582f63211428f83597b51b2ddb88e2a91a9d52d12831f9d08f5e624e8977422" [[package]] name = "rpassword" -version = "6.0.1" +version = "7.5.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "2bf099a1888612545b683d2661a1940089f6c2e5a8e38979b2159da876bfd956" +checksum = "f3bc4a3dd492cd6974dd3f32d6626ba9f36e5122e3df3b083474b104aebd139b" dependencies = [ "libc", - "serde", - "serde_json", - "winapi", + "rtoolbox", + "windows-sys 0.61.2", ] [[package]] @@ -6237,6 +6236,16 @@ dependencies = [ "zeroize", ] +[[package]] +name = "rtoolbox" +version = "0.0.5" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "50a0e551c1e27e1731aba276dbeaeac73f53c7cd34d1bda485d02bd1e0f36844" +dependencies = [ + "libc", + "windows-sys 0.59.0", +] + [[package]] name = "rust_decimal" version = "1.40.0" diff --git a/Cargo.toml b/Cargo.toml index 9c83a7d..66a7bce 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -57,7 +57,7 @@ pkcs8 = { version = "0.10.0", features = ["encryption"] } qrcodegen = "1.8" rand = { version = "0.8.4", features = ["getrandom"] } ring = "0.17.7" -rpassword = "6.0.0" +rpassword = "7.5.0" scopeguard = "1" sec1 = { version = "0.7.0", features = ["std"] } serde = { version = "1.0.130", features = ["derive"] } From 3af2764feab07b80d2340e2b876de7d6fb27c02c Mon Sep 17 00:00:00 2001 From: Linwei Shang Date: Mon, 11 May 2026 10:41:01 -0400 Subject: [PATCH 2/3] fix(ci): bump e2e runner from ubuntu-22.04 to ubuntu-24.04 dfx 0.32.0 requires GLIBC_2.38/2.39, which ubuntu-22.04 does not provide. Co-Authored-By: Claude Sonnet 4.6 --- .github/workflows/e2e.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/e2e.yml b/.github/workflows/e2e.yml index 74dfa72..d1e5134 100644 --- a/.github/workflows/e2e.yml +++ b/.github/workflows/e2e.yml @@ -14,7 +14,7 @@ jobs: fail-fast: false matrix: # windows not supported by dfx - os: [ubuntu-22.04, macos-15] + os: [ubuntu-24.04, macos-15] steps: - uses: actions/checkout@34e114876b0b11c390a56381ad16ebd13914f8d5 # v4.3.1 From 3a2734b8b0b9ef57735d314dc08602dc6560921b Mon Sep 17 00:00:00 2001 From: Linwei Shang Date: Mon, 11 May 2026 10:45:16 -0400 Subject: [PATCH 3/3] chore: bump rpassword to 7.5.2 --- Cargo.lock | 4 ++-- Cargo.toml | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index cd5e539..b070806 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -6207,9 +6207,9 @@ checksum = "3582f63211428f83597b51b2ddb88e2a91a9d52d12831f9d08f5e624e8977422" [[package]] name = "rpassword" -version = "7.5.0" +version = "7.5.2" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "f3bc4a3dd492cd6974dd3f32d6626ba9f36e5122e3df3b083474b104aebd139b" +checksum = "5ac5b223d9738ef56e0b98305410be40fa0941bf6036c56f1506751e43552d64" dependencies = [ "libc", "rtoolbox", diff --git a/Cargo.toml b/Cargo.toml index 66a7bce..36f0647 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -57,7 +57,7 @@ pkcs8 = { version = "0.10.0", features = ["encryption"] } qrcodegen = "1.8" rand = { version = "0.8.4", features = ["getrandom"] } ring = "0.17.7" -rpassword = "7.5.0" +rpassword = "7.5.2" scopeguard = "1" sec1 = { version = "0.7.0", features = ["std"] } serde = { version = "1.0.130", features = ["derive"] }