You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

69 lines
3.3 KiB

  1. # Pending
  2. Special thanks to external contributors on this release:
  3. @goolAdapter, @bradyjoestar
  4. BREAKING CHANGES:
  5. * CLI/RPC/Config
  6. * [config] \#2232 timeouts as time.Duration, not ints
  7. * [config] \#2505 Remove Mempool.RecheckEmpty (it was effectively useless anyways)
  8. * [config] `mempool.wal` is disabled by default
  9. * [rpc] \#2298 `/abci_query` takes `prove` argument instead of `trusted` and switches the default
  10. behaviour to `prove=false`
  11. * [privval] \#2459 Split `SocketPVMsg`s implementations into Request and Response, where the Response may contain a error message (returned by the remote signer)
  12. * Apps
  13. * [abci] \#2298 ResponseQuery.Proof is now a structured merkle.Proof, not just
  14. arbitrary bytes
  15. * Go API
  16. * [node] Remove node.RunForever
  17. * [config] \#2232 timeouts as time.Duration, not ints
  18. * [rpc/client] \#2298 `ABCIQueryOptions.Trusted` -> `ABCIQueryOptions.Prove`
  19. * [types] \#2298 Remove `Index` and `Total` fields from `TxProof`.
  20. * [crypto/merkle & lite] \#2298 Various changes to accomodate General Merkle trees
  21. * [crypto/merkle] \#2595 Remove all Hasher objects in favor of byte slices
  22. * [types] \#2598 `VoteTypeXxx` are now
  23. * Blockchain Protocol
  24. * [types] Update SignBytes for `Vote`/`Proposal`/`Heartbeat`:
  25. * \#2459 Use amino encoding instead of JSON in `SignBytes`.
  26. * \#2598 Reorder fields and use fixed sized encoding.
  27. * \#2598 Change `Type` field fromt `string` to `byte` and use new
  28. `SignedMsgType` to enumerate.
  29. * [types] \#2512 Remove the pubkey field from the validator hash
  30. * [state] \#2587 Require block.Time of the fist block to be genesis time
  31. * P2P Protocol
  32. FEATURES:
  33. - [crypto/merkle] \#2298 General Merkle Proof scheme for chaining various types of Merkle trees together
  34. - [abci] \#2557 Add `Codespace` field to `Response{CheckTx, DeliverTx, Query}`
  35. IMPROVEMENTS:
  36. - Additional Metrics
  37. - [consensus] [\#2169](https://github.com/cosmos/cosmos-sdk/issues/2169)
  38. - [p2p] [\#2169](https://github.com/cosmos/cosmos-sdk/issues/2169)
  39. - [config] \#2232 Added ValidateBasic method, which performs basic checks
  40. - [crypto/ed25519] \#2558 Switch to use latest `golang.org/x/crypto` through our fork at
  41. github.com/tendermint/crypto
  42. - [tools] \#2238 Binary dependencies are now locked to a specific git commit
  43. - [crypto] \#2099 make crypto random use chacha, and have forward secrecy of generated randomness
  44. BUG FIXES:
  45. - [autofile] \#2428 Group.RotateFile need call Flush() before rename (@goolAdapter)
  46. - [node] \#2434 Make node respond to signal interrupts while sleeping for genesis time
  47. - [consensus] [\#1690](https://github.com/tendermint/tendermint/issues/1690) wait for
  48. timeoutPrecommit before starting next round
  49. - [consensus] [\#1745](https://github.com/tendermint/tendermint/issues/1745) wait for
  50. Proposal or timeoutProposal before entering prevote
  51. - [evidence] \#2515 fix db iter leak (@goolAdapter)
  52. - [common/bit_array] Fixed a bug in the `Or` function
  53. - [common/bit_array] Fixed a bug in the `Sub` function (@james-ray)
  54. - [common] \#2534 Make bit array's PickRandom choose uniformly from true bits
  55. - [consensus] \#1637 Limit the amount of evidence that can be included in a
  56. block
  57. - [p2p] \#2555 fix p2p switch FlushThrottle value (@goolAdapter)
  58. - [libs/event] \#2518 fix event concurrency flaw (@goolAdapter)
  59. - [state] \#2616 Pass nil to NewValidatorSet() when genesis file's Validators field is nil