cosmos-sdk/PENDING.md

98 lines
2.6 KiB
Markdown
Raw Normal View History

# PENDING CHANGELOG
<!----------------------------- BREAKING CHANGES ----------------------------->
## BREAKING CHANGES
2019-02-08 17:19:42 -08:00
### Gaia REST API
2018-08-12 17:10:59 -07:00
* [\#3641] Remove the ability to use a Keybase from the REST API client:
* `password` and `generate_only` have been removed from the `base_req` object
* All txs that used to sign or use the Keybase now only generate the tx
* `keys` routes completely removed
* [\#3692] Update tx encoding and broadcasting endpoints:
* Remove duplicate broadcasting endpoints in favor of POST @ `/txs`
* The `Tx` field now accepts a `StdTx` and not raw tx bytes
* Move encoding endpoint to `/txs/encode`
### Gaia CLI
### Gaia
2019-02-08 15:54:40 -08:00
### SDK
2018-08-13 07:47:44 -07:00
* [\#3669] Ensure consistency in message naming, codec registration, and JSON
tags.
### Tendermint
2019-02-15 08:02:38 -08:00
<!--------------------------------- FEATURES --------------------------------->
2018-08-13 07:42:47 -07:00
## FEATURES
2018-08-13 07:42:47 -07:00
### Gaia REST API
2018-11-13 06:55:22 -08:00
### Gaia CLI
2018-12-18 13:43:41 -08:00
### Gaia
2018-08-13 07:47:44 -07:00
### SDK
2018-08-13 07:47:44 -07:00
### Tendermint
<!------------------------------- IMPROVEMENTS ------------------------------->
2018-08-13 07:42:47 -07:00
## IMPROVEMENTS
2019-02-08 17:19:42 -08:00
### Gaia REST API
2018-08-13 07:47:44 -07:00
* Update the `TxResponse` type allowing for the `Logs` result to be JSON
decoded automatically.
### Gaia CLI
2018-11-16 09:12:24 -08:00
* [\#3653] Prompt user confirmation prior to signing and broadcasting a transaction.
* [\#3670] CLI support for showing bech32 addresses in Ledger devices
* [\#3711] Update `tx sign` to use `--from` instead of the deprecated `--name`
CLI flag.
### Gaia
2019-02-13 06:26:43 -08:00
### SDK
2019-02-15 08:02:38 -08:00
* \#3679 Consistent operators across Coins, DecCoins, Int, Dec
replaced: Minus->Sub Plus->Add Div->Quo
* [\#3665] Overhaul sdk.Uint type in preparation for Coins Int -> Uint migration.
* \#3691 Cleanup error messages
* \#3456 Integrate in the Int.ToDec() convenience function
* [\#3300] Update the spec-spec, spec file reorg, and TOC updates.
2019-02-25 07:53:26 -08:00
* [\#3694] Push tagged docker images on docker hub when tag is created.
2019-02-19 14:59:03 -08:00
### Tendermint
2018-10-24 06:38:34 -07:00
* [\#3699] Upgrade to Tendermint 0.30.1
<!--------------------------------- BUG FIXES -------------------------------->
2018-08-13 07:42:47 -07:00
## BUG FIXES
2018-08-13 07:47:44 -07:00
### Gaia REST API
### Gaia CLI
* [\#3731](https://github.com/cosmos/cosmos-sdk/pull/3731) `keys add --interactive` bip32 passphrase regression fix
### Gaia
2018-11-13 06:55:22 -08:00
### SDK
* \#3728 Truncate decimal multiplication & division in distribution to ensure
no more than the collected fees / inflation are distributed
* \#3727 Return on zero-length (including []byte{}) PrefixEndBytes() calls
* \#3559 fix occasional failing due to non-determinism in lcd test TestBonding
where validator is unexpectedly slashed throwing off test calculations
* [\#3411] Include the `RequestInitChain.Time` in the block header init during
`InitChain`.
### Tendermint