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.

47 lines
2.0 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. * Blockchain Protocol
  22. * [types] \#2459 `Vote`/`Proposal`/`Heartbeat` use amino encoding instead of JSON in `SignBytes`.
  23. * P2P Protocol
  24. FEATURES:
  25. - [crypto/merkle] \#2298 General Merkle Proof scheme for chaining various types of Merkle trees together
  26. IMPROVEMENTS:
  27. - [consensus] [\#2169](https://github.com/cosmos/cosmos-sdk/issues/2169) add additional metrics
  28. - [p2p] [\#2169](https://github.com/cosmos/cosmos-sdk/issues/2169) add additional metrics
  29. - [config] \#2232 added ValidateBasic method, which performs basic checks
  30. BUG FIXES:
  31. - [autofile] \#2428 Group.RotateFile need call Flush() before rename (@goolAdapter)
  32. - [node] \#2434 Make node respond to signal interrupts while sleeping for genesis time
  33. - [consensus] [\#1690](https://github.com/tendermint/tendermint/issues/1690) wait for
  34. timeoutPrecommit before starting next round
  35. - [evidence] \#2515 fix db iter leak (@goolAdapter)
  36. - [common/bit_array] Fixed a bug in the `Or` function
  37. - [common/bit_array] Fixed a bug in the `Sub` function (@bradyjoestar)