diff --git a/.release.json b/.release.json index 8e79c5e99..6d56015bc 100644 --- a/.release.json +++ b/.release.json @@ -86,7 +86,7 @@ "station": { "currentVersion": "0.1.0", "dependentProjects": [], - "newVersion": null + "newVersion": "0.2.0" }, "upgrader-api": { "currentVersion": "0.1.0", @@ -140,27 +140,51 @@ "dependencyCollection": "dependencies" } ], - "newVersion": null + "newVersion": "0.2.0" }, "dfx-orbit": { "currentVersion": "0.8.0", "dependentProjects": [], - "newVersion": null + "newVersion": "0.9.0" }, "wallet-dapp": { - "currentVersion": "0.1.0", - "newVersion": "0.1.1", + "currentVersion": "0.1.1", + "newVersion": "0.2.0", "dependentProjects": [] } }, "changes": { + "station": { + "releaseVersion": { + "rawVersion": "0.2.0", + "gitTag": "@orbit/station-v0.2.0", + "isPrerelease": false + }, + "contents": "## 0.2.0 (2024-12-03)\n\n\n### 🚀 Features\n\n- **station:** external canister snapshots ([#429](https://github.com/dfinity/orbit/pull/429))\n\n- **station:** monitor external canisters ([#416](https://github.com/dfinity/orbit/pull/416))\n\n\n### 🩹 Fixes\n\n- **wallet:** fix request export order ([#449](https://github.com/dfinity/orbit/pull/449))\n\n\n### 🧱 Updated Dependencies\n\n- Updated station-api to 0.2.0\n\n\n### ❤️ Thank You\n\n- Jan Hrubes @jedna\n- mraszyk @mraszyk\n- olaszakos" + }, + "station-api": { + "releaseVersion": { + "rawVersion": "0.2.0", + "gitTag": "@orbit/station-api-v0.2.0", + "isPrerelease": false + }, + "contents": "## 0.2.0 (2024-12-03)\n\n\n### 🚀 Features\n\n- **station:** external canister snapshots ([#429](https://github.com/dfinity/orbit/pull/429))\n\n- **station:** monitor external canisters ([#416](https://github.com/dfinity/orbit/pull/416))\n\n\n### 🩹 Fixes\n\n- **wallet:** fix request export order ([#449](https://github.com/dfinity/orbit/pull/449))\n\n\n### ❤️ Thank You\n\n- Jan Hrubes @jedna\n- mraszyk @mraszyk\n- olaszakos" + }, "wallet-dapp": { "releaseVersion": { - "rawVersion": "0.1.1", - "gitTag": "@orbit/wallet-dapp-v0.1.1", + "rawVersion": "0.2.0", + "gitTag": "@orbit/wallet-dapp-v0.2.0", + "isPrerelease": false + }, + "contents": "## 0.2.0 (2024-12-03)\n\n\n### 🚀 Features\n\n- **wallet:** show upgrader ID on station info card ([#446](https://github.com/dfinity/orbit/pull/446))\n\n- **station:** external canister snapshots ([#429](https://github.com/dfinity/orbit/pull/429))\n\n- **station:** monitor external canisters ([#416](https://github.com/dfinity/orbit/pull/416))\n\n- **wallet:** search for address on address book page ([#450](https://github.com/dfinity/orbit/pull/450))\n\n\n### 🩹 Fixes\n\n- **wallet:** fix request export order ([#449](https://github.com/dfinity/orbit/pull/449))\n\n\n### ❤️ Thank You\n\n- Jan Hrubes @jedna\n- mraszyk @mraszyk\n- olaszakos" + }, + "dfx-orbit": { + "releaseVersion": { + "rawVersion": "0.9.0", + "gitTag": "@orbit/dfx-orbit-v0.9.0", "isPrerelease": false }, - "contents": "## 0.1.1 (2024-11-28)\n\n\n### 🩹 Fixes\n\n- **wallet:** add new opt candid metadata field ([#447](https://github.com/dfinity/orbit/pull/447))\n\n\n### ❤️ Thank You\n\n- Kepler Vital" + "contents": "## 0.9.0 (2024-12-03)\n\n\n### 🚀 Features\n\n- **station:** external canister snapshots ([#429](https://github.com/dfinity/orbit/pull/429))\n\n- **station:** monitor external canisters ([#416](https://github.com/dfinity/orbit/pull/416))\n\n\n### 🩹 Fixes\n\n- **wallet:** fix request export order ([#449](https://github.com/dfinity/orbit/pull/449))\n\n\n### 🧱 Updated Dependencies\n\n- Updated station-api to 0.2.0\n\n\n### ❤️ Thank You\n\n- Jan Hrubes @jedna\n- mraszyk @mraszyk\n- olaszakos" } } } \ No newline at end of file diff --git a/Cargo.lock b/Cargo.lock index 43d846ca0..b40243cb9 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -1190,7 +1190,7 @@ dependencies = [ [[package]] name = "dfx-orbit" -version = "0.8.0" +version = "0.9.0" dependencies = [ "anyhow", "candid", @@ -4683,7 +4683,7 @@ checksum = "a2eb9349b6444b326872e140eb1cf5e7c522154d69e7a0ffb0fb81c06b37543f" [[package]] name = "station" -version = "0.1.0" +version = "0.2.0" dependencies = [ "anyhow", "async-trait", @@ -4718,7 +4718,7 @@ dependencies = [ [[package]] name = "station-api" -version = "0.1.0" +version = "0.2.0" dependencies = [ "candid", "hex", diff --git a/apps/wallet/CHANGELOG.md b/apps/wallet/CHANGELOG.md index ea456474b..1f9defd4a 100644 --- a/apps/wallet/CHANGELOG.md +++ b/apps/wallet/CHANGELOG.md @@ -1,3 +1,28 @@ +## 0.2.0 (2024-12-03) + + +### 🚀 Features + +- **wallet:** show upgrader ID on station info card ([#446](https://github.com/dfinity/orbit/pull/446)) + +- **station:** external canister snapshots ([#429](https://github.com/dfinity/orbit/pull/429)) + +- **station:** monitor external canisters ([#416](https://github.com/dfinity/orbit/pull/416)) + +- **wallet:** search for address on address book page ([#450](https://github.com/dfinity/orbit/pull/450)) + + +### 🩹 Fixes + +- **wallet:** fix request export order ([#449](https://github.com/dfinity/orbit/pull/449)) + + +### ❤️ Thank You + +- Jan Hrubes @jedna +- mraszyk @mraszyk +- olaszakos + ## 0.1.1 (2024-11-28) diff --git a/apps/wallet/package.json b/apps/wallet/package.json index abfe4304b..6b884b080 100644 --- a/apps/wallet/package.json +++ b/apps/wallet/package.json @@ -1,7 +1,7 @@ { "name": "wallet-dapp", "private": true, - "version": "0.1.1", + "version": "0.2.0", "type": "module", "repository": { "type": "git", diff --git a/apps/wallet/public/compat.json b/apps/wallet/public/compat.json index 30d7824bc..d7513c6e8 100644 --- a/apps/wallet/public/compat.json +++ b/apps/wallet/public/compat.json @@ -1,9 +1,14 @@ { "__important__": "This file is automatically generated by the build process. Do not modify it manually.", - "version": "0.1.1", + "version": "0.2.0", "api": { - "latest": "0.1.0", + "latest": "0.2.0", "compatibility": { + "0.2.0": { + "ui": [ + "0.2.0" + ] + }, "0.1.0": { "ui": [ "0.1.1", diff --git a/core/control-panel/impl/Cargo.toml b/core/control-panel/impl/Cargo.toml index 58ae393e4..462f59e50 100644 --- a/core/control-panel/impl/Cargo.toml +++ b/core/control-panel/impl/Cargo.toml @@ -29,7 +29,7 @@ serde_cbor = { workspace = true } thiserror = { workspace = true } uuid = { workspace = true, features = ['serde', 'v4'] } control-panel-api = { path = '../api', version = '0.1.0' } -station-api = { path = '../../station/api', version = '0.1.0' } +station-api = { path = '../../station/api', version = '0.2.0' } semver = { workspace = true } email_address = '0.2.4' diff --git a/core/station/api/CHANGELOG.md b/core/station/api/CHANGELOG.md index 1012ae257..12fcfcb0f 100644 --- a/core/station/api/CHANGELOG.md +++ b/core/station/api/CHANGELOG.md @@ -1,3 +1,24 @@ +## 0.2.0 (2024-12-03) + + +### 🚀 Features + +- **station:** external canister snapshots ([#429](https://github.com/dfinity/orbit/pull/429)) + +- **station:** monitor external canisters ([#416](https://github.com/dfinity/orbit/pull/416)) + + +### 🩹 Fixes + +- **wallet:** fix request export order ([#449](https://github.com/dfinity/orbit/pull/449)) + + +### ❤️ Thank You + +- Jan Hrubes @jedna +- mraszyk @mraszyk +- olaszakos + ## 0.1.0 (2024-11-27) diff --git a/core/station/api/Cargo.toml b/core/station/api/Cargo.toml index 0e5d3e050..9c5d34546 100644 --- a/core/station/api/Cargo.toml +++ b/core/station/api/Cargo.toml @@ -2,7 +2,7 @@ [package] name = 'station-api' include = ['src', 'Cargo.toml'] -version = '0.1.0' +version = '0.2.0' authors.workspace = true edition.workspace = true repository.workspace = true diff --git a/core/station/impl/CHANGELOG.md b/core/station/impl/CHANGELOG.md index a000ec689..3595c913e 100644 --- a/core/station/impl/CHANGELOG.md +++ b/core/station/impl/CHANGELOG.md @@ -1,3 +1,29 @@ +## 0.2.0 (2024-12-03) + + +### 🚀 Features + +- **station:** external canister snapshots ([#429](https://github.com/dfinity/orbit/pull/429)) + +- **station:** monitor external canisters ([#416](https://github.com/dfinity/orbit/pull/416)) + + +### 🩹 Fixes + +- **wallet:** fix request export order ([#449](https://github.com/dfinity/orbit/pull/449)) + + +### 🧱 Updated Dependencies + +- Updated station-api to 0.2.0 + + +### ❤️ Thank You + +- Jan Hrubes @jedna +- mraszyk @mraszyk +- olaszakos + ## 0.1.0 (2024-11-27) diff --git a/core/station/impl/Cargo.toml b/core/station/impl/Cargo.toml index 9f3fe151a..50f78b735 100644 --- a/core/station/impl/Cargo.toml +++ b/core/station/impl/Cargo.toml @@ -2,7 +2,7 @@ [package] name = 'station' include = ['src', 'Cargo.toml'] -version = '0.1.0' +version = '0.2.0' authors.workspace = true edition.workspace = true repository.workspace = true @@ -41,7 +41,7 @@ sha2 = { workspace = true } strum = { version = '0.26', features = ['derive'] } thiserror = { workspace = true } uuid = { workspace = true, features = ['v4'] } -station-api = { path = '../api', version = '0.1.0' } +station-api = { path = '../api', version = '0.2.0' } upgrader-api = { path = '../../upgrader/api', version = '0.1.0' } [dev-dependencies] diff --git a/core/upgrader/api/Cargo.toml b/core/upgrader/api/Cargo.toml index 5f88f6935..33c4b1315 100644 --- a/core/upgrader/api/Cargo.toml +++ b/core/upgrader/api/Cargo.toml @@ -14,5 +14,5 @@ candid = { workspace = true } serde = { workspace = true } serde_bytes = { workspace = true } orbit-essentials = { path = '../../../libs/orbit-essentials', version = '0.1.0' } -station-api = { path = '../../../core/station/api', version = '0.1.0' } +station-api = { path = '../../../core/station/api', version = '0.2.0' } ic-stable-structures = { workspace = true } diff --git a/core/upgrader/impl/Cargo.toml b/core/upgrader/impl/Cargo.toml index 697d6d01c..fe247ea01 100644 --- a/core/upgrader/impl/Cargo.toml +++ b/core/upgrader/impl/Cargo.toml @@ -27,7 +27,7 @@ serde = { workspace = true, features = ['derive'] } serde_bytes = { workspace = true } serde_cbor = { workspace = true } serde_json = { workspace = true } -station-api = { path = '../../station/api', version = '0.1.0' } +station-api = { path = '../../station/api', version = '0.2.0' } sha2 = { workspace = true } thiserror = { workspace = true } uuid = { workspace = true, features = ['v4'] } diff --git a/tests/integration/Cargo.toml b/tests/integration/Cargo.toml index 5ed48f614..69b7d85ce 100644 --- a/tests/integration/Cargo.toml +++ b/tests/integration/Cargo.toml @@ -7,7 +7,7 @@ edition = '2021' [dependencies] candid = { workspace = true } candid_parser = { workspace = true } -dfx-orbit = { path = '../../tools/dfx-orbit', version = '0.8.0' } +dfx-orbit = { path = '../../tools/dfx-orbit', version = '0.9.0' } flate2 = { workspace = true } hex = { workspace = true } orbit-essentials = { path = '../../libs/orbit-essentials', version = '0.1.0' } @@ -31,5 +31,5 @@ tokio.workspace = true uuid = { workspace = true } control-panel-api = { path = '../../core/control-panel/api', version = '0.1.0' } upgrader-api = { path = '../../core/upgrader/api', version = '0.1.0' } -station-api = { path = '../../core/station/api', version = '0.1.0' } +station-api = { path = '../../core/station/api', version = '0.2.0' } wat = { workspace = true } diff --git a/tools/dfx-orbit/CHANGELOG.md b/tools/dfx-orbit/CHANGELOG.md index 18b1f0f9a..a48aa7356 100644 --- a/tools/dfx-orbit/CHANGELOG.md +++ b/tools/dfx-orbit/CHANGELOG.md @@ -1,3 +1,29 @@ +## 0.9.0 (2024-12-03) + + +### 🚀 Features + +- **station:** external canister snapshots ([#429](https://github.com/dfinity/orbit/pull/429)) + +- **station:** monitor external canisters ([#416](https://github.com/dfinity/orbit/pull/416)) + + +### 🩹 Fixes + +- **wallet:** fix request export order ([#449](https://github.com/dfinity/orbit/pull/449)) + + +### 🧱 Updated Dependencies + +- Updated station-api to 0.2.0 + + +### ❤️ Thank You + +- Jan Hrubes @jedna +- mraszyk @mraszyk +- olaszakos + ## 0.8.0 (2024-11-27) diff --git a/tools/dfx-orbit/Cargo.toml b/tools/dfx-orbit/Cargo.toml index 34bb9925f..c0348183e 100644 --- a/tools/dfx-orbit/Cargo.toml +++ b/tools/dfx-orbit/Cargo.toml @@ -1,7 +1,7 @@ [package] name = 'dfx-orbit' -version = '0.8.0' +version = '0.9.0' description = 'Command line tool for interacting with the Orbit digital asset manager on the ICP blockchain.' authors.workspace = true edition.workspace = true @@ -36,7 +36,7 @@ slog-async.workspace = true tabled.workspace = true thiserror.workspace = true tokio = { workspace = true, features = ['rt'] } -station-api = { path = '../../core/station/api', version = '0.1.0' } +station-api = { path = '../../core/station/api', version = '0.2.0' } [lib] doctest = false