Merge PR #5073: Add changelog notes from v0.37.1
This commit is contained in:
parent
cf9ae51635
commit
890030b5c5
28
CHANGELOG.md
28
CHANGELOG.md
|
@ -62,14 +62,9 @@ deprecated and all components removed except the `legacy/` package.
|
|||
|
||||
### Features
|
||||
|
||||
* (cli) [\#4973](https://github.com/cosmos/cosmos-sdk/pull/4973) Enable application CPU profiling
|
||||
via the `--cpu-profile` flag.
|
||||
* (store) [\#4724](https://github.com/cosmos/cosmos-sdk/issues/4724) Multistore supports substore migrations upon load. New `rootmulti.Store.LoadLatestVersionAndUpgrade` method in
|
||||
`Baseapp` supports `StoreLoader` to enable various upgrade strategies. It no
|
||||
longer panics if the store to load contains substores that we didn't explicitly mount.
|
||||
* [\#4979](https://github.com/cosmos/cosmos-sdk/issues/4979) Introduce a new `halt-time` config and
|
||||
CLI option to the `start` command. When provided, an application will halt during `Commit` when the
|
||||
block time is >= the `halt-time`.
|
||||
* [\#4972](https://github.com/cosmos/cosmos-sdk/issues/4972) A `TxResponse` with a corresponding code
|
||||
and tx hash will be returned for specific Tendermint errors:
|
||||
* `CodeTxInMempoolCache`
|
||||
|
@ -106,14 +101,30 @@ generalized genesis accounts through the `GenesisAccount` interface.
|
|||
caching through `CommitKVStoreCacheManager`. Any application wishing to utilize an inter-block cache
|
||||
must set it in their app via a `BaseApp` option. The `BaseApp` docs have been drastically improved
|
||||
to detail this new feature and how state transitions occur.
|
||||
|
||||
### Bug Fixes
|
||||
|
||||
* (cli) [\#4763](https://github.com/cosmos/cosmos-sdk/issues/4763) Fix flag `--min-self-delegation` for staking `EditValidator`
|
||||
* (keys) Fix ledger custom coin type support bug
|
||||
|
||||
## [v0.37.1] - 2019-09-19
|
||||
|
||||
### Features
|
||||
|
||||
* (cli) [\#4973](https://github.com/cosmos/cosmos-sdk/pull/4973) Enable application CPU profiling
|
||||
via the `--cpu-profile` flag.
|
||||
* [\#4979](https://github.com/cosmos/cosmos-sdk/issues/4979) Introduce a new `halt-time` config and
|
||||
CLI option to the `start` command. When provided, an application will halt during `Commit` when the
|
||||
block time is >= the `halt-time`.
|
||||
|
||||
### Improvements
|
||||
|
||||
* [\#4990](https://github.com/cosmos/cosmos-sdk/issues/4990) Add `Events` to the `ABCIMessageLog` to
|
||||
provide context and grouping of events based on the messages they correspond to. The `Events` field
|
||||
in `TxResponse` is deprecated and will be removed in the next major release.
|
||||
|
||||
### Bug Fixes
|
||||
|
||||
* (cli) [\#4763](https://github.com/cosmos/cosmos-sdk/issues/4763) Fix flag `--min-self-delegation` for staking `EditValidator`
|
||||
* (keys) Fix ledger custom coin type support bug
|
||||
* [\#4979](https://github.com/cosmos/cosmos-sdk/issues/4979) Use `Signal(os.Interrupt)` over
|
||||
`os.Exit(0)` during configured halting to allow any `defer` calls to be executed.
|
||||
|
||||
|
@ -2617,6 +2628,7 @@ BUG FIXES:
|
|||
|
||||
<!-- Release links -->
|
||||
|
||||
[Unreleased]: https://github.com/cosmos/cosmos-sdk/compare/v0.37.0...HEAD
|
||||
[Unreleased]: https://github.com/cosmos/cosmos-sdk/compare/v0.37.1...HEAD
|
||||
[v0.37.1]: https://github.com/cosmos/cosmos-sdk/releases/tag/v0.37.1
|
||||
[v0.37.0]: https://github.com/cosmos/cosmos-sdk/releases/tag/v0.37.0
|
||||
[v0.36.0]: https://github.com/cosmos/cosmos-sdk/releases/tag/v0.36.0
|
||||
|
|
Loading…
Reference in New Issue