diff --git a/.changelog/755.feature.md b/.changelog/755.feature.md deleted file mode 100644 index 4f3203048..000000000 --- a/.changelog/755.feature.md +++ /dev/null @@ -1 +0,0 @@ -storage: sort tokens by total value diff --git a/.changelog/759.bugfix.md b/.changelog/759.bugfix.md deleted file mode 100644 index be44341e8..000000000 --- a/.changelog/759.bugfix.md +++ /dev/null @@ -1 +0,0 @@ -storage: bump consensus RegistryEvents cache key diff --git a/.changelog/760.feature.md b/.changelog/760.feature.md deleted file mode 100644 index 4dd523e85..000000000 --- a/.changelog/760.feature.md +++ /dev/null @@ -1 +0,0 @@ -api/consensus/valudators: Expose validator signed blocks info diff --git a/.changelog/761.bugfix.md b/.changelog/761.bugfix.md deleted file mode 100644 index e8f17a341..000000000 --- a/.changelog/761.bugfix.md +++ /dev/null @@ -1,11 +0,0 @@ -post-reindex fixes - -This PR combines several minor fixes that were applied during -the reindex of production. - -1. Damask-style proposals are now unmarshalled correctly -2. Cobalt PVSS txs are now unmarshalled correctly using vendored -oasis-core types. -3. TakeEscrow events are now indexed properly. -4. minor bump in oapi-codegen version to v1.12. A subsequent PR -will bump it to v2 diff --git a/.changelog/762.doc.md b/.changelog/762.doc.md deleted file mode 100644 index 7a8b4ea01..000000000 --- a/.changelog/762.doc.md +++ /dev/null @@ -1 +0,0 @@ -openapi: mark unreleased consensus endpoints as experimental/deprecated diff --git a/.changelog/766.feature.md b/.changelog/766.feature.md deleted file mode 100644 index 8b1e20175..000000000 --- a/.changelog/766.feature.md +++ /dev/null @@ -1,18 +0,0 @@ -config/server: clean-up chainName and reuse source config - -Required config change: - -Old: - -```yaml -server: - chain_name: mainnet -``` - -New: - -```yaml -server: - source: - chain_name: mainnet -``` diff --git a/.changelog/768.bugfix.md b/.changelog/768.bugfix.md deleted file mode 100644 index 7c7d4699d..000000000 --- a/.changelog/768.bugfix.md +++ /dev/null @@ -1 +0,0 @@ -evmverifier: update to use current sourcify api diff --git a/.changelog/792.feature.md b/.changelog/792.feature.md deleted file mode 100644 index c89250ea4..000000000 --- a/.changelog/792.feature.md +++ /dev/null @@ -1 +0,0 @@ -Revert "storage: bump consensus RegistryEvents cache key" diff --git a/.punch_version.py b/.punch_version.py index 48dd2e1ab..972bfbd1b 100644 --- a/.punch_version.py +++ b/.punch_version.py @@ -1,3 +1,3 @@ major = 0 minor = 4 -patch = 0 +patch = 1 diff --git a/CHANGELOG.md b/CHANGELOG.md index e60bc7a9f..60be31019 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -12,6 +12,59 @@ The format is inspired by [Keep a Changelog]. +## 0.4.1 (2024-10-25) + +### Features + +- storage: sort tokens by total value + ([#755](https://github.com/oasisprotocol/nexus/issues/755)) + +- api/consensus/valudators: Expose validator signed blocks info + ([#760](https://github.com/oasisprotocol/nexus/issues/760)) + +- config/server: clean-up chainName and reuse source config + ([#766](https://github.com/oasisprotocol/nexus/issues/766)) + + Required config change: + + Old: + + ```yaml + server: + chain_name: mainnet + ``` + + New: + + ```yaml + server: + source: + chain_name: mainnet + ``` + +### Bug Fixes and Improvements + +- post-reindex fixes + ([#761](https://github.com/oasisprotocol/nexus/issues/761)) + + This PR combines several minor fixes that were applied during + the reindex of production. + + 1. Damask-style proposals are now unmarshalled correctly + 2. Cobalt PVSS txs are now unmarshalled correctly using vendored + oasis-core types. + 3. TakeEscrow events are now indexed properly. + 4. minor bump in oapi-codegen version to v1.12. A subsequent PR + will bump it to v2 + +- evmverifier: update to use current sourcify api + ([#768](https://github.com/oasisprotocol/nexus/issues/768)) + +### Documentation Improvements + +- openapi: mark unreleased consensus endpoints as experimental/deprecated + ([#762](https://github.com/oasisprotocol/nexus/issues/762)) + ## 0.4.0 (2024-10-01) ### Features