From 07c8024f04d8aae25867e3ad4b8741bafcd86b6c Mon Sep 17 00:00:00 2001 From: Amaury M <1293565+amaurym@users.noreply.github.com> Date: Fri, 14 Jan 2022 17:12:25 +0100 Subject: [PATCH 1/3] chore: v0.44.6 changelog and release notes --- CHANGELOG.md | 2 ++ RELEASE_NOTES.md | 12 +++++++----- 2 files changed, 9 insertions(+), 5 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 71b4384e9540..ea9038b4b00d 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -37,6 +37,8 @@ Ref: https://keepachangelog.com/en/1.0.0/ ## [Unreleased] +## [v0.44.6](https://github.com/cosmos/cosmos-sdk/releases/tag/v0.44.6) - 2022-01-14 + ### Bug Fixes * (std/codec) [/#10595](https://github.com/cosmos/cosmos-sdk/pull/10595) Add evidence to std/codec to be able to decode evidence in client interactions. diff --git a/RELEASE_NOTES.md b/RELEASE_NOTES.md index 14aae1abd4b9..c120a682ee32 100644 --- a/RELEASE_NOTES.md +++ b/RELEASE_NOTES.md @@ -1,10 +1,12 @@ -# Cosmos SDK v0.44.5 Release Notes +# Cosmos SDK v0.44.6 Release Notes This release introduces bug fixes and improvements on the Cosmos SDK v0.44 series: -- Emit ante handler events for failed transactions: ant events can cause blockchain change (eg tx fees) and related events should be emitted. -- (fix) Upgrade IAVL to 0.17.3 to solve race condition bug in IAVL. +- Populate `ctx.ConsensusParams` for begin/end blockers. +- Ensure that `LegacyAminoPubKey` struct correctly unmarshals from JSON. +- Add evidence to std/codec to be able to decode evidence in client interactions. +- Support custom mnemonics in in-process tests. -See the [Cosmos SDK v0.44.5 Changelog](https://github.com/cosmos/cosmos-sdk/blob/v0.44.5/CHANGELOG.md) for the exhaustive list of all changes. +See the [Cosmos SDK v0.44.6 Changelog](https://github.com/cosmos/cosmos-sdk/blob/v0.44.6/CHANGELOG.md) for the exhaustive list of all changes. -**Full Changelog**: https://github.com/cosmos/cosmos-sdk/compare/v0.44.4...v0.44.5 +**Full Changelog**: https://github.com/cosmos/cosmos-sdk/compare/v0.44.5...v0.44.6 From ce01c36a9b6936892589c54814121c1970409c52 Mon Sep 17 00:00:00 2001 From: Amaury M <1293565+amaurym@users.noreply.github.com> Date: Wed, 2 Feb 2022 11:05:21 +0100 Subject: [PATCH 2/3] Update --- CHANGELOG.md | 2 +- RELEASE_NOTES.md | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 113ea3ebc506..3e10bc2bf71b 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -43,7 +43,7 @@ Ref: https://keepachangelog.com/en/1.0.0/ * (grpc) [\#10985](https://github.com/cosmos/cosmos-sdk/pull/10992) The `/cosmos/tx/v1beta1/txs/{hash}` endpoint returns a 404 when a tx does not exist. * (std/codec) [/#10595](https://github.com/cosmos/cosmos-sdk/pull/10595) Add evidence to std/codec to be able to decode evidence in client interactions. -* [#10725](https://github.com/cosmos/cosmos-sdk/pull/10725) populate `ctx.ConsensusParams` for begin/end blockers. +* [#10725](https://github.com/cosmos/cosmos-sdk/pull/10725) populate `ctx.ConsensusParams` for begin/end blockers. * [\#10061](https://github.com/cosmos/cosmos-sdk/pull/10061) and [\#10515](https://github.com/cosmos/cosmos-sdk/pull/10515) Ensure that `LegacyAminoPubKey` struct correctly unmarshals from JSON ### Improvements diff --git a/RELEASE_NOTES.md b/RELEASE_NOTES.md index c120a682ee32..f4d7d50fddcb 100644 --- a/RELEASE_NOTES.md +++ b/RELEASE_NOTES.md @@ -2,10 +2,10 @@ This release introduces bug fixes and improvements on the Cosmos SDK v0.44 series: -- Populate `ctx.ConsensusParams` for begin/end blockers. +- Populate `ctx.ConsensusParams` for begin/end blockers. +- Significantly speedup iterator creation after delete heavy workloads, which significantly improves IBC migration times. - Ensure that `LegacyAminoPubKey` struct correctly unmarshals from JSON. - Add evidence to std/codec to be able to decode evidence in client interactions. -- Support custom mnemonics in in-process tests. See the [Cosmos SDK v0.44.6 Changelog](https://github.com/cosmos/cosmos-sdk/blob/v0.44.6/CHANGELOG.md) for the exhaustive list of all changes. From 158a1b450d6d0e1f5ac33d3f3f052448fd117b88 Mon Sep 17 00:00:00 2001 From: Amaury M <1293565+amaurym@users.noreply.github.com> Date: Wed, 2 Feb 2022 11:06:24 +0100 Subject: [PATCH 3/3] update date --- CHANGELOG.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 3e10bc2bf71b..91bede3a4349 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -37,7 +37,7 @@ Ref: https://keepachangelog.com/en/1.0.0/ ## [Unreleased] -## [v0.44.6](https://github.com/cosmos/cosmos-sdk/releases/tag/v0.44.6) - 2022-01-14 +## [v0.44.6](https://github.com/cosmos/cosmos-sdk/releases/tag/v0.44.6) - 2022-02-02 ### Bug Fixes