forked from cosmos/cosmos-sdk
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
chore: Cosmos SDK v0.44.5 release notes (cosmos#10667)
* v0.44.5 release * Cosmos SDK v0.44.5 Release * Update RELEASE_NOTES.md Co-authored-by: Amaury <[email protected]> Co-authored-by: Amaury <[email protected]>
- Loading branch information
1 parent
03044f1
commit 9551921
Showing
2 changed files
with
8 additions
and
12 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,16 +1,10 @@ | ||
# Cosmos SDK v0.44.4 Release Notes | ||
# Cosmos SDK v0.44.5 Release Notes | ||
|
||
This release introduces bug fixes and improvements on the Cosmos SDK v0.44 series. | ||
This release introduces bug fixes and improvements on the Cosmos SDK v0.44 series: | ||
|
||
SDK v0.44.0-v0.44.3 x/auth migration have a **vesting account bug**, which vanishes `delegated_vesting` field from `BaseVestingAccount`. Recovery, unfortunately, is complicated and either involves manually overwriting it or querying an old state. | ||
We had to change the order of module migration by pushing x/auth to the end. Auth module state depends on x/stake and should be run last. We have updated the documentation to provide more details how to change module migration order. This is technically a breaking change, but only impacts updates between the major version change, hence migrating from the previous patch release (0.44.x) doesn't cause new migration and doesn't break the state. | ||
- 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. | ||
|
||
Other bug fixes: | ||
+ grpc-gateway query account balance by IBC denom had an incorrect endpoint (correct one is `"/cosmos/bank/v1beta1/balances/{address}/by_denom"`) | ||
+ use `sdk.GetConfig().GetFullBIP44Path()` instead `sdk.FullFundraiserPath` to generate key - this correctly resets hdpath when running `app testnet`. | ||
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. | ||
|
||
This release enables Auto Download feature to Cosmovisor >= v1.0.0. Now, you will be able to use Auto Download with the latest Cosmovisor when you will plan the next upgrade to the next major release (v0.45.0), | ||
|
||
Finally, we updated the IAVL to it's latest version and take a benefit of the new IAVL iterator, which improves the iteration performance. | ||
|
||
See the [Cosmos SDK v0.44.4 Changelog](https://github.com/cosmos/cosmos-sdk/blob/v0.44.4/CHANGELOG.md) for the exhaustive list of all changes. | ||
**Full Changelog**: https://github.com/cosmos/cosmos-sdk/compare/v0.44.4...v0.44.5 |