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.

43 lines
1.8 KiB

  1. # Pending
  2. Special thanks to external contributors on this release:
  3. BREAKING CHANGES:
  4. * CLI/RPC/Config
  5. * [config] \#2232 timeouts as time.Duration, not ints
  6. * [config] \#2505 Remove Mempool.RecheckEmpty (it was effectively useless anyways)
  7. * [config] `mempool.wal` is disabled by default
  8. * [rpc] \#2298 `/abci_query` takes `prove` argument instead of `trusted` and switches the default
  9. behaviour to `prove=false`
  10. * [privval] \#2459 Split `SocketPVMsg`s implementations into Request and Response, where the Response may contain a error message (returned by the remote signer)
  11. * Apps
  12. * [abci] \#2298 ResponseQuery.Proof is now a structured merkle.Proof, not just
  13. arbitrary bytes
  14. * Go API
  15. * [node] Remove node.RunForever
  16. * [config] \#2232 timeouts as time.Duration, not ints
  17. * [rpc/client] \#2298 `ABCIQueryOptions.Trusted` -> `ABCIQueryOptions.Prove`
  18. * [types] \#2298 Remove `Index` and `Total` fields from `TxProof`.
  19. * [crypto/merkle & lite] \#2298 Various changes to accomodate General Merkle trees
  20. * Blockchain Protocol
  21. * [types] \#2459 `Vote`/`Proposal`/`Heartbeat` use amino encoding instead of JSON in `SignBytes`.
  22. * P2P Protocol
  23. FEATURES:
  24. - [crypto/merkle] \#2298 General Merkle Proof scheme for chaining various types of Merkle trees together
  25. IMPROVEMENTS:
  26. - [consensus] [\#2169](https://github.com/cosmos/cosmos-sdk/issues/2169) add additional metrics
  27. - [p2p] [\#2169](https://github.com/cosmos/cosmos-sdk/issues/2169) add additional metrics
  28. - [config] \#2232 added ValidateBasic method, which performs basic checks
  29. BUG FIXES:
  30. - [autofile] \#2428 Group.RotateFile need call Flush() before rename (@goolAdapter)
  31. - [node] \#2434 Make node respond to signal interrupts while sleeping for genesis time
  32. - [evidence] \#2515 fix db iter leak (@goolAdapter)
  33. - [common/bit_array] Fixed a bug in the `Or` function