From 6f5cee8c36db27208f2ebd77eb3ac895c65a04ed Mon Sep 17 00:00:00 2001 From: farbanas Date: Tue, 18 Apr 2023 10:54:57 +0200 Subject: [PATCH] chore: updated changelogs, revert change to nym-connect version as there were no changes --- CHANGELOG.md | 27 +++++++++++++++---- contracts/CHANGELOG.md | 5 ++++ nym-connect/desktop/package.json | 4 +-- nym-connect/desktop/src-tauri/Cargo.toml | 2 +- nym-connect/desktop/src-tauri/tauri.conf.json | 4 +-- nym-wallet/CHANGELOG.md | 20 ++++++++++++++ 6 files changed, 52 insertions(+), 10 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 071c90e68c..56bdcb4b04 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -4,12 +4,29 @@ Post 1.0.0 release, the changelog format is based on [Keep a Changelog](https:// ## [Unreleased] -- nym-network-statistics properly handles signals ([#3209]) -- add socks5 support for Rust SDK ([#3226], [#3255]) +## [v1.1.15] (2023-04-18) -[#3209]: https://github.com/nymtech/nym/issues/3209 -[#3226]: https://github.com/nymtech/nym/pull/3226 -[#3255]: https://github.com/nymtech/nym/pull/3255 +- Fix verloc being stuck waiting for shutdown signal ([#3250]) +- Introduce `--output json` flag to `sign` command to allow to more easily capture the output ([#3249]) +- Explorer - Dont fetch Service Provider list on Testnet ([#3245]) +- When determining active set, rather than weighting the nodes by just the `stake`, use `stake * performance` ([#3234]) +- Introduce dual packet sizes to our clients (as in use two packet sizes at the same time depending on message size) ([#3189]) +- Experiment with offline signing in our validator client ([#3174]) +- Modify network requester binary to reload `allowed.list` periodically to pull in any changes made upstream without having to restart the service ([#3149]) +- Standardise all `--output json` on binary inits, we pass the output json at different points for different binaries. ([#3080]) +- Service provider directory contract: initial version ([#2759]) +- Fix issue where network-requester run failed on fresh init due to missing allow file ([#3316]) + +[#3250]: https://github.com/nymtech/nym/issues/3250 +[#3249]: https://github.com/nymtech/nym/issues/3249 +[#3245]: https://github.com/nymtech/nym/issues/3245 +[#3234]: https://github.com/nymtech/nym/issues/3234 +[#3189]: https://github.com/nymtech/nym/issues/3189 +[#3174]: https://github.com/nymtech/nym/issues/3174 +[#3149]: https://github.com/nymtech/nym/issues/3149 +[#3080]: https://github.com/nymtech/nym/issues/3080 +[#2759]: https://github.com/nymtech/nym/issues/2759 +[#3316]: https://github.com/nymtech/nym/pull/3316 ## [v1.1.14] (2023-04-04) diff --git a/contracts/CHANGELOG.md b/contracts/CHANGELOG.md index c032a8139b..81bc67a5ae 100644 --- a/contracts/CHANGELOG.md +++ b/contracts/CHANGELOG.md @@ -2,6 +2,11 @@ ## Unreleased +## [v1.3.1] (2023-04-18) +- Add a query to the vesting contract for the amount of delegated tokens towards a particular `mix_id` (might be needed by NG) ([#3228]) + +[#3228]: https://github.com/nymtech/nym/issues/3228 + ## [v1.3.0] (2023-04-04) - change in-contract signatures to include nonces and to sign entire payloads for family-related operations ([#3125]) - change in-contract signatures to include nonces and to sign entire payloads for node bonding (will require wallet changes) ([#3067]) diff --git a/nym-connect/desktop/package.json b/nym-connect/desktop/package.json index 78d08274b1..299d162628 100644 --- a/nym-connect/desktop/package.json +++ b/nym-connect/desktop/package.json @@ -1,6 +1,6 @@ { "name": "@nym/nym-connect", - "version": "1.1.14", + "version": "1.1.13", "main": "index.js", "license": "MIT", "scripts": { @@ -113,4 +113,4 @@ "webpack-merge": "^5.8.0", "yaml-loader": "^0.8.0" } -} \ No newline at end of file +} diff --git a/nym-connect/desktop/src-tauri/Cargo.toml b/nym-connect/desktop/src-tauri/Cargo.toml index c9b3161ffe..3670fdaca5 100644 --- a/nym-connect/desktop/src-tauri/Cargo.toml +++ b/nym-connect/desktop/src-tauri/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "nym-connect" -version = "1.1.14" +version = "1.1.13" description = "nym-connect" authors = ["Nym Technologies SA"] license = "" diff --git a/nym-connect/desktop/src-tauri/tauri.conf.json b/nym-connect/desktop/src-tauri/tauri.conf.json index 26ecdd851a..d951d47dfa 100644 --- a/nym-connect/desktop/src-tauri/tauri.conf.json +++ b/nym-connect/desktop/src-tauri/tauri.conf.json @@ -1,7 +1,7 @@ { "package": { "productName": "nym-connect", - "version": "1.1.14" + "version": "1.1.13" }, "build": { "distDir": "../dist", @@ -86,4 +86,4 @@ "csp": "default-src blob: data: filesystem: ws: wss: http: https: tauri: 'unsafe-eval' 'unsafe-inline' 'self' img-src: 'self'" } } -} \ No newline at end of file +} diff --git a/nym-wallet/CHANGELOG.md b/nym-wallet/CHANGELOG.md index 133ffd6350..95411c1665 100644 --- a/nym-wallet/CHANGELOG.md +++ b/nym-wallet/CHANGELOG.md @@ -2,6 +2,26 @@ ## [Unreleased] +## [v1.1.15] (2023-04-18) + +- [bug] bonding signature with vesting account ([#3315]) +- Wallet - settings: fix version check ([#3306]) +- Wallet - add new tauri command to fetch app version info ([#3305]) +- Wallet - backend support to change password in file ([#3285]) +- Wallet - add missing tooltips ([#3275]) +- Wallet - global settings part 1 general and advanced 🟢 ([#2181]) +- Wallet - global settings part 2 Security - Add&Change Password 🟢 ([#2275]) +- feat(wallet): app version check (#3308) ([#3319]) + +[#3315]: https://github.com/nymtech/nym/issues/3315 +[#3306]: https://github.com/nymtech/nym/issues/3306 +[#3305]: https://github.com/nymtech/nym/issues/3305 +[#3285]: https://github.com/nymtech/nym/issues/3285 +[#3275]: https://github.com/nymtech/nym/issues/3275 +[#2181]: https://github.com/nymtech/nym/issues/2181 +[#2275]: https://github.com/nymtech/nym/issues/2275 +[#3319]: https://github.com/nymtech/nym/pull/3319 + ## [v1.2.0] (2023-04-04) - Add Version and Location to gateway settings ([#3266])