From 4cee50d1bf3fedc4485f1185694c8fc9f5305337 Mon Sep 17 00:00:00 2001 From: Julien Robert Date: Tue, 1 Nov 2022 09:22:47 +0100 Subject: [PATCH 1/4] chore: prepare 0.46.4 changelog --- CHANGELOG.md | 2 ++ RELEASE_NOTES.md | 26 +++++--------------------- 2 files changed, 7 insertions(+), 21 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 5d34c0e703d2..46e1b042408e 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -37,6 +37,8 @@ Ref: https://keepachangelog.com/en/1.0.0/ ## [Unreleased] +## [v0.46.4](https://github.com/cosmos/cosmos-sdk/releases/tag/v0.46.4) - 2022-11-01 + ### Features * (x/auth) [#13612](https://github.com/cosmos/cosmos-sdk/pull/13612) Add `Query/ModuleAccountByName` endpoint for accessing the module account info by module name. diff --git a/RELEASE_NOTES.md b/RELEASE_NOTES.md index 84f64d4c7c02..3c385c23bb80 100644 --- a/RELEASE_NOTES.md +++ b/RELEASE_NOTES.md @@ -1,24 +1,8 @@ -# Cosmos SDK v0.46.3 Release Notes +# Cosmos SDK v0.46.4 Release Notes -This is a security release for the [Dragonberry security advisory](https://forum.cosmos.network/t/ibc-security-advisory-dragonberry/7702). -Please upgrade ASAP. - -Chains must add the following to their go.mod for the application: - -```go -replace github.com/confio/ics23/go => github.com/cosmos/cosmos-sdk/ics23/go v0.8.0 -``` - -Bumping the SDK version should be smooth, however, feel free to tag core devs to review your upgrading PR: - -* **CET**: @tac0turtle, @okwme, @AdityaSripal, @colin-axner, @julienrbrt -* **EST**: @ebuchman, @alexanderbez, @aaronc -* **PST**: @jtremback, @nicolaslara, @czarcas7ic, @p0mvn -* **CDT**: @ValarDragon, @zmanian - -Other updates: - -* `ApplicationQueryService` was introduced to enable additional query service registration. Applications should implement `RegisterNodeService(client.Context)` method to automatically expose chain information query service implemented in [#13485](https://github.com/cosmos/cosmos-sdk/pull/13485). -* Next to this, we have also included a few minor bugfixes. +This release introduces a number of bug fixes, features and improvements. +Notably, a new query for accessing the module account info by module name (thanks @gsk967!). Please see the [CHANGELOG](https://github.com/cosmos/cosmos-sdk/blob/release/v0.46.x/CHANGELOG.md) for an exhaustive list of changes. + +Full Commit History: https://github.com/cosmos/cosmos-sdk/compare/v0.46.3...v0.46.4 From 089294a3d6095a3ec0ea7d729e2f907faa8af7e0 Mon Sep 17 00:00:00 2001 From: Julien Robert Date: Tue, 1 Nov 2022 10:10:35 +0100 Subject: [PATCH 2/4] wording --- RELEASE_NOTES.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/RELEASE_NOTES.md b/RELEASE_NOTES.md index 3c385c23bb80..5b24f26ea259 100644 --- a/RELEASE_NOTES.md +++ b/RELEASE_NOTES.md @@ -1,7 +1,7 @@ # Cosmos SDK v0.46.4 Release Notes This release introduces a number of bug fixes, features and improvements. -Notably, a new query for accessing the module account info by module name (thanks @gsk967!). +Notably, a new query for accessing module accounts info by module name (thanks @gsk967). Please see the [CHANGELOG](https://github.com/cosmos/cosmos-sdk/blob/release/v0.46.x/CHANGELOG.md) for an exhaustive list of changes. From ed8f4d1bbfe198e98a51c683ddfe67e5e6d11bbb Mon Sep 17 00:00:00 2001 From: Julien Robert Date: Tue, 1 Nov 2022 16:35:24 +0100 Subject: [PATCH 3/4] updates --- RELEASE_NOTES.md | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/RELEASE_NOTES.md b/RELEASE_NOTES.md index 5b24f26ea259..6a04c176aeb0 100644 --- a/RELEASE_NOTES.md +++ b/RELEASE_NOTES.md @@ -6,3 +6,11 @@ Notably, a new query for accessing module accounts info by module name (thanks @ Please see the [CHANGELOG](https://github.com/cosmos/cosmos-sdk/blob/release/v0.46.x/CHANGELOG.md) for an exhaustive list of changes. Full Commit History: https://github.com/cosmos/cosmos-sdk/compare/v0.46.3...v0.46.4 + +**NOTE**: The changes mentioned in `v0.46.3` are **still** required: + +> Chains must add the following to their go.mod for the application: +> +> ```go +> replace github.com/confio/ics23/go => github.com/cosmos/cosmos-sdk/ics23/go v0.8.0 +> ``` From ddf285cb9cb545af26c13059bbdc1ce320d17f31 Mon Sep 17 00:00:00 2001 From: Julien Robert Date: Tue, 1 Nov 2022 16:36:16 +0100 Subject: [PATCH 4/4] updates --- RELEASE_NOTES.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/RELEASE_NOTES.md b/RELEASE_NOTES.md index 6a04c176aeb0..f77ccac5cc85 100644 --- a/RELEASE_NOTES.md +++ b/RELEASE_NOTES.md @@ -1,6 +1,6 @@ # Cosmos SDK v0.46.4 Release Notes -This release introduces a number of bug fixes, features and improvements. +This release introduces a number of bug fixes, features and improvements. Notably, a new query for accessing module accounts info by module name (thanks @gsk967). Please see the [CHANGELOG](https://github.com/cosmos/cosmos-sdk/blob/release/v0.46.x/CHANGELOG.md) for an exhaustive list of changes.