diff --git a/CHANGELOG.md b/CHANGELOG.md index b53e90a54..cbebe05b5 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -37,6 +37,8 @@ Ref: https://keepachangelog.com/en/1.0.0/ ## [Unreleased] +## [v0.45.0](https://github.com/cosmos/cosmos-sdk/releases/tag/v0.45.0) - 2022-01-18 + ### State Machine Breaking * [#10833](https://github.com/cosmos/cosmos-sdk/pull/10833) fix reported tx gas used when block gas limit exceeded. diff --git a/RELEASE_NOTES.md b/RELEASE_NOTES.md index 3818b9f45..fb3c2acaf 100644 --- a/RELEASE_NOTES.md +++ b/RELEASE_NOTES.md @@ -16,6 +16,8 @@ Finally, a small improvement in gov, we increased the maximum proposal descripti - The `BankKeeper` interface has a new `HasSupply` method to ensure that input denom actually exists on chain. - The `CommitMultiStore` interface contains a new `SetIAVLCacheSize` method for a configurable IAVL cache size. - `AuthKeeper` interface in `x/auth` now includes a function `HasAccount`. +- Moved `TestMnemonic` from `testutil` package to `testdata`. + Finally, when using the `SetOrder*` functions in simapp, e.g. `SetOrderBeginBlocker`, we now require that all modules be present in the function arguments, or else the node panics at startup. We also added a new `SetOrderMigration` function to set the order of running module migrations. @@ -24,5 +26,6 @@ Finally, when using the `SetOrder*` functions in simapp, e.g. `SetOrderBeginBloc - Speedup improvements (e.g. speedup iterator creation after delete heavy workloads, lower allocations for `Coins.String()`, reduce RAM/CPU usage inside store/cachekv's `Store.Write`) are included in this release. - Upgrade Rosetta to v0.7.0 . - Support in-place migration ordering. +- Copied and updated `server.GenerateCoinKey` and `server.GenerateServerCoinKey` functions to the `testutil` package. These functions in `server` package are marked deprecated and will be removed in the next release. In the `testutil.GenerateServerCoinKey` version we added support for custom mnemonics in in-process testing network. See our [CHANGELOG](./CHANGELOG.md) for the exhaustive list of all changes, or a full [commit diff](https://github.com/cosmos/cosmos-sdk/compare/v0.44.5...v0.45.0).