Merge branch 'master' into bez/tx-client-proto-i
This commit is contained in:
commit
e4857898c0
35
CHANGELOG.md
35
CHANGELOG.md
|
@ -82,14 +82,8 @@ to now accept a `codec.JSONMarshaler` for modular serialization of genesis state
|
|||
|
||||
### Bug Fixes
|
||||
|
||||
* (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`.
|
||||
* (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.
|
||||
* (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.
|
||||
* (crypto/keys/mintkey) [\#5823](https://github.com/cosmos/cosmos-sdk/pull/5823) fix errors handling in UnarmorPubKeyBytes (underlying armoring function's
|
||||
return error was not being checked).
|
||||
* (crypto/keys) [\#5844](https://github.com/cosmos/cosmos-sdk/pull/5844) Keybase/Keyring `Sign()` methods no longer decode amino signatures
|
||||
when method receivers are offline/multisig keys.
|
||||
|
||||
|
@ -175,13 +169,29 @@ Buffers for state serialization instead of Amino.
|
|||
* Added `CapabilityKey` alias for `StoreKey` to match IBC spec.
|
||||
* (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.
|
||||
* (crypto/keys) [\#5739](https://github.com/cosmos/cosmos-sdk/pull/5739) Print an error message if the password input failed.
|
||||
* (client) [\#5810](https://github.com/cosmos/cosmos-sdk/pull/5810) Added a new `--offline` flag that allows commands to
|
||||
be executed without an internet connection. Previously, `--generate-only` served this purpose in addition to only allowing
|
||||
txs to be generated. Now, `--generate-only` solely allows txs to be generated without being broadcasted and disallows
|
||||
Keybase use and `--offline` allows the use of Keybase but does not allow any functionality that requires an online connection.
|
||||
* (client) [\#5810](https://github.com/cosmos/cosmos-sdk/pull/5810) Added a new `--offline` flag that allows commands to be executed without an
|
||||
internet connection. Previously, `--generate-only` served this purpose in addition to only allowing txs to be generated. Now, `--generate-only` solely
|
||||
allows txs to be generated without being broadcasted and disallows Keybase use and `--offline` allows the use of Keybase but does not allow any
|
||||
functionality that requires an online connection.
|
||||
* (types/module) [\#5724](https://github.com/cosmos/cosmos-sdk/issues/5724) The `types/module` package does no longer depend on `x/simulation`.
|
||||
|
||||
## [v0.38.2] - 2020-03-25
|
||||
|
||||
### Bug Fixes
|
||||
|
||||
* (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`.
|
||||
* (x/genutil) [\#5775](https://github.com/cosmos/cosmos-sdk/pull/5775) Fix `ExportGenesis` in `x/genutil` to export default genesis state (`[]`) instead of `null`.
|
||||
* (client) [\#5618](https://github.com/cosmos/cosmos-sdk/pull/5618) Fix crash on the client when the verifier is not set.
|
||||
* (crypto/keys/mintkey) [\#5823](https://github.com/cosmos/cosmos-sdk/pull/5823) fix errors handling in `UnarmorPubKeyBytes` (underlying armoring function's return error was not being checked).
|
||||
* (x/distribution) [\#5620](https://github.com/cosmos/cosmos-sdk/pull/5620) Fix nil pointer deref in distribution tax/reward validation helpers.
|
||||
|
||||
### 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
|
||||
* (crypto/keys) [\#5739](https://github.com/cosmos/cosmos-sdk/pull/5739) Print an error message if the password input failed.
|
||||
|
||||
## [v0.38.1] - 2020-02-11
|
||||
|
||||
### Improvements
|
||||
|
@ -3051,7 +3061,8 @@ BUG FIXES:
|
|||
|
||||
<!-- Release links -->
|
||||
|
||||
[Unreleased]: https://github.com/cosmos/cosmos-sdk/compare/v0.38.1...HEAD
|
||||
[Unreleased]: https://github.com/cosmos/cosmos-sdk/compare/v0.38.2...HEAD
|
||||
[v0.38.2]: https://github.com/cosmos/cosmos-sdk/releases/tag/v0.38.2
|
||||
[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.37.8]: https://github.com/cosmos/cosmos-sdk/releases/tag/v0.37.8
|
||||
|
|
Loading…
Reference in New Issue