Update changelog
This commit is contained in:
parent
7b338c84dc
commit
43c0d0061a
23
CHANGELOG.md
23
CHANGELOG.md
|
@ -70,12 +70,10 @@ to now accept a `codec.JSONMarshaler` for modular serialization of genesis state
|
||||||
|
|
||||||
### Bug Fixes
|
### Bug Fixes
|
||||||
|
|
||||||
* (x/genutil) [\#5775](https://github.com/cosmos/cosmos-sdk/pull/5775) Fix `ExportGenesis` in `x/genutil` to export default genesis state (`[]`) instead of `null`.
|
|
||||||
* (baseapp) [\#5718](https://github.com/cosmos/cosmos-sdk/pull/5718) Remove call to `ctx.BlockGasMeter` during failed message validation which
|
* (baseapp) [\#5718](https://github.com/cosmos/cosmos-sdk/pull/5718) Remove call to `ctx.BlockGasMeter` during failed message validation which
|
||||||
resulted in a panic when the tx execution mode was `CheckTx`.
|
resulted in a panic when the tx execution mode was `CheckTx`.
|
||||||
* (client) [\#5618](https://github.com/cosmos/cosmos-sdk/pull/5618) Fix crash on the client when the verifier is not set.
|
* (client) [\#5618](https://github.com/cosmos/cosmos-sdk/pull/5618) Fix crash on the client when the verifier is not set.
|
||||||
* (x/distribution) [\#5620](https://github.com/cosmos/cosmos-sdk/pull/5620) Fix nil pointer deref in distribution tax/rewward validation helpers.
|
* (x/distribution) [\#5620](https://github.com/cosmos/cosmos-sdk/pull/5620) Fix nil pointer deref in distribution tax/rewward validation helpers.
|
||||||
* (genesis) [\#5086](https://github.com/cosmos/cosmos-sdk/issues/5086) Ensure `gentxs` are always an empty array instead of `nil`
|
|
||||||
* (types) [\#5741](https://github.com/cosmos/cosmos-sdk/issues/5741) Prevent ChainAnteDecorators() from panicking when empty AnteDecorator slice is supplied.
|
* (types) [\#5741](https://github.com/cosmos/cosmos-sdk/issues/5741) Prevent ChainAnteDecorators() from panicking when empty AnteDecorator slice is supplied.
|
||||||
* (modules) [\#5569](https://github.com/cosmos/cosmos-sdk/issues/5569) `InitGenesis`, for the relevant modules, now ensures module accounts exist.
|
* (modules) [\#5569](https://github.com/cosmos/cosmos-sdk/issues/5569) `InitGenesis`, for the relevant modules, now ensures module accounts exist.
|
||||||
|
|
||||||
|
@ -158,9 +156,6 @@ Buffers for state serialization instead of Amino.
|
||||||
* (types) [\#5585](https://github.com/cosmos/cosmos-sdk/pull/5585) IBC additions:
|
* (types) [\#5585](https://github.com/cosmos/cosmos-sdk/pull/5585) IBC additions:
|
||||||
* `Coin` denomination max lenght has been increased to 32.
|
* `Coin` denomination max lenght has been increased to 32.
|
||||||
* Added `CapabilityKey` alias for `StoreKey` to match IBC spec.
|
* Added `CapabilityKey` alias for `StoreKey` to match IBC spec.
|
||||||
* (rest) [\#5648](https://github.com/cosmos/cosmos-sdk/pull/5648) Enhance /txs usability:
|
|
||||||
* Add `tx.minheight` key to filter transaction with an inclusive minimum block height
|
|
||||||
* Add `tx.maxheight` key to filter transaction with an inclusive maximum block height
|
|
||||||
* (server) [\#5709](https://github.com/cosmos/cosmos-sdk/pull/5709) There are two new flags for pruning, `--pruning-keep-every`
|
* (server) [\#5709](https://github.com/cosmos/cosmos-sdk/pull/5709) There are two new flags for pruning, `--pruning-keep-every`
|
||||||
and `--pruning-snapshot-every` as an alternative to `--pruning`. They allow to fine tune the strategy for pruning the state.
|
and `--pruning-snapshot-every` as an alternative to `--pruning`. They allow to fine tune the strategy for pruning the state.
|
||||||
* (crypto/keys) [\#5739](https://github.com/cosmos/cosmos-sdk/pull/5739) Print an error message if the password input failed.
|
* (crypto/keys) [\#5739](https://github.com/cosmos/cosmos-sdk/pull/5739) Print an error message if the password input failed.
|
||||||
|
@ -409,14 +404,27 @@ to detail this new feature and how state transitions occur.
|
||||||
|
|
||||||
### Bug Fixes
|
### Bug Fixes
|
||||||
|
|
||||||
* (rest) [\#5508](https://github.com/cosmos/cosmos-sdk/pull/5508) Fix `x/distribution` endpoints to properly return height in the response.
|
|
||||||
* (x/genutil) [\#5499](https://github.com/cosmos/cosmos-sdk/pull/) Ensure `DefaultGenesis` returns valid and non-nil default genesis state.
|
|
||||||
* (client) [\#5303](https://github.com/cosmos/cosmos-sdk/issues/5303) Fix ignored error in tx generate only mode.
|
* (client) [\#5303](https://github.com/cosmos/cosmos-sdk/issues/5303) Fix ignored error in tx generate only mode.
|
||||||
* (cli) [\#4763](https://github.com/cosmos/cosmos-sdk/issues/4763) Fix flag `--min-self-delegation` for staking `EditValidator`
|
* (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.
|
* (keys) Fix ledger custom coin type support bug.
|
||||||
* (x/gov) [\#5107](https://github.com/cosmos/cosmos-sdk/pull/5107) Sum validator operator's all voting power when tally votes
|
* (x/gov) [\#5107](https://github.com/cosmos/cosmos-sdk/pull/5107) Sum validator operator's all voting power when tally votes
|
||||||
* (rest) [\#5212](https://github.com/cosmos/cosmos-sdk/issues/5212) Fix pagination in the `/gov/proposals` handler.
|
* (rest) [\#5212](https://github.com/cosmos/cosmos-sdk/issues/5212) Fix pagination in the `/gov/proposals` handler.
|
||||||
|
|
||||||
|
## [v0.37.8] - 2020-03-11
|
||||||
|
|
||||||
|
### Bug Fixes
|
||||||
|
|
||||||
|
* (rest) [\#5508](https://github.com/cosmos/cosmos-sdk/pull/5508) Fix `x/distribution` endpoints to properly return height in the response.
|
||||||
|
* (x/genutil) [\#5499](https://github.com/cosmos/cosmos-sdk/pull/) Ensure `DefaultGenesis` returns valid and non-nil default genesis state.
|
||||||
|
* (x/genutil) [\#5775](https://github.com/cosmos/cosmos-sdk/pull/5775) Fix `ExportGenesis` in `x/genutil` to export default genesis state (`[]`) instead of `null`.
|
||||||
|
* (genesis) [\#5086](https://github.com/cosmos/cosmos-sdk/issues/5086) Ensure `gentxs` are always an empty array instead of `nil`.
|
||||||
|
|
||||||
|
### Improvements
|
||||||
|
|
||||||
|
* (rest) [\#5648](https://github.com/cosmos/cosmos-sdk/pull/5648) Enhance /txs usability:
|
||||||
|
* Add `tx.minheight` key to filter transaction with an inclusive minimum block height
|
||||||
|
* Add `tx.maxheight` key to filter transaction with an inclusive maximum block height
|
||||||
|
|
||||||
## [v0.37.7] - 2020-02-10
|
## [v0.37.7] - 2020-02-10
|
||||||
|
|
||||||
### Improvements
|
### Improvements
|
||||||
|
@ -3024,6 +3032,7 @@ BUG FIXES:
|
||||||
[Unreleased]: https://github.com/cosmos/cosmos-sdk/compare/v0.38.1...HEAD
|
[Unreleased]: https://github.com/cosmos/cosmos-sdk/compare/v0.38.1...HEAD
|
||||||
[v0.38.1]: https://github.com/cosmos/cosmos-sdk/releases/tag/v0.38.1
|
[v0.38.1]: https://github.com/cosmos/cosmos-sdk/releases/tag/v0.38.1
|
||||||
[v0.38.0]: https://github.com/cosmos/cosmos-sdk/releases/tag/v0.38.0
|
[v0.38.0]: https://github.com/cosmos/cosmos-sdk/releases/tag/v0.38.0
|
||||||
|
[v0.37.8]: https://github.com/cosmos/cosmos-sdk/releases/tag/v0.37.8
|
||||||
[v0.37.7]: https://github.com/cosmos/cosmos-sdk/releases/tag/v0.37.7
|
[v0.37.7]: https://github.com/cosmos/cosmos-sdk/releases/tag/v0.37.7
|
||||||
[v0.37.6]: https://github.com/cosmos/cosmos-sdk/releases/tag/v0.37.6
|
[v0.37.6]: https://github.com/cosmos/cosmos-sdk/releases/tag/v0.37.6
|
||||||
[v0.37.5]: https://github.com/cosmos/cosmos-sdk/releases/tag/v0.37.5
|
[v0.37.5]: https://github.com/cosmos/cosmos-sdk/releases/tag/v0.37.5
|
||||||
|
|
Loading…
Reference in New Issue