2017-03-06 02:11:27 -08:00
|
|
|
# Changelog
|
|
|
|
|
2018-06-13 01:34:51 -07:00
|
|
|
## 0.20.0
|
|
|
|
|
2018-06-16 00:49:55 -07:00
|
|
|
*TBD*
|
2018-06-13 01:34:51 -07:00
|
|
|
|
2018-06-13 15:13:51 -07:00
|
|
|
BREAKING CHANGES
|
2018-07-05 18:37:55 -07:00
|
|
|
* msg.GetSignBytes() returns sorted JSON (by key)
|
2018-07-06 16:26:22 -07:00
|
|
|
* msg.GetSignBytes() field changes
|
|
|
|
* `msg_bytes` -> `msgs`
|
|
|
|
* `fee_bytes` -> `fee`
|
2018-07-02 13:46:35 -07:00
|
|
|
* Update Tendermint to v0.22.0
|
|
|
|
* Default ports changed from 466xx to 266xx
|
|
|
|
* Amino JSON uses type names instead of prefix bytes
|
|
|
|
* ED25519 addresses are the first 20-bytes of the SHA256 of the raw 32-byte
|
2018-07-09 19:04:24 -07:00
|
|
|
pubkey (Instead of RIPEMD160)
|
2018-07-02 13:46:35 -07:00
|
|
|
* go-crypto, abci, tmlibs have been merged into Tendermint
|
2018-07-09 19:04:24 -07:00
|
|
|
* The keys sub-module is now in the SDK
|
2018-07-02 13:46:35 -07:00
|
|
|
* Various other fixes
|
|
|
|
* [auth] Signers of a transaction now only sign over their own account and sequence number
|
2018-07-01 09:14:28 -07:00
|
|
|
* [auth] Removed MsgChangePubKey
|
|
|
|
* [auth] Removed SetPubKey from account mapper
|
2018-07-02 13:46:35 -07:00
|
|
|
* [auth] AltBytes renamed to Memo, now a string, max 100 characters, costs a bit of gas
|
|
|
|
* [types] `GetMsg()` -> `GetMsgs()` as txs wrap many messages
|
2018-07-01 09:14:28 -07:00
|
|
|
* [types] Removed GetMemo from Tx (it is still on StdTx)
|
2018-07-02 13:46:35 -07:00
|
|
|
* [types] renamed rational.Evaluate to rational.Round{Int64, Int}
|
2018-07-09 21:17:26 -07:00
|
|
|
* [types] Renamed `sdk.Address` to `sdk.AccAddress`/`sdk.ValAddress`
|
|
|
|
* [types] `sdk.AccAddress`/`sdk.ValAddress` natively marshals to Bech32 in String, Sprintf (when used with `%s`), and MarshalJSON
|
2018-07-01 09:14:28 -07:00
|
|
|
* [keys] Keybase and Ledger support from go-crypto merged into the SDK in the `crypto` folder
|
|
|
|
* [cli] Rearranged commands under subcommands
|
2018-07-02 13:46:35 -07:00
|
|
|
* [x/slashing] Update slashing for unbonding period
|
2018-06-29 20:34:55 -07:00
|
|
|
* Slash according to power at time of infraction instead of power at
|
|
|
|
time of discovery
|
|
|
|
* Iterate through unbonding delegations & redelegations which contributed
|
|
|
|
to an infraction, slash them proportional to their stake at the time
|
|
|
|
* Add REST endpoint to unrevoke a validator previously revoked for downtime
|
|
|
|
* Add REST endpoint to retrieve liveness signing information for a validator
|
2018-07-09 19:04:24 -07:00
|
|
|
* [x/stake] Remove Tick and add EndBlocker
|
2018-07-04 11:34:55 -07:00
|
|
|
* [x/stake] most index keys nolonger hold a value - inputs are rearranged to form the desired key
|
|
|
|
* [x/stake] store-value for delegation, validator, ubd, and red do not hold duplicate information contained store-key
|
2018-07-09 19:04:24 -07:00
|
|
|
* [x/stake] Introduce concept of unbonding for delegations and validators
|
|
|
|
* `gaiacli stake unbond` replaced with `gaiacli stake begin-unbonding`
|
|
|
|
* Introduced:
|
|
|
|
* `gaiacli stake complete-unbonding`
|
|
|
|
* `gaiacli stake begin-redelegation`
|
|
|
|
* `gaiacli stake complete-redelegation`
|
|
|
|
* [lcd] Switch key creation output to return bech32
|
2018-07-09 11:52:24 -07:00
|
|
|
* [lcd] Removed shorthand CLI flags (`a`, `c`, `n`, `o`)
|
2018-07-09 19:04:24 -07:00
|
|
|
* [gaiad] genesis transactions now use bech32 addresses / pubkeys
|
2018-06-20 12:27:36 -07:00
|
|
|
|
2018-07-05 17:07:03 -07:00
|
|
|
DEPRECATED
|
2018-07-09 19:04:24 -07:00
|
|
|
* [cli] Deprecated `--name` flag in commands that send txs, in favor of `--from`
|
2018-07-05 17:07:03 -07:00
|
|
|
|
2018-06-20 12:27:36 -07:00
|
|
|
FEATURES
|
2018-07-02 13:46:35 -07:00
|
|
|
* [x/gov] Implemented MVP
|
2018-06-21 17:19:14 -07:00
|
|
|
* Supported proposal types: just binary (pass/fail) TextProposals for now
|
|
|
|
* Proposals need deposits to be votable; deposits are burned if proposal fails
|
|
|
|
* Delegators delegate votes to validator by default but can override (for their stake)
|
2018-07-09 19:04:24 -07:00
|
|
|
* [gaiacli] Ledger support added
|
|
|
|
- You can now use a Ledger with `gaiacli --ledger` for all key-related commands
|
|
|
|
- Ledger keys can be named and tracked locally in the key DB
|
|
|
|
* [gaiacli] You can now attach a simple text-only memo to any transaction, with the `--memo` flag
|
|
|
|
* [gaiacli] added the following flags for commands that post transactions to the chain:
|
|
|
|
* async -- send the tx without waiting for a tendermint response
|
|
|
|
* json -- return the output in json format for increased readability
|
|
|
|
* print-response -- return the tx response. (includes fields like gas cost)
|
|
|
|
* [lcd] Queried TXs now include the tx hash to identify each tx
|
|
|
|
* [mockapp] CompleteSetup() no longer takes a testing parameter
|
|
|
|
* [x/bank] Add benchmarks for signing and delivering a block with a single bank transaction
|
2018-06-27 15:33:56 -07:00
|
|
|
* Run with `cd x/bank && go test --bench=.`
|
2018-06-22 11:01:44 -07:00
|
|
|
* [tools] make get_tools installs tendermint's linter, and gometalinter
|
2018-06-22 13:08:50 -07:00
|
|
|
* [tools] Switch gometalinter to the stable version
|
2018-06-27 17:32:06 -07:00
|
|
|
* [tools] Add the following linters
|
|
|
|
* misspell
|
|
|
|
* gofmt
|
|
|
|
* go vet -composites=false
|
2018-06-28 09:08:29 -07:00
|
|
|
* unconvert
|
2018-06-28 10:12:02 -07:00
|
|
|
* ineffassign
|
2018-06-28 15:52:10 -07:00
|
|
|
* errcheck
|
2018-06-29 15:22:24 -07:00
|
|
|
* unparam
|
2018-07-07 18:59:06 -07:00
|
|
|
* gocyclo
|
2018-07-09 19:04:24 -07:00
|
|
|
* [tools] Added `make format` command to automate fixing misspell and gofmt errors.
|
2018-06-25 09:33:07 -07:00
|
|
|
* [server] Default config now creates a profiler at port 6060, and increase p2p send/recv rates
|
2018-06-26 18:10:34 -07:00
|
|
|
* [types] Switches internal representation of Int/Uint/Rat to use pointers
|
2018-07-09 19:04:24 -07:00
|
|
|
* [types] Added MinInt and MinUint functions
|
2018-07-02 13:46:35 -07:00
|
|
|
* [gaiad] `unsafe_reset_all` now resets addrbook.json
|
2018-06-27 10:21:12 -07:00
|
|
|
* [democoin] add x/oracle, x/assoc
|
2018-07-09 19:04:24 -07:00
|
|
|
* [tests] created a randomized testing framework.
|
2018-07-06 13:19:11 -07:00
|
|
|
- Currently bank has limited functionality in the framework
|
|
|
|
- Auth has its invariants checked within the framework
|
2018-07-09 19:04:24 -07:00
|
|
|
* [tests] Add WaitForNextNBlocksTM helper method
|
|
|
|
* [keys] New keys now have 24 word recovery keys, for heightened security
|
2018-05-28 11:26:43 -07:00
|
|
|
|
2018-07-01 09:14:28 -07:00
|
|
|
IMPROVEMENTS
|
2018-07-09 19:04:24 -07:00
|
|
|
* [x/bank] Now uses go-wire codec instead of 'encoding/json'
|
|
|
|
* [x/auth] Now uses go-wire codec instead of 'encoding/json'
|
2018-07-01 09:14:28 -07:00
|
|
|
* revised use of endblock and beginblock
|
|
|
|
* [stake] module reorganized to include `types` and `keeper` package
|
|
|
|
* [stake] keeper always loads the store (instead passing around which doesn't really boost efficiency)
|
|
|
|
* [stake] edit-validator changes now can use the keyword [do-not-modify] to not modify unspecified `--flag` (aka won't set them to `""` value)
|
|
|
|
* [stake] offload more generic functionality from the handler into the keeper
|
2018-07-10 11:25:56 -07:00
|
|
|
* [stake] clearer staking logic
|
2018-07-05 18:03:41 -07:00
|
|
|
* [types] added common tag constants
|
|
|
|
* [keys] improve error message when deleting non-existent key
|
2018-07-05 20:42:41 -07:00
|
|
|
* [gaiacli] improve error messages on `send` and `account` commands
|
2018-07-01 09:14:28 -07:00
|
|
|
* added contributing guidelines
|
|
|
|
|
|
|
|
BUG FIXES
|
2018-07-02 22:47:40 -07:00
|
|
|
* [x/slashing] \#1510 Unrevoked validators cannot un-revoke themselves
|
2018-07-05 11:26:50 -07:00
|
|
|
* [x/stake] \#1513 Validators slashed to zero power are unbonded and removed from the store
|
2018-07-06 15:00:00 -07:00
|
|
|
* [x/stake] \#1567 Validators decreased in power but not unbonded are now updated in Tendermint
|
2018-07-09 19:04:24 -07:00
|
|
|
* [x/stake] error strings lower case
|
|
|
|
* [x/stake] pool loose tokens now accounts for unbonding and unbonding tokens not associated with any validator
|
|
|
|
* [x/stake] fix revoke bytes ordering (was putting revoked candidates at the top of the list)
|
|
|
|
* [x/stake] bond count was counting revoked validators as bonded, fixed
|
2018-06-26 19:00:12 -07:00
|
|
|
* [gaia] Added self delegation for validators in the genesis creation
|
|
|
|
* [lcd] tests now don't depend on raw json text
|
2018-06-19 15:29:54 -07:00
|
|
|
* Retry on HTTP request failure in CLI tests, add option to retry tests in Makefile
|
2018-06-26 14:45:31 -07:00
|
|
|
* Fixed bug where chain ID wasn't passed properly in x/bank REST handler, removed Viper hack from ante handler
|
2018-06-22 11:50:36 -07:00
|
|
|
* Fixed bug where `democli account` didn't decode the account data correctly
|
2018-07-09 19:04:24 -07:00
|
|
|
* \#872 - recovery phrases no longer all end in `abandon`
|
|
|
|
* \#887 - limit the size of rationals that can be passed in from user input
|
|
|
|
* \#1052 - Make all now works
|
|
|
|
* \#1258 - printing big.rat's can no longer overflow int64
|
|
|
|
* \#1259 - fix bug where certain tests that could have a nil pointer in defer
|
2018-06-22 13:58:48 -07:00
|
|
|
* \#1343 - fixed unnecessary parallelism in CI
|
2018-06-26 10:26:12 -07:00
|
|
|
* \#1353 - CLI: Show pool shares fractions in human-readable format
|
2018-07-09 19:04:24 -07:00
|
|
|
* \#1367 - set ChainID in InitChain
|
2018-07-03 23:25:31 -07:00
|
|
|
* \#1461 - CLI tests now no longer reset your local environment data
|
2018-07-05 18:24:00 -07:00
|
|
|
* \#1505 - `gaiacli stake validator` no longer panics if validator doesn't exist
|
2018-07-06 17:04:01 -07:00
|
|
|
* \#1565 - fix cliff validator persisting when validator set shrinks from max
|
2018-07-09 17:42:57 -07:00
|
|
|
* \#1010 - two validators can't bond with the same pubkey anymore
|
2018-06-16 00:49:55 -07:00
|
|
|
|
2018-06-13 01:05:50 -07:00
|
|
|
## 0.19.0
|
|
|
|
|
|
|
|
*June 13, 2018*
|
|
|
|
|
2018-06-05 21:53:04 -07:00
|
|
|
BREAKING CHANGES
|
2018-06-12 11:51:04 -07:00
|
|
|
* msg.GetSignBytes() now returns bech32-encoded addresses in all cases
|
|
|
|
* [lcd] REST end-points now include gas
|
2018-06-15 14:16:45 -07:00
|
|
|
* sdk.Coin now uses sdk.Int, a big.Int wrapper with 256bit range cap
|
2018-06-05 21:53:04 -07:00
|
|
|
|
2018-06-06 09:38:13 -07:00
|
|
|
FEATURES
|
2018-06-11 19:30:54 -07:00
|
|
|
* [x/auth] Added AccountNumbers to BaseAccount and StdTxs to allow for replay protection with account pruning
|
2018-06-13 22:49:21 -07:00
|
|
|
* [lcd] added an endpoint to query for the SDK version of the connected node
|
2018-06-06 09:38:13 -07:00
|
|
|
|
|
|
|
IMPROVEMENTS
|
2018-06-12 11:51:04 -07:00
|
|
|
* export command now writes current validator set for Tendermint
|
|
|
|
* [tests] Application module tests now use a mock application
|
|
|
|
* [gaiacli] Fix error message when account isn't found when running gaiacli account
|
|
|
|
* [lcd] refactored to eliminate use of global variables, and interdependent tests
|
2018-06-13 17:30:16 -07:00
|
|
|
* [tests] Added testnet command to gaiad
|
|
|
|
* [tests] Added localnet targets to Makefile
|
2018-06-13 00:12:57 -07:00
|
|
|
* [x/stake] More stake tests added to test ByPower index
|
2018-06-06 09:38:13 -07:00
|
|
|
|
|
|
|
FIXES
|
2018-06-13 01:05:50 -07:00
|
|
|
* Fixes consensus fault on testnet - see postmortem [here](https://github.com/cosmos/cosmos-sdk/issues/1197#issuecomment-396823021)
|
2018-06-13 15:13:51 -07:00
|
|
|
* [x/stake] bonded inflation removed, non-bonded inflation partially implemented
|
2018-06-12 11:51:04 -07:00
|
|
|
* [lcd] Switch to bech32 for addresses on all human readable inputs and outputs
|
|
|
|
* [lcd] fixed tx indexing/querying
|
|
|
|
* [cli] Added `--gas` flag to specify transaction gas limit
|
|
|
|
* [gaia] Registered slashing message handler
|
|
|
|
* [x/slashing] Set signInfo.StartHeight correctly for newly bonded validators
|
2018-06-05 21:53:04 -07:00
|
|
|
|
2018-05-30 12:04:14 -07:00
|
|
|
FEATURES
|
|
|
|
* [docs] Reorganize documentation
|
|
|
|
* [docs] Update staking spec, create WIP spec for slashing, and fees
|
2018-05-20 14:12:14 -07:00
|
|
|
|
2018-06-16 00:49:55 -07:00
|
|
|
## 0.18.0
|
2018-05-20 14:12:14 -07:00
|
|
|
|
2018-06-09 09:32:59 -07:00
|
|
|
*June 9, 2018*
|
2018-05-15 19:30:20 -07:00
|
|
|
|
2018-05-03 10:38:02 -07:00
|
|
|
BREAKING CHANGES
|
|
|
|
|
2018-05-17 08:12:28 -07:00
|
|
|
* [stake] candidate -> validator throughout (details in refactor comment)
|
|
|
|
* [stake] delegate-bond -> delegation throughout
|
|
|
|
* [stake] `gaiacli query validator` takes and argument instead of using the `--address-candidate` flag
|
2018-05-24 18:33:08 -07:00
|
|
|
* [stake] introduce `gaiacli query delegations`
|
2018-05-17 08:12:28 -07:00
|
|
|
* [stake] staking refactor
|
2018-05-24 18:33:08 -07:00
|
|
|
* ValidatorsBonded store now take sorted pubKey-address instead of validator owner-address,
|
2018-05-17 08:12:28 -07:00
|
|
|
is sorted like Tendermint by pk's address
|
2018-05-10 16:02:35 -07:00
|
|
|
* store names more understandable
|
2018-05-24 18:33:08 -07:00
|
|
|
* removed temporary ToKick store, just needs a local map!
|
2018-05-10 16:02:35 -07:00
|
|
|
* removed distinction between candidates and validators
|
|
|
|
* everything is now a validator
|
|
|
|
* only validators with a status == bonded are actively validating/receiving rewards
|
2018-05-17 08:12:28 -07:00
|
|
|
* Introduction of Unbonding fields, lowlevel logic throughout (not fully implemented with queue)
|
2018-05-24 18:33:08 -07:00
|
|
|
* Introduction of PoolShares type within validators,
|
2018-05-17 08:12:28 -07:00
|
|
|
replaces three rational fields (BondedShares, UnbondingShares, UnbondedShares
|
2018-06-12 11:51:04 -07:00
|
|
|
* [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
|
|
|
|
|
2018-05-03 10:38:02 -07:00
|
|
|
|
2018-05-15 19:30:20 -07:00
|
|
|
FEATURES
|
|
|
|
|
|
|
|
* [x/auth] Added ability to change pubkey to auth module
|
|
|
|
* [baseapp] baseapp now has settable functions for filtering peers by address/port & public key
|
|
|
|
* [sdk] Gas consumption is now measured as transactions are executed
|
|
|
|
* Transactions which run out of gas stop execution and revert state changes
|
|
|
|
* A "simulate" query has been added to determine how much gas a transaction will need
|
|
|
|
* Modules can include their own gas costs for execution of particular message types
|
2018-05-17 08:12:28 -07:00
|
|
|
* [stake] Seperation of fee distribution to a new module
|
|
|
|
* [stake] Creation of a validator/delegation generics in `/types`
|
|
|
|
* [stake] Helper Description of the store in x/stake/store.md
|
2018-05-17 13:03:35 -07:00
|
|
|
* [stake] removed use of caches in the stake keeper
|
2018-05-19 23:16:07 -07:00
|
|
|
* [stake] Added REST API
|
2018-05-23 09:39:39 -07:00
|
|
|
* [Makefile] Added terraform/ansible playbooks to easily create remote testnets on Digital Ocean
|
2018-05-15 19:30:20 -07:00
|
|
|
|
2018-06-12 11:51:04 -07:00
|
|
|
|
2018-05-24 18:33:08 -07:00
|
|
|
BUG FIXES
|
2018-05-12 15:22:59 -07:00
|
|
|
|
2018-05-17 08:12:28 -07:00
|
|
|
* [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!
|
2018-06-12 11:51:04 -07:00
|
|
|
* [cli] fixed cli-bash tests
|
|
|
|
* [ci] added cli-bash tests
|
|
|
|
* [basecoin] updated basecoin for stake and slashing
|
|
|
|
* [docs] fixed references to old cli commands
|
2018-05-24 09:04:10 -07:00
|
|
|
* [docs] Downgraded Swagger to v2 for downstream compatibility
|
2018-06-12 11:51:04 -07:00
|
|
|
* auto-sequencing transactions correctly
|
|
|
|
* query sequence via account store
|
|
|
|
* fixed duplicate pub_key in stake.Validator
|
|
|
|
* Auto-sequencing now works correctly
|
2018-06-08 23:40:22 -07:00
|
|
|
* [gaiacli] Fix error message when account isn't found when running gaiacli account
|
2018-06-05 21:34:19 -07:00
|
|
|
|
2018-05-15 19:30:20 -07:00
|
|
|
|
2018-06-12 22:40:54 -07:00
|
|
|
## 0.17.5
|
|
|
|
|
|
|
|
*June 5, 2018*
|
|
|
|
|
|
|
|
Update to Tendermint v0.19.9 (Fix evidence reactor, mempool deadlock, WAL panic,
|
|
|
|
memory leak)
|
|
|
|
|
|
|
|
## 0.17.4
|
|
|
|
|
|
|
|
*May 31, 2018*
|
|
|
|
|
|
|
|
Update to Tendermint v0.19.7 (WAL fixes and more)
|
|
|
|
|
|
|
|
## 0.17.3
|
2018-06-12 11:51:04 -07:00
|
|
|
|
2018-06-12 22:40:54 -07:00
|
|
|
*May 29, 2018*
|
2018-06-12 11:51:04 -07:00
|
|
|
|
2018-06-12 22:40:54 -07:00
|
|
|
Update to Tendermint v0.19.6 (fix fast-sync halt)
|
2018-06-12 11:51:04 -07:00
|
|
|
|
|
|
|
## 0.17.5
|
|
|
|
|
|
|
|
*June 5, 2018*
|
|
|
|
|
|
|
|
Update to Tendermint v0.19.9 (Fix evidence reactor, mempool deadlock, WAL panic,
|
|
|
|
memory leak)
|
|
|
|
|
|
|
|
## 0.17.4
|
|
|
|
|
|
|
|
*May 31, 2018*
|
|
|
|
|
|
|
|
Update to Tendermint v0.19.7 (WAL fixes and more)
|
|
|
|
|
|
|
|
## 0.17.3
|
|
|
|
|
|
|
|
*May 29, 2018*
|
|
|
|
|
|
|
|
Update to Tendermint v0.19.6 (fix fast-sync halt)
|
2018-06-08 21:34:27 -07:00
|
|
|
|
2018-05-20 07:35:19 -07:00
|
|
|
## 0.17.2
|
|
|
|
|
2018-05-24 18:33:08 -07:00
|
|
|
_May 20, 2018_
|
2018-05-20 07:35:19 -07:00
|
|
|
|
2018-05-20 13:56:41 -07:00
|
|
|
Update to Tendermint v0.19.5 (reduce WAL use, bound the mempool and some rpcs, improve logging)
|
2018-05-20 07:35:19 -07:00
|
|
|
|
2018-05-17 13:10:16 -07:00
|
|
|
## 0.17.1 (May 17, 2018)
|
|
|
|
|
|
|
|
Update to Tendermint v0.19.4 (fixes a consensus bug and improves logging)
|
|
|
|
|
2018-05-15 09:45:36 -07:00
|
|
|
## 0.17.0 (May 15, 2018)
|
2018-05-15 09:43:13 -07:00
|
|
|
|
|
|
|
BREAKING CHANGES
|
|
|
|
|
|
|
|
* [stake] MarshalJSON -> MarshalBinary
|
2018-05-17 08:12:28 -07:00
|
|
|
* Queries against the store must be prefixed with the path "/store"
|
2018-05-15 09:43:13 -07:00
|
|
|
|
|
|
|
FEATURES
|
|
|
|
|
|
|
|
* [gaiacli] Support queries for candidates, delegator-bonds
|
|
|
|
* [gaiad] Added `gaiad export` command to export current state to JSON
|
|
|
|
* [x/bank] Tx tags with sender/recipient for indexing & later retrieval
|
2018-05-31 12:22:46 -07:00
|
|
|
* [x/stake] Tx tags with delegator/candidate for delegation & unbonding, and candidate info for declare candidate / edit validator
|
2018-05-15 09:43:13 -07:00
|
|
|
|
|
|
|
IMPROVEMENTS
|
|
|
|
|
|
|
|
* [gaiad] Update for Tendermint v0.19.3 (improve `/dump_consensus_state` and add
|
|
|
|
`/consensus_state`)
|
|
|
|
* [spec/ibc] Added spec!
|
|
|
|
* [spec/stake] Cleanup structure, include details about slashing and
|
|
|
|
auto-unbonding
|
|
|
|
* [spec/governance] Fixup some names and pseudocode
|
|
|
|
* NOTE: specs are still a work-in-progress ...
|
|
|
|
|
|
|
|
BUG FIXES
|
|
|
|
|
|
|
|
* Auto-sequencing now works correctly
|
|
|
|
|
2018-06-12 11:51:04 -07:00
|
|
|
|
2018-05-14 14:05:27 -07:00
|
|
|
## 0.16.0 (May 14th, 2018)
|
2018-05-01 05:00:23 -07:00
|
|
|
|
2018-04-30 14:26:12 -07:00
|
|
|
BREAKING CHANGES
|
|
|
|
|
2018-05-01 10:58:50 -07:00
|
|
|
* Move module REST/CLI packages to x/[module]/client/rest and x/[module]/client/cli
|
2018-05-24 18:33:08 -07:00
|
|
|
* Gaia simple-staking bond and unbond functions replaced
|
2018-05-01 10:58:50 -07:00
|
|
|
* [stake] Delegator bonds now store the height at which they were updated
|
|
|
|
* All module keepers now require a codespace, see basecoin or democoin for usage
|
2018-05-24 18:33:08 -07:00
|
|
|
* Many changes to names throughout
|
|
|
|
* Type as a prefix naming convention applied (ex. BondMsg -> MsgBond)
|
2018-05-01 10:58:50 -07:00
|
|
|
* Removed redundancy in names (ex. stake.StakeKeeper -> stake.Keeper)
|
|
|
|
* Removed SealedAccountMapper
|
2018-05-24 18:33:08 -07:00
|
|
|
* gaiad init now requires use of `--name` flag
|
2018-05-01 10:58:50 -07:00
|
|
|
* Removed Get from Msg interface
|
2018-04-30 14:26:12 -07:00
|
|
|
* types/rational now extends big.Rat
|
|
|
|
|
2018-04-13 02:06:27 -07:00
|
|
|
FEATURES:
|
|
|
|
|
2018-05-31 12:22:46 -07:00
|
|
|
* Gaia stake commands include, CreateValidator, EditValidator, Delegate, Unbond
|
2018-04-18 09:39:59 -07:00
|
|
|
* MountStoreWithDB without providing a custom store works.
|
2018-04-19 10:16:09 -07:00
|
|
|
* Repo is now lint compliant / GoMetaLinter with tendermint-lint integrated into CI
|
2018-04-20 09:51:47 -07:00
|
|
|
* Better key output, pubkey go-amino hex bytes now output by default
|
2018-04-26 11:33:02 -07:00
|
|
|
* gaiad init overhaul
|
2018-05-24 18:33:08 -07:00
|
|
|
* Create genesis transactions with `gaiad init gen-tx`
|
2018-04-26 11:33:02 -07:00
|
|
|
* New genesis account keys are automatically added to the client keybase (introduce `--client-home` flag)
|
|
|
|
* Initialize with genesis txs using `--gen-txs` flag
|
2018-05-01 10:58:50 -07:00
|
|
|
* Context now has access to the application-configured logger
|
2018-05-24 18:33:08 -07:00
|
|
|
* Add (non-proof) subspace query helper functions
|
2018-05-10 11:34:18 -07:00
|
|
|
* Add more staking query functions: candidates, delegator-bonds
|
2018-05-01 10:58:50 -07:00
|
|
|
|
|
|
|
BUG FIXES
|
2018-05-24 18:33:08 -07:00
|
|
|
|
2018-05-01 10:58:50 -07:00
|
|
|
* Gaia now uses stake, ported from github.com/cosmos/gaia
|
|
|
|
|
2018-06-12 11:51:04 -07:00
|
|
|
|
2018-05-01 10:58:50 -07:00
|
|
|
## 0.15.1 (April 29, 2018)
|
|
|
|
|
|
|
|
IMPROVEMENTS:
|
|
|
|
|
|
|
|
* Update Tendermint to v0.19.1 (includes many rpc fixes)
|
|
|
|
|
2018-06-12 11:51:04 -07:00
|
|
|
|
2018-05-01 10:58:50 -07:00
|
|
|
## 0.15.0 (April 29, 2018)
|
|
|
|
|
|
|
|
NOTE: v0.15.0 is a large breaking change that updates the encoding scheme to use
|
2018-05-24 18:33:08 -07:00
|
|
|
[Amino](github.com/tendermint/go-amino).
|
2018-05-01 10:58:50 -07:00
|
|
|
|
|
|
|
For details on how this changes encoding for public keys and addresses,
|
|
|
|
see the [docs](https://github.com/tendermint/tendermint/blob/v0.19.1/docs/specification/new-spec/encoding.md#public-key-cryptography).
|
2018-04-13 02:06:27 -07:00
|
|
|
|
2018-04-07 00:08:53 -07:00
|
|
|
BREAKING CHANGES
|
|
|
|
|
|
|
|
* Remove go-wire, use go-amino
|
2018-04-10 02:25:13 -07:00
|
|
|
* [store] Add `SubspaceIterator` and `ReverseSubspaceIterator` to `KVStore` interface
|
2018-04-13 03:44:20 -07:00
|
|
|
* [basecoin] NewBasecoinApp takes a `dbm.DB` and uses namespaced DBs for substores
|
2018-05-01 10:58:50 -07:00
|
|
|
|
|
|
|
FEATURES:
|
|
|
|
|
|
|
|
* Add CacheContext
|
|
|
|
* Add auto sequencing to client
|
|
|
|
* Add FeeHandler to ante handler
|
2018-04-07 00:08:53 -07:00
|
|
|
|
2018-04-12 16:24:34 -07:00
|
|
|
BUG FIXES
|
2018-05-24 18:33:08 -07:00
|
|
|
|
2018-05-01 10:58:50 -07:00
|
|
|
* MountStoreWithDB without providing a custom store works.
|
2018-04-12 16:24:34 -07:00
|
|
|
|
2018-04-09 10:41:03 -07:00
|
|
|
## 0.14.1 (April 9, 2018)
|
|
|
|
|
|
|
|
BUG FIXES
|
|
|
|
|
|
|
|
* [gaiacli] Fix all commands (just a duplicate of basecli for now)
|
|
|
|
|
2018-04-09 06:52:13 -07:00
|
|
|
## 0.14.0 (April 9, 2018)
|
2018-04-09 06:51:40 -07:00
|
|
|
|
|
|
|
BREAKING CHANGES:
|
|
|
|
|
|
|
|
* [client/builder] Renamed to `client/core` and refactored to use a CoreContext
|
|
|
|
struct
|
|
|
|
* [server] Refactor to improve useability and de-duplicate code
|
|
|
|
* [types] `Result.ToQuery -> Error.QueryResult`
|
|
|
|
* [makefile] `make build` and `make install` only build/install `gaiacli` and
|
|
|
|
`gaiad`. Use `make build_examples` and `make install_examples` for
|
|
|
|
`basecoind/basecli` and `democoind/democli`
|
|
|
|
* [staking] Various fixes/improvements
|
|
|
|
|
2018-04-09 06:57:09 -07:00
|
|
|
FEATURES:
|
|
|
|
|
|
|
|
* [democoin] Added Proof-of-Work module
|
|
|
|
|
2018-04-09 06:51:40 -07:00
|
|
|
BUG FIXES
|
|
|
|
|
|
|
|
* [client] Reuse Tendermint RPC client to avoid excessive open files
|
2018-05-24 18:33:08 -07:00
|
|
|
* [client] Fix setting log level
|
2018-04-09 06:51:40 -07:00
|
|
|
* [basecoin] Sort coins in genesis
|
|
|
|
|
2018-04-03 11:39:11 -07:00
|
|
|
## 0.13.1 (April 3, 2018)
|
|
|
|
|
|
|
|
BUG FIXES
|
|
|
|
|
|
|
|
* [x/ibc] Fix CLI and relay for IBC txs
|
|
|
|
* [x/stake] Various fixes/improvements
|
|
|
|
|
2018-04-01 12:01:32 -07:00
|
|
|
## 0.13.0 (April 2, 2018)
|
2018-03-31 16:30:12 -07:00
|
|
|
|
|
|
|
BREAKING CHANGES
|
|
|
|
|
|
|
|
* [basecoin] Remove cool/sketchy modules -> moved to new `democoin`
|
|
|
|
* [basecoin] NewBasecoinApp takes a `map[string]dbm.DB` as temporary measure
|
|
|
|
to allow mounting multiple stores with their own DB until they can share one
|
2018-04-03 11:39:11 -07:00
|
|
|
* [x/staking] Renamed to `simplestake`
|
2018-03-31 16:30:12 -07:00
|
|
|
* [builder] Functions don't take `passphrase` as argument
|
2018-04-21 22:32:47 -07:00
|
|
|
* [server] GenAppParams returns generated seed and address
|
2018-03-31 16:30:12 -07:00
|
|
|
* [basecoind] `init` command outputs JSON of everything necessary for testnet
|
|
|
|
* [basecoind] `basecoin.db -> data/basecoin.db`
|
|
|
|
* [basecli] `data/keys.db -> keys/keys.db`
|
|
|
|
|
|
|
|
FEATURES
|
|
|
|
|
|
|
|
* [types] `Coin` supports direct arithmetic operations
|
|
|
|
* [basecoind] Add `show_validator` and `show_node_id` commands
|
2018-04-03 11:39:11 -07:00
|
|
|
* [x/stake] Initial merge of full staking module!
|
2018-03-31 16:30:12 -07:00
|
|
|
* [democoin] New example application to demo custom modules
|
|
|
|
|
|
|
|
IMPROVEMENTS
|
|
|
|
|
|
|
|
* [makefile] `make install`
|
|
|
|
* [testing] Use `/tmp` for directories so they don't get left in the repo
|
|
|
|
|
|
|
|
BUG FIXES
|
|
|
|
|
|
|
|
* [basecoin] Allow app to be restarted
|
|
|
|
* [makefile] Fix build on Windows
|
|
|
|
* [basecli] Get confirmation before overriding key with same name
|
|
|
|
|
2018-03-27 08:33:09 -07:00
|
|
|
## 0.12.0 (March 27 2018)
|
2018-03-03 11:41:43 -08:00
|
|
|
|
|
|
|
BREAKING CHANGES
|
|
|
|
|
2018-03-19 19:54:11 -07:00
|
|
|
* Revert to old go-wire for now
|
|
|
|
* glide -> godep
|
|
|
|
* [types] ErrBadNonce -> ErrInvalidSequence
|
|
|
|
* [types] Replace tx.GetFeePayer with FeePayer(tx) - returns the first signer
|
|
|
|
* [types] NewStdTx takes the Fee
|
2018-03-22 21:35:51 -07:00
|
|
|
* [types] ParseAccount -> AccountDecoder; ErrTxParse -> ErrTxDecoder
|
2018-04-03 11:39:11 -07:00
|
|
|
* [x/auth] AnteHandler deducts fees
|
|
|
|
* [x/bank] Move some errors to `types`
|
|
|
|
* [x/bank] Remove sequence and signature from Input
|
2018-03-19 19:54:11 -07:00
|
|
|
|
2018-03-03 11:41:43 -08:00
|
|
|
FEATURES
|
|
|
|
|
2018-03-19 19:54:11 -07:00
|
|
|
* [examples/basecoin] New cool module to demonstrate use of state and custom transactions
|
2018-03-27 08:33:09 -07:00
|
|
|
* [basecoind] `show_node_id` command
|
2018-03-19 19:54:11 -07:00
|
|
|
* [lcd] Implement the Light Client Daemon and endpoints
|
|
|
|
* [types/stdlib] Queue functionality
|
|
|
|
* [store] Subspace iterator on IAVLTree
|
|
|
|
* [types] StdSignDoc is the document that gets signed (chainid, msg, sequence, fee)
|
|
|
|
* [types] CodeInvalidPubKey
|
|
|
|
* [types] StdFee, and StdTx takes the StdFee
|
|
|
|
* [specs] Progression of MVPs for IBC
|
|
|
|
* [x/ibc] Initial shell of IBC functionality (no proofs)
|
2018-03-28 21:36:40 -07:00
|
|
|
* [x/simplestake] Simple staking module with bonding/unbonding
|
2018-03-03 11:41:43 -08:00
|
|
|
|
|
|
|
IMPROVEMENTS
|
|
|
|
|
2018-03-19 19:54:11 -07:00
|
|
|
* Lots more tests!
|
2018-05-24 18:33:08 -07:00
|
|
|
* [client/builder] Helpers for forming and signing transactions
|
2018-03-19 19:54:11 -07:00
|
|
|
* [types] sdk.Address
|
|
|
|
* [specs] Staking
|
2018-03-03 11:41:43 -08:00
|
|
|
|
|
|
|
BUG FIXES
|
2018-05-24 18:33:08 -07:00
|
|
|
|
2018-04-03 11:39:11 -07:00
|
|
|
* [x/auth] Fix setting pubkey on new account
|
|
|
|
* [x/auth] Require signatures to include the sequences
|
2018-03-19 19:54:11 -07:00
|
|
|
* [baseapp] Dont panic on nil handler
|
2018-03-22 21:35:51 -07:00
|
|
|
* [basecoin] Check for empty bytes in account and tx
|
2018-03-03 11:41:43 -08:00
|
|
|
|
2018-02-28 21:38:39 -08:00
|
|
|
## 0.11.0 (March 1, 2017)
|
2018-01-31 19:15:32 -08:00
|
|
|
|
|
|
|
BREAKING CHANGES
|
|
|
|
|
|
|
|
* [examples] dummy -> kvstore
|
2018-02-28 21:38:39 -08:00
|
|
|
* [examples] Remove gaia
|
|
|
|
* [examples/basecoin] MakeTxCodec -> MakeCodec
|
2018-01-31 19:15:32 -08:00
|
|
|
* [types] CommitMultiStore interface has new `GetCommitKVStore(key StoreKey) CommitKVStore` method
|
|
|
|
|
2018-02-28 21:38:39 -08:00
|
|
|
FEATURES
|
|
|
|
|
|
|
|
* [examples/basecoin] CLI for `basecli` and `basecoind` (!)
|
|
|
|
* [baseapp] router.AddRoute returns Router
|
|
|
|
|
|
|
|
IMPROVEMENTS
|
|
|
|
|
|
|
|
* [baseapp] Run msg handlers on CheckTx
|
|
|
|
* [docs] Add spec for REST API
|
|
|
|
* [all] More tests!
|
|
|
|
|
|
|
|
BUG FIXES
|
|
|
|
|
|
|
|
* [baseapp] Fix panic on app restart
|
|
|
|
* [baseapp] InitChain does not call Commit
|
2018-02-28 23:02:29 -08:00
|
|
|
* [basecoin] Remove IBCStore because mounting multiple stores is currently broken
|
2018-02-28 21:38:39 -08:00
|
|
|
|
2018-02-20 19:45:19 -08:00
|
|
|
## 0.10.0 (February 20, 2017)
|
|
|
|
|
|
|
|
BREAKING CHANGES
|
|
|
|
|
|
|
|
* [baseapp] NewBaseApp(logger, db)
|
|
|
|
* [baseapp] NewContext(isCheckTx, header)
|
|
|
|
* [x/bank] CoinMapper -> CoinKeeper
|
|
|
|
|
|
|
|
FEATURES
|
|
|
|
|
|
|
|
* [examples/gaia] Mock CLI !
|
|
|
|
* [baseapp] InitChainer, BeginBlocker, EndBlocker
|
|
|
|
* [baseapp] MountStoresIAVL
|
|
|
|
|
|
|
|
IMPROVEMENTS
|
|
|
|
|
|
|
|
* [docs] Various improvements.
|
|
|
|
* [basecoin] Much simpler :)
|
|
|
|
|
|
|
|
BUG FIXES
|
|
|
|
|
|
|
|
* [baseapp] initialize and reset msCheck and msDeliver properly
|
|
|
|
|
2018-02-13 04:47:12 -08:00
|
|
|
## 0.9.0 (February 13, 2017)
|
|
|
|
|
|
|
|
BREAKING CHANGES
|
|
|
|
|
|
|
|
* Massive refactor. Basecoin works. Still needs <3
|
|
|
|
|
2018-05-24 18:33:08 -07:00
|
|
|
## 0.8.1
|
2018-02-13 04:47:12 -08:00
|
|
|
|
|
|
|
* Updates for dependencies
|
|
|
|
|
|
|
|
## 0.8.0 (December 18, 2017)
|
|
|
|
|
|
|
|
* Updates for dependencies
|
|
|
|
|
2017-10-11 20:30:50 -07:00
|
|
|
## 0.7.1 (October 11, 2017)
|
|
|
|
|
|
|
|
IMPROVEMENTS:
|
|
|
|
|
|
|
|
* server/commands: GetInitCmd takes list of options
|
|
|
|
|
2017-10-11 13:57:38 -07:00
|
|
|
## 0.7.0 (October 11, 2017)
|
2017-08-30 17:10:23 -07:00
|
|
|
|
2017-10-11 13:57:38 -07:00
|
|
|
BREAKING CHANGES:
|
2017-08-30 17:10:23 -07:00
|
|
|
|
2017-10-11 13:57:38 -07:00
|
|
|
* Everything has changed, and it's all about to change again, so don't bother using it yet!
|
2017-08-30 17:10:23 -07:00
|
|
|
|
2017-07-27 19:11:17 -07:00
|
|
|
## 0.6.2 (July 27, 2017)
|
|
|
|
|
|
|
|
IMPROVEMENTS:
|
|
|
|
|
|
|
|
* auto-test all tutorials to detect breaking changes
|
|
|
|
* move deployment scripts from `/scripts` to `/publish` for clarity
|
|
|
|
|
|
|
|
BUG FIXES:
|
|
|
|
|
|
|
|
* `basecoin init` ensures the address in genesis.json is valid
|
|
|
|
* fix bug that certain addresses couldn't receive ibc packets
|
|
|
|
|
2017-06-28 04:20:54 -07:00
|
|
|
## 0.6.1 (June 28, 2017)
|
2017-06-26 08:27:52 -07:00
|
|
|
|
|
|
|
Make lots of small cli fixes that arose when people were using the tools for
|
|
|
|
the testnet.
|
|
|
|
|
2017-06-26 12:36:49 -07:00
|
|
|
IMPROVEMENTS:
|
2018-05-24 18:33:08 -07:00
|
|
|
|
|
|
|
* basecoin
|
|
|
|
* `basecoin start` supports all flags that `tendermint node` does, such as
|
|
|
|
`--rpc.laddr`, `--p2p.seeds`, and `--p2p.skip_upnp`
|
|
|
|
* fully supports `--log_level` and `--trace` for logger configuration
|
|
|
|
* merkleeyes no longers spams the logs... unless you want it
|
|
|
|
* Example: `basecoin start --log_level="merkleeyes:info,state:info,*:error"`
|
|
|
|
* Example: `basecoin start --log_level="merkleeyes:debug,state:info,*:error"`
|
|
|
|
* basecli
|
|
|
|
* `basecli init` is more intelligent and only complains if there really was
|
|
|
|
a connected chain, not just random files
|
|
|
|
* support `localhost:46657` or `http://localhost:46657` format for nodes,
|
|
|
|
not just `tcp://localhost:46657`
|
|
|
|
* Add `--genesis` to init to specify chain-id and validator hash
|
|
|
|
* Example: `basecli init --node=localhost:46657 --genesis=$HOME/.basecoin/genesis.json`
|
|
|
|
* `basecli rpc` has a number of methods to easily accept tendermint rpc, and verifies what it can
|
2017-06-27 06:20:32 -07:00
|
|
|
|
2017-06-28 04:20:54 -07:00
|
|
|
BUG FIXES:
|
2017-06-26 08:27:52 -07:00
|
|
|
|
2018-05-24 18:33:08 -07:00
|
|
|
* basecli
|
|
|
|
* `basecli query account` accepts hex account address with or without `0x`
|
|
|
|
prefix
|
|
|
|
* gives error message when running commands on an unitialized chain, rather
|
|
|
|
than some unintelligable panic
|
2017-06-26 08:27:52 -07:00
|
|
|
|
2017-06-22 19:43:47 -07:00
|
|
|
## 0.6.0 (June 22, 2017)
|
2017-06-16 04:51:48 -07:00
|
|
|
|
2017-06-16 04:56:12 -07:00
|
|
|
Make the basecli command the only way to use client-side, to enforce best
|
|
|
|
security practices. Lots of enhancements to get it up to production quality.
|
|
|
|
|
2017-06-16 04:51:48 -07:00
|
|
|
BREAKING CHANGES:
|
2018-05-24 18:33:08 -07:00
|
|
|
|
|
|
|
* ./cmd/commands -> ./cmd/basecoin/commands
|
|
|
|
* basecli
|
|
|
|
* `basecli proof state get` -> `basecli query key`
|
|
|
|
* `basecli proof tx get` -> `basecli query tx`
|
|
|
|
* `basecli proof state get --app=account` -> `basecli query account`
|
|
|
|
* use `--chain-id` not `--chainid` for consistency
|
|
|
|
* update to use `--trace` not `--debug` for stack traces on errors
|
|
|
|
* complete overhaul on how tx and query subcommands are added. (see counter or trackomatron for examples)
|
|
|
|
* no longer supports counter app (see new countercli)
|
|
|
|
* basecoin
|
|
|
|
* `basecoin init` takes an argument, an address to allocate funds to in the genesis
|
|
|
|
* removed key2.json
|
|
|
|
* removed all client side functionality from it (use basecli now for proofs)
|
|
|
|
* no tx subcommand
|
|
|
|
* no query subcommand
|
|
|
|
* no account (query) subcommand
|
|
|
|
* a few other random ones...
|
|
|
|
* enhanced relay subcommand
|
|
|
|
* relay start did what relay used to do
|
|
|
|
* relay init registers both chains on one another (to set it up so relay start just works)
|
|
|
|
* docs
|
|
|
|
* removed `example-plugin`, put `counter` inside `docs/guide`
|
|
|
|
* app
|
|
|
|
* Implements ABCI handshake by proxying merkleeyes.Info()
|
2017-06-16 04:51:48 -07:00
|
|
|
|
2017-06-26 12:36:49 -07:00
|
|
|
IMPROVEMENTS:
|
2018-05-24 18:33:08 -07:00
|
|
|
|
|
|
|
* `basecoin init` support `--chain-id`
|
|
|
|
* intergrates tendermint 0.10.0 (not the rc-2, but the real thing)
|
|
|
|
* commands return error code (1) on failure for easier script testing
|
|
|
|
* add `reset_all` to basecli, and never delete keys on `init`
|
|
|
|
* new shutil based unit tests, with better coverage of the cli actions
|
|
|
|
* just `make fresh` when things are getting stale ;)
|
2017-06-16 04:51:48 -07:00
|
|
|
|
|
|
|
BUG FIXES:
|
2018-05-24 18:33:08 -07:00
|
|
|
|
|
|
|
* app: no longer panics on missing app_options in genesis (thanks, anton)
|
|
|
|
* docs: updated all docs... again
|
|
|
|
* ibc: fix panic on getting BlockID from commit without 100% precommits (still a TODO)
|
2017-06-16 04:51:48 -07:00
|
|
|
|
2017-06-02 01:42:05 -07:00
|
|
|
## 0.5.2 (June 2, 2017)
|
|
|
|
|
|
|
|
BUG FIXES:
|
2018-05-24 18:33:08 -07:00
|
|
|
|
|
|
|
* fix parsing of the log level from Tendermint config (#97)
|
2017-06-02 01:42:05 -07:00
|
|
|
|
2017-05-30 09:37:58 -07:00
|
|
|
## 0.5.1 (May 30, 2017)
|
|
|
|
|
|
|
|
BUG FIXES:
|
2018-05-24 18:33:08 -07:00
|
|
|
|
|
|
|
* fix ibc demo app to use proper tendermint flags, 0.10.0-rc2 compatibility
|
|
|
|
* Make sure all cli uses new json.Marshal not wire.JSONBytes
|
2017-05-30 09:37:58 -07:00
|
|
|
|
2017-05-24 08:07:31 -07:00
|
|
|
## 0.5.0 (May 27, 2017)
|
|
|
|
|
|
|
|
BREAKING CHANGES:
|
2018-05-24 18:33:08 -07:00
|
|
|
|
|
|
|
* only those related to the tendermint 0.9 -> 0.10 upgrade
|
2017-05-24 08:07:31 -07:00
|
|
|
|
2017-06-26 12:36:49 -07:00
|
|
|
IMPROVEMENTS:
|
2018-05-24 18:33:08 -07:00
|
|
|
|
|
|
|
* basecoin cli
|
|
|
|
* integrates tendermint 0.10.0 and unifies cli (init, unsafe_reset_all, ...)
|
|
|
|
* integrate viper, all command line flags can also be defined in environmental variables or config.toml
|
|
|
|
* genesis file
|
|
|
|
* you can define accounts with either address or pub_key
|
|
|
|
* sorts coins for you, so no silent errors if not in alphabetical order
|
|
|
|
* [light-client](https://github.com/tendermint/light-client) integration
|
|
|
|
* no longer must you trust the node you connect to, prove everything!
|
|
|
|
* new [basecli command](./cmd/basecli/README.md)
|
|
|
|
* integrated [key management](https://github.com/tendermint/go-crypto/blob/master/cmd/README.md), stored encrypted locally
|
|
|
|
* tracks validator set changes and proves everything from one initial validator seed
|
|
|
|
* `basecli proof state` gets complete proofs for any abci state
|
|
|
|
* `basecli proof tx` gets complete proof where a tx was stored in the chain
|
|
|
|
* `basecli proxy` exposes tendermint rpc, but only passes through results after doing complete verification
|
2017-05-24 08:07:31 -07:00
|
|
|
|
|
|
|
BUG FIXES:
|
|
|
|
|
2018-05-24 18:33:08 -07:00
|
|
|
* no more silently ignored error with invalid coin names (eg. "17.22foo coin" used to parse as "17 foo", not warning/error)
|
2017-05-24 08:07:31 -07:00
|
|
|
|
2017-04-25 22:38:18 -07:00
|
|
|
## 0.4.1 (April 26, 2017)
|
|
|
|
|
|
|
|
BUG FIXES:
|
|
|
|
|
2018-05-24 18:33:08 -07:00
|
|
|
* Fix bug in `basecoin unsafe_reset_X` where the `priv_validator.json` was not being reset
|
2017-04-25 22:38:18 -07:00
|
|
|
|
2017-04-25 22:35:10 -07:00
|
|
|
## 0.4.0 (April 21, 2017)
|
2017-03-29 22:59:46 -07:00
|
|
|
|
|
|
|
BREAKING CHANGES:
|
|
|
|
|
2018-05-24 18:33:08 -07:00
|
|
|
* CLI now uses Cobra, which forced changes to some of the flag names and orderings
|
2017-03-29 22:59:46 -07:00
|
|
|
|
|
|
|
IMPROVEMENTS:
|
|
|
|
|
2018-05-24 18:33:08 -07:00
|
|
|
* `basecoin init` doesn't generate error if already initialized
|
|
|
|
* Much more testing
|
2017-03-29 22:59:46 -07:00
|
|
|
|
2017-03-23 15:52:59 -07:00
|
|
|
## 0.3.1 (March 23, 2017)
|
|
|
|
|
|
|
|
IMPROVEMENTS:
|
|
|
|
|
2018-05-24 18:33:08 -07:00
|
|
|
* CLI returns exit code 1 and logs error before exiting
|
2017-03-23 15:52:59 -07:00
|
|
|
|
2017-03-23 15:07:31 -07:00
|
|
|
## 0.3.0 (March 23, 2017)
|
2017-03-13 17:57:28 -07:00
|
|
|
|
|
|
|
BREAKING CHANGES:
|
|
|
|
|
2018-05-24 18:33:08 -07:00
|
|
|
* Remove `--data` flag and use `BCHOME` to set the home directory (defaults to `~/.basecoin`)
|
|
|
|
* Remove `--in-proc` flag and start Tendermint in-process by default (expect Tendermint files in $BCHOME/tendermint).
|
|
|
|
To start just the ABCI app/server, use `basecoin start --without-tendermint`.
|
|
|
|
* Consolidate genesis files so the Basecoin genesis is an object under `app_options` in Tendermint genesis. For instance:
|
2017-03-14 10:55:46 -07:00
|
|
|
|
|
|
|
```
|
|
|
|
{
|
|
|
|
"app_hash": "",
|
|
|
|
"chain_id": "foo_bar_chain",
|
|
|
|
"genesis_time": "0001-01-01T00:00:00.000Z",
|
|
|
|
"validators": [
|
|
|
|
{
|
|
|
|
"amount": 10,
|
|
|
|
"name": "",
|
|
|
|
"pub_key": [
|
|
|
|
1,
|
|
|
|
"7B90EA87E7DC0C7145C8C48C08992BE271C7234134343E8A8E8008E617DE7B30"
|
|
|
|
]
|
|
|
|
}
|
|
|
|
],
|
|
|
|
"app_options": {
|
|
|
|
"accounts": [{
|
|
|
|
"pub_key": {
|
|
|
|
"type": "ed25519",
|
|
|
|
"data": "6880db93598e283a67c4d88fc67a8858aa2de70f713fe94a5109e29c137100c2"
|
|
|
|
},
|
|
|
|
"coins": [
|
|
|
|
{
|
|
|
|
"denom": "blank",
|
|
|
|
"amount": 12345
|
|
|
|
},
|
|
|
|
{
|
|
|
|
"denom": "ETH",
|
|
|
|
"amount": 654321
|
|
|
|
}
|
|
|
|
]
|
|
|
|
}],
|
|
|
|
"plugin_options": ["plugin1/key1", "value1", "plugin1/key2", "value2"]
|
|
|
|
}
|
|
|
|
}
|
|
|
|
```
|
|
|
|
|
|
|
|
Note the array of key-value pairs is now under `app_options.plugin_options` while the `app_options` themselves are well formed.
|
2017-03-23 15:07:31 -07:00
|
|
|
We also changed `chainID` to `chain_id` and consolidated to have just one of them.
|
2017-03-13 17:57:28 -07:00
|
|
|
|
|
|
|
FEATURES:
|
|
|
|
|
2018-05-24 18:33:08 -07:00
|
|
|
* Introduce `basecoin init` and `basecoin unsafe_reset_all`
|
2017-03-13 17:57:28 -07:00
|
|
|
|
2017-03-06 02:11:27 -08:00
|
|
|
## 0.2.0 (March 6, 2017)
|
|
|
|
|
|
|
|
BREAKING CHANGES:
|
|
|
|
|
2018-05-24 18:33:08 -07:00
|
|
|
* Update to ABCI v0.4.0 and Tendermint v0.9.0
|
|
|
|
* Coins are specified on the CLI as `Xcoin`, eg. `5gold`
|
|
|
|
* `Cost` is now `Fee`
|
2017-03-06 02:11:27 -08:00
|
|
|
|
|
|
|
FEATURES:
|
|
|
|
|
2018-05-24 18:33:08 -07:00
|
|
|
* CLI for sending transactions and querying the state,
|
|
|
|
designed to be easily extensible as plugins are implemented
|
|
|
|
* Run Basecoin in-process with Tendermint
|
|
|
|
* Add `/account` path in Query
|
|
|
|
* IBC plugin for InterBlockchain Communication
|
|
|
|
* Demo script of IBC between two chains
|
2017-03-06 02:11:27 -08:00
|
|
|
|
|
|
|
IMPROVEMENTS:
|
|
|
|
|
2018-05-24 18:33:08 -07:00
|
|
|
* Use new Tendermint `/commit` endpoint for crafting IBC transactions
|
|
|
|
* More unit tests
|
|
|
|
* Use go-crypto S structs and go-data for more standard JSON
|
|
|
|
* Demo uses fewer sleeps
|
2017-03-06 02:11:27 -08:00
|
|
|
|
|
|
|
BUG FIXES:
|
|
|
|
|
2018-05-24 18:33:08 -07:00
|
|
|
* Various little fixes in coin arithmetic
|
|
|
|
* More commit validation in IBC
|
|
|
|
* Return results from transactions
|
2017-03-06 02:11:27 -08:00
|
|
|
|
|
|
|
## PreHistory
|
|
|
|
|
|
|
|
##### January 14-18, 2017
|
|
|
|
|
2018-05-24 18:33:08 -07:00
|
|
|
* Update to Tendermint v0.8.0
|
|
|
|
* Cleanup a bit and release blog post
|
2017-03-06 02:11:27 -08:00
|
|
|
|
|
|
|
##### September 22, 2016
|
|
|
|
|
2018-05-24 18:33:08 -07:00
|
|
|
* Basecoin compiles again
|