Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1,021 changes: 490 additions & 531 deletions Cargo.lock

Large diffs are not rendered by default.

12 changes: 6 additions & 6 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -31,19 +31,19 @@ reqwest = { version = "^0.11.22", default-features = false, features = [
"native-tls-vendored",
] }
serde = { version = "=1.0.217", features = ["derive"] }
serde_json = { version = "1.0.121" }
sha2 = "^0.10.9"
slog = "^2.7.0"
tempfile = "3.12.0"
tokio = { version = "^1.36.0", features = ["rt-multi-thread"] }
url = "^2.4.1"
serde_json = { version = "=1.0.107" }

# It is strongly recommended that NNS_SNS_REPLICA_REV be set to the same rev value used below.
ic-http-utils = { git = "https://github.com/dfinity/ic", rev = "03b997c92cac6680c975ffe8eb80874768363d24" }
ic-icp-index = { git = "https://github.com/dfinity/ic", rev = "03b997c92cac6680c975ffe8eb80874768363d24" }
ic-icrc1-index-ng = { git = "https://github.com/dfinity/ic", rev = "03b997c92cac6680c975ffe8eb80874768363d24" }
ic-icrc1-ledger = { git = "https://github.com/dfinity/ic", rev = "03b997c92cac6680c975ffe8eb80874768363d24" }
ic-sns-cli = { git = "https://github.com/dfinity/ic", rev = "03b997c92cac6680c975ffe8eb80874768363d24" }
ic-http-utils = { git = "https://github.com/dfinity/ic", rev = "1bc0a59539613f6ec273a59a172ae43dfabb1ce0" }
ic-icp-index = { git = "https://github.com/dfinity/ic", rev = "1bc0a59539613f6ec273a59a172ae43dfabb1ce0" }
ic-icrc1-index-ng = { git = "https://github.com/dfinity/ic", rev = "1bc0a59539613f6ec273a59a172ae43dfabb1ce0" }
ic-icrc1-ledger = { git = "https://github.com/dfinity/ic", rev = "1bc0a59539613f6ec273a59a172ae43dfabb1ce0" }
ic-sns-cli = { git = "https://github.com/dfinity/ic", rev = "1bc0a59539613f6ec273a59a172ae43dfabb1ce0" }


# The profile that 'cargo dist' will build with
Expand Down
2 changes: 1 addition & 1 deletion extensions-utils/src/dependencies/dfx.rs
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ use std::process::Command;

/// The replica revision of the NNS/SNS canisters which might have dependencies among each other.
/// It is highly recommended that this be kept in sync with the commit mentioned in the root Cargo.toml file.
pub const NNS_SNS_REPLICA_REV: &str = "03b997c92cac6680c975ffe8eb80874768363d24";
pub const NNS_SNS_REPLICA_REV: &str = "1bc0a59539613f6ec273a59a172ae43dfabb1ce0";

/// Calls a binary from dfx cache.
///
Expand Down
4 changes: 4 additions & 0 deletions extensions/nns/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,9 @@

## [Unreleased] - ReleaseDate

## [0.7.0] - 2025-11-07
- Use newer code from `ic` repository, namely commit 1bc0a59539613f6ec273a59a172ae43dfabb1ce0 (Oct 31, 2025 2:33 PM GMT+1).

## [0.6.0] - 2025-10-02
- Bump the IC commit.

Expand Down Expand Up @@ -72,6 +75,7 @@

<!-- next-url -->
[Unreleased]: https://github.com/dfinity/dfx-extensions/compare/{{tag_name}}...HEAD
[0.7.0]: https://github.com/dfinity/dfx-extensions/compare/{{tag_name}}...{{tag_name}}
[0.6.0]: https://github.com/dfinity/dfx-extensions/compare/{{tag_name}}...{{tag_name}}
[0.5.4]: https://github.com/dfinity/dfx-extensions/compare/{{tag_name}}...{{tag_name}}
[0.5.3]: https://github.com/dfinity/dfx-extensions/compare/{{tag_name}}...{{tag_name}}
Expand Down
2 changes: 1 addition & 1 deletion extensions/nns/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "nns"
version = "0.6.0"
version = "0.7.0"
authors.workspace = true
edition.workspace = true
license.workspace = true
Expand Down
5 changes: 5 additions & 0 deletions extensions/nns/dependencies.json
Original file line number Diff line number Diff line change
@@ -1,4 +1,9 @@
{
"0.7.0": {
"dfx": {
"version": ">=0.29.0"
}
},
"0.6.0": {
"dfx": {
"version": ">=0.29.0"
Expand Down
2 changes: 1 addition & 1 deletion extensions/nns/extension.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "nns",
"version": "0.6.0",
"version": "0.7.0",
"homepage": "https://github.com/dfinity/dfx-extensions",
"authors": "DFINITY",
"summary": "Toolkit for interacting with the Network Nervous System.",
Expand Down
4 changes: 4 additions & 0 deletions extensions/sns/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,9 @@

## [Unreleased] - ReleaseDate

## [0.7.0] - 2025-11-07
- Use newer code from `ic` repository, namely commit 1bc0a59539613f6ec273a59a172ae43dfabb1ce0 (Oct 31, 2025 2:33 PM GMT+1).

## [0.6.0] - 2025-09-22
- Added `ProposeToRegisterExtension` command.

Expand Down Expand Up @@ -85,6 +88,7 @@

<!-- next-url -->
[Unreleased]: https://github.com/dfinity/dfx-extensions/compare/{{tag_name}}...HEAD
[0.7.0]: https://github.com/dfinity/dfx-extensions/compare/{{tag_name}}...{{tag_name}}
[0.6.0]: https://github.com/dfinity/dfx-extensions/compare/{{tag_name}}...{{tag_name}}
[0.5.4]: https://github.com/dfinity/dfx-extensions/compare/{{tag_name}}...{{tag_name}}
[0.5.3]: https://github.com/dfinity/dfx-extensions/compare/{{tag_name}}...{{tag_name}}
Expand Down
2 changes: 1 addition & 1 deletion extensions/sns/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "sns"
version = "0.6.0"
version = "0.7.0"
authors.workspace = true
edition.workspace = true
license.workspace = true
Expand Down
5 changes: 5 additions & 0 deletions extensions/sns/dependencies.json
Original file line number Diff line number Diff line change
@@ -1,4 +1,9 @@
{
"0.7.0": {
"dfx": {
"version": ">=0.29.0"
}
},
"0.6.0": {
"dfx": {
"version": ">=0.29.0"
Expand Down
2 changes: 1 addition & 1 deletion extensions/sns/extension.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "sns",
"version": "0.6.0",
"version": "0.7.0",
"homepage": "https://github.com/dfinity/dfx-extensions",
"authors": "DFINITY",
"summary": "Initialize, deploy and interact with an SNS",
Expand Down