chore: updated changelogs, revert change to nym-connect version as there were no changes

This commit is contained in:
farbanas
2023-04-18 10:54:57 +02:00
parent 58d805ab72
commit 6f5cee8c36
6 changed files with 52 additions and 10 deletions
+22 -5
View File
@@ -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)
+5
View File
@@ -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])
+2 -2
View File
@@ -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"
}
}
}
+1 -1
View File
@@ -1,6 +1,6 @@
[package]
name = "nym-connect"
version = "1.1.14"
version = "1.1.13"
description = "nym-connect"
authors = ["Nym Technologies SA"]
license = ""
@@ -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'"
}
}
}
}
+20
View File
@@ -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])