From 4ffdc7bf3ec0ff930810e997a21857e6dc5d0fdd Mon Sep 17 00:00:00 2001 From: Giacomo Pasini Date: Fri, 25 Mar 2022 17:36:04 +0100 Subject: [PATCH] [fund-8] Release 0.14.0 (#3898) * Release 0.14.0 * update CHANGELOG.md --- CHANGELOG.md | 14 +++++++++++--- Cargo.lock | 10 +++++----- jcli/Cargo.toml | 2 +- jormungandr-lib/Cargo.toml | 2 +- jormungandr/Cargo.toml | 2 +- testing/jormungandr-automation/Cargo.toml | 2 +- testing/jormungandr-integration-tests/Cargo.toml | 2 +- 7 files changed, 21 insertions(+), 13 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 42132bffc4..7bc1824b8e 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,7 +2,10 @@ ## Unreleased -- fix incorrect keys bech32 HRP by always using the ones provided by the library +## Release 0.14 + +**New features:** + - update REST API: add new endpoint AccountVotes (`/api/v1/votes/plan/account-votes/{account_id}`) - Support parallel lanes in spending counters on account outputs. This allows submitting transactions that can spend from the same account without @@ -14,16 +17,21 @@ - update REST API: add new endpoint account based votes count (`/api/v1/votes/plan/accounts-votes-count`) - Add jcli option to specify a spending counter lane in a user-friendly way - Add CORS config params: allowed headers and allowed methods. +- Add `mempoolUsageRatio` metric and related field in `node/stats` to track load on the mempool. + +**Changes:** - Update REST API `/api/v0/account/{account_id}`, add new field with the token's state info. - Vote tally now uses the token in the voteplan instead of the native currency. - Remove `txPendingCnt` metric and related field in `node/stats` - Rename `txPendingTotalSize` to `mempoolTotalSize` -- Add `mempoolUsageRatio` metric and related field in `node/stats` to track load on the mempool. - Change `blockContentSizeAvg` to represent information as a percentage of the block max size. - Bump ed25519-bip32 from 0.4.0 to 0.4.1 -- Now the tally is incremental and is always available in the rest API. The +- Now the tally is incremental and is always available in the rest API. - Add standalone explorer crate. +**Bug fixes:** +- fix incorrect keys bech32 HRP by always using the ones provided by the library + ## Release 0.13.0 **New features:** diff --git a/Cargo.lock b/Cargo.lock index 00dd6bcf66..84157e5c37 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -2305,7 +2305,7 @@ checksum = "1aab8fc367588b89dcee83ab0fd66b72b50b72fa1904d7095045ace2b0c81c35" [[package]] name = "jcli" -version = "0.13.0" +version = "0.14.0" dependencies = [ "assert_fs", "base64", @@ -2342,7 +2342,7 @@ dependencies = [ [[package]] name = "jormungandr" -version = "0.13.0" +version = "0.14.0" dependencies = [ "arc-swap", "async-trait", @@ -2402,7 +2402,7 @@ dependencies = [ [[package]] name = "jormungandr-automation" -version = "0.13.0" +version = "0.14.0" dependencies = [ "assert_cmd", "assert_fs", @@ -2466,7 +2466,7 @@ dependencies = [ [[package]] name = "jormungandr-integration-tests" -version = "0.13.0" +version = "0.14.0" dependencies = [ "assert_cmd", "assert_fs", @@ -2517,7 +2517,7 @@ dependencies = [ [[package]] name = "jormungandr-lib" -version = "0.13.0" +version = "0.14.0" dependencies = [ "base64", "bech32 0.8.1", diff --git a/jcli/Cargo.toml b/jcli/Cargo.toml index a0eb67d788..15bf380c75 100644 --- a/jcli/Cargo.toml +++ b/jcli/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "jcli" -version = "0.13.0" +version = "0.14.0" authors = [ "dev@iohk.io" ] license = "MIT OR Apache-2.0" repository = "https://github.com/input-output-hk/jormungandr" diff --git a/jormungandr-lib/Cargo.toml b/jormungandr-lib/Cargo.toml index 05ba0acad5..de9ac47f28 100644 --- a/jormungandr-lib/Cargo.toml +++ b/jormungandr-lib/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "jormungandr-lib" -version = "0.13.0" +version = "0.14.0" authors = ["dev@iohk.io"] edition = "2018" diff --git a/jormungandr/Cargo.toml b/jormungandr/Cargo.toml index 4065899aaa..7e42646d0d 100644 --- a/jormungandr/Cargo.toml +++ b/jormungandr/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "jormungandr" -version = "0.13.0" +version = "0.14.0" authors = [ "dev@iohk.io" ] license = "MIT OR Apache-2.0" repository = "https://github.com/input-output-hk/jormungandr" diff --git a/testing/jormungandr-automation/Cargo.toml b/testing/jormungandr-automation/Cargo.toml index 026f26bb4f..e486b2c063 100644 --- a/testing/jormungandr-automation/Cargo.toml +++ b/testing/jormungandr-automation/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "jormungandr-automation" -version = "0.13.0" +version = "0.14.0" authors = ["Nicolas Di Prima "] edition = "2018" diff --git a/testing/jormungandr-integration-tests/Cargo.toml b/testing/jormungandr-integration-tests/Cargo.toml index 4d2daf1c84..bee424ad5f 100644 --- a/testing/jormungandr-integration-tests/Cargo.toml +++ b/testing/jormungandr-integration-tests/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "jormungandr-integration-tests" -version = "0.13.0" +version = "0.14.0" authors = [ "dev@iohk.io" ] edition = "2018"