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.

36 lines
1.5 KiB

  1. # Pending
  2. Special thanks to external contributors with PRs included in this release:
  3. BREAKING CHANGES:
  4. * CLI/RPC/Config
  5. * [rpc] [\#2391](https://github.com/tendermint/tendermint/issues/2391) /status `result.node_info.other` became a map
  6. * Apps
  7. * [mempool] \#2310 Mempool tracks the `ResponseCheckTx.GasWanted` and enforces `ConsensusParams.BlockSize.MaxGas` on proposals.
  8. * Go API
  9. * [libs/common] \#2431 Remove Word256 due to lack of use
  10. * [libs/common] \#2452 Remove the following functions due to lack of use:
  11. * byteslice.go: cmn.IsZeros, cmn.RightPadBytes, cmn.LeftPadBytes, cmn.PrefixEndBytes
  12. * strings.go: cmn.IsHex, cmn.StripHex
  13. * int.go: Uint64Slice, all put/get int64 methods
  14. * Blockchain Protocol
  15. * P2P Protocol
  16. FEATURES:
  17. IMPROVEMENTS:
  18. - [libs/db] \#2371 Output error instead of panic when the given db_backend is not initialised (@bradyjoestar)
  19. - [mempool] [\#2399](https://github.com/tendermint/tendermint/issues/2399) Make mempool cache a proper LRU (@bradyjoestar)
  20. - [types] [\#1714](https://github.com/tendermint/tendermint/issues/1714) Add Address to GenesisValidator
  21. - [metrics] `consensus.block_interval_metrics` is now gauge, not histogram (you will be able to see spikes, if any)
  22. - [p2p] \#2126 Introduce PeerTransport interface to improve isolation of concerns
  23. BUG FIXES:
  24. - [node] \#2294 Delay starting node until Genesis time
  25. - [rpc] \#2460 StartHTTPAndTLSServer() now passes StartTLS() errors back to the caller rather than hanging forever.