Update changelog for 0.18.0 (#1149)
This commit is contained in:
parent
e0e50fce50
commit
af15f89531
72
CHANGELOG.md
72
CHANGELOG.md
|
@ -1,49 +1,8 @@
|
|||
# Changelog
|
||||
|
||||
## Pending
|
||||
|
||||
BREAKING CHANGES
|
||||
* [cli] rearranged commands under subcommands
|
||||
* [stake] remove Tick and add EndBlocker
|
||||
|
||||
FEATURES
|
||||
|
||||
IMPROVEMENTS
|
||||
* bank module uses go-wire codec instead of 'encoding/json'
|
||||
* auth module uses go-wire codec instead of 'encoding/json'
|
||||
* revised use of endblock and beginblock
|
||||
|
||||
FIXES
|
||||
* [cli] fixed cli-bash tests
|
||||
* [ci] added cli-bash tests
|
||||
* [basecoin] updated basecoin for stake and slashing
|
||||
* [docs] fixed references to old cli commands
|
||||
|
||||
## 0.18.1
|
||||
|
||||
BREAKING CHANGES
|
||||
|
||||
* [x/auth] move stuff specific to auth anteHandler to the auth module rather than the types folder. This includes:
|
||||
* StdTx (and its related stuff i.e. StdSignDoc, etc)
|
||||
* StdFee
|
||||
* StdSignature
|
||||
* Account interface
|
||||
* Related to this organization, I also:
|
||||
* [x/auth] got rid of AccountMapper interface (in favor of the struct already in auth module)
|
||||
* [x/auth] removed the FeeHandler function from the AnteHandler, Replaced with FeeKeeper
|
||||
* [x/auth] Removed GetSignatures() from Tx interface (as different Tx styles might use something different than StdSignature)
|
||||
* [store] Removed SubspaceIterator and ReverseSubspaceIterator from KVStore interface and replaced them with helper functions in /types
|
||||
* Switch to bech32cosmos on all human readable inputs and outputs
|
||||
|
||||
BUG FIXES
|
||||
|
||||
* auto-sequencing transactions correctly
|
||||
* query sequence via account store
|
||||
* fixed duplicate pub_key in stake.Validator
|
||||
|
||||
## 0.18.0
|
||||
|
||||
_TBD_
|
||||
_2018-06-05_
|
||||
|
||||
BREAKING CHANGES
|
||||
|
||||
|
@ -62,6 +21,20 @@ BREAKING CHANGES
|
|||
* Introduction of Unbonding fields, lowlevel logic throughout (not fully implemented with queue)
|
||||
* Introduction of PoolShares type within validators,
|
||||
replaces three rational fields (BondedShares, UnbondingShares, UnbondedShares
|
||||
* [x/auth] move stuff specific to auth anteHandler to the auth module rather than the types folder. This includes:
|
||||
* StdTx (and its related stuff i.e. StdSignDoc, etc)
|
||||
* StdFee
|
||||
* StdSignature
|
||||
* Account interface
|
||||
* Related to this organization, I also:
|
||||
* [x/auth] got rid of AccountMapper interface (in favor of the struct already in auth module)
|
||||
* [x/auth] removed the FeeHandler function from the AnteHandler, Replaced with FeeKeeper
|
||||
* [x/auth] Removed GetSignatures() from Tx interface (as different Tx styles might use something different than StdSignature)
|
||||
* [store] Removed SubspaceIterator and ReverseSubspaceIterator from KVStore interface and replaced them with helper functions in /types
|
||||
* [cli] rearranged commands under subcommands
|
||||
* [stake] remove Tick and add EndBlocker
|
||||
* Switch to bech32cosmos on all human readable inputs and outputs
|
||||
|
||||
|
||||
FEATURES
|
||||
|
||||
|
@ -78,12 +51,22 @@ FEATURES
|
|||
* [stake] Added REST API
|
||||
* [Makefile] Added terraform/ansible playbooks to easily create remote testnets on Digital Ocean
|
||||
|
||||
|
||||
BUG FIXES
|
||||
|
||||
* Auto-sequencing now works correctly
|
||||
* [stake] staking delegator shares exchange rate now relative to equivalent-bonded-tokens the validator has instead of bonded tokens
|
||||
^ this is important for unbonded validators in the power store!
|
||||
* [cli] fixed cli-bash tests
|
||||
* [ci] added cli-bash tests
|
||||
* [basecoin] updated basecoin for stake and slashing
|
||||
* [docs] fixed references to old cli commands
|
||||
* [docs] Downgraded Swagger to v2 for downstream compatibility
|
||||
* auto-sequencing transactions correctly
|
||||
* query sequence via account store
|
||||
* fixed duplicate pub_key in stake.Validator
|
||||
* Auto-sequencing now works correctly
|
||||
|
||||
|
||||
|
||||
## 0.17.2
|
||||
|
||||
|
@ -123,6 +106,7 @@ BUG FIXES
|
|||
|
||||
* Auto-sequencing now works correctly
|
||||
|
||||
|
||||
## 0.16.0 (May 14th, 2018)
|
||||
|
||||
BREAKING CHANGES
|
||||
|
@ -157,12 +141,14 @@ BUG FIXES
|
|||
|
||||
* Gaia now uses stake, ported from github.com/cosmos/gaia
|
||||
|
||||
|
||||
## 0.15.1 (April 29, 2018)
|
||||
|
||||
IMPROVEMENTS:
|
||||
|
||||
* Update Tendermint to v0.19.1 (includes many rpc fixes)
|
||||
|
||||
|
||||
## 0.15.0 (April 29, 2018)
|
||||
|
||||
NOTE: v0.15.0 is a large breaking change that updates the encoding scheme to use
|
||||
|
|
Loading…
Reference in New Issue