Skip to content

Commit

Permalink
Merge branch 'main' into proposal-based-votable-state
Browse files Browse the repository at this point in the history
  • Loading branch information
mstrasinskis authored Oct 1, 2024
2 parents fd8c2b5 + b273a69 commit 8a6cf13
Show file tree
Hide file tree
Showing 38 changed files with 512 additions and 138 deletions.
24 changes: 23 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,21 @@
# Next
# 2024.09.30-1100Z

## Overview

The current status of the libraries at the time of the release is as follows:

| Library | Version | Status |
| ------------------------ | ------- | ------------------- |
| `@dfinity/ckbtc` | v3.1.0 | Enhanced 🔧️ |
| `@dfinity/cketh` | v3.3.1 | Maintained ⚙️ |
| `@dfinity/cmc` | v3.2.1 | Maintained ⚙️ |
| `@dfinity/ic-management` | v5.2.1 | Maintained ⚙️ |
| `@dfinity/ledger-icp` | v2.6.0 | Enhanced 🔧️ |
| `@dfinity/ledger-icrc` | v2.6.0 | Enhanced 🔧️ |
| `@dfinity/nns` | v7.0.0 | Breaking Changes ⚠️ |
| `@dfinity/nns-proto` | v2.0.1 | Unchanged️ |
| `@dfinity/sns` | v3.2.1 | Maintained ⚙️ |
| `@dfinity/utils` | v2.5.0 | Maintained ⚙️ |

## Breaking changes

Expand All @@ -8,6 +25,11 @@

- Add support for `icrc21_canister_call_consent_message` to `@dfinity/ledger-icp` and `@dfinity/ledger-icrc`.
- Add support for `"regtest"` in `BitcoinNetwork`.
- Expose `ledger-converters` utility modules in `@dfinity/ledger-icp` and `@dfinity/ledger-icrc`.

## Build

- Incorporate Agent-js patch `v2.1.2`.

# 2024.09.02-0830Z

Expand Down
138 changes: 69 additions & 69 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

4 changes: 2 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@dfinity/ic-js",
"version": "2024.09.02-0830Z",
"version": "2024.09.30-1100Z",
"description": "A collection of library for interfacing with the Internet Computer.",
"license": "Apache-2.0",
"workspaces": [
Expand Down Expand Up @@ -168,7 +168,7 @@
{
"name": "@dfinity/ic-management",
"path": "./packages/ic-management/dist/index.js",
"limit": "3 kB",
"limit": "4 kB",
"gzip": true,
"ignore": [
"@dfinity/agent",
Expand Down
2 changes: 1 addition & 1 deletion packages/ckbtc/candid/minter.did
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// Generated from IC repo commit 0441f40 (2024-09-18 tags: release-2024-09-19_01-31-base) 'rs/bitcoin/ckbtc/minter/ckbtc_minter.did' by import-candid
// Generated from IC repo commit c43a488 (2024-09-27 tags: release-2024-09-26_01-31-no-canister-snapshots) 'rs/bitcoin/ckbtc/minter/ckbtc_minter.did' by import-candid
// Represents an account on the ckBTC ledger.
type Account = record { owner : principal; subaccount : opt blob };

Expand Down
10 changes: 5 additions & 5 deletions packages/ckbtc/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@dfinity/ckbtc",
"version": "3.0.0",
"version": "3.1.0",
"description": "A library for interfacing with ckBTC.",
"license": "Apache-2.0",
"main": "dist/cjs/index.cjs.js",
Expand Down Expand Up @@ -38,10 +38,10 @@
],
"homepage": "https://github.com/dfinity/ic-js#readme",
"peerDependencies": {
"@dfinity/agent": "^2.1.1",
"@dfinity/candid": "^2.1.1",
"@dfinity/principal": "^2.1.1",
"@dfinity/utils": "^2.5.0"
"@dfinity/agent": "^2.1.2",
"@dfinity/candid": "^2.1.2",
"@dfinity/principal": "^2.1.2",
"@dfinity/utils": "^2.5.1"
},
"dependencies": {
"@noble/hashes": "^1.3.2",
Expand Down
2 changes: 1 addition & 1 deletion packages/cketh/candid/minter.did
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// Generated from IC repo commit 0441f40 (2024-09-18 tags: release-2024-09-19_01-31-base) 'rs/ethereum/cketh/minter/cketh_minter.did' by import-candid
// Generated from IC repo commit c43a488 (2024-09-27 tags: release-2024-09-26_01-31-no-canister-snapshots) 'rs/ethereum/cketh/minter/cketh_minter.did' by import-candid
type EthereumNetwork = variant {
// The public Ethereum mainnet.
Mainnet;
Expand Down
2 changes: 1 addition & 1 deletion packages/cketh/candid/orchestrator.did
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// Generated from IC repo commit 0441f40 (2024-09-18 tags: release-2024-09-19_01-31-base) 'rs/ethereum/ledger-suite-orchestrator/ledger_suite_orchestrator.did' by import-candid
// Generated from IC repo commit c43a488 (2024-09-27 tags: release-2024-09-26_01-31-no-canister-snapshots) 'rs/ethereum/ledger-suite-orchestrator/ledger_suite_orchestrator.did' by import-candid
type OrchestratorArg = variant {
UpgradeArg : UpgradeArg;
InitArg : InitArg;
Expand Down
10 changes: 5 additions & 5 deletions packages/cketh/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@dfinity/cketh",
"version": "3.3.0",
"version": "3.3.1",
"description": "A library for interfacing with ckETH.",
"license": "Apache-2.0",
"main": "dist/cjs/index.cjs.js",
Expand Down Expand Up @@ -38,9 +38,9 @@
],
"homepage": "https://github.com/dfinity/ic-js#readme",
"peerDependencies": {
"@dfinity/agent": "^2.1.1",
"@dfinity/candid": "^2.1.1",
"@dfinity/principal": "^2.1.1",
"@dfinity/utils": "^2.5.0"
"@dfinity/agent": "^2.1.2",
"@dfinity/candid": "^2.1.2",
"@dfinity/principal": "^2.1.2",
"@dfinity/utils": "^2.5.1"
}
}
1 change: 1 addition & 0 deletions packages/cmc/candid/cmc.certified.idl.js
Original file line number Diff line number Diff line change
Expand Up @@ -116,6 +116,7 @@ export const idlFactory = ({ IDL }) => {
[],
),
'get_build_metadata' : IDL.Func([], [IDL.Text], []),
'get_default_subnets' : IDL.Func([], [IDL.Vec(IDL.Principal)], []),
'get_icp_xdr_conversion_rate' : IDL.Func(
[],
[IcpXdrConversionRateResponse],
Expand Down
Loading

0 comments on commit 8a6cf13

Please sign in to comment.