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.

45 lines
1.3 KiB

  1. ## v0.32.1
  2. \*\*
  3. Special thanks to external contributors on this release:
  4. Friendly reminder, we have a [bug bounty
  5. program](https://hackerone.com/tendermint).
  6. ### BREAKING CHANGES:
  7. - CLI/RPC/Config
  8. - Apps
  9. - Go API
  10. - [abci] \#2127 ABCI / mempool: Add a "Recheck Tx" indicator. Breaks the ABCI
  11. client interface (`abcicli.Client`) to allow for supplying the ABCI
  12. `types.RequestCheckTx` and `types.RequestDeliverTx` structs, and lets the
  13. mempool indicate to the ABCI app whether a CheckTx request is a recheck or
  14. not.
  15. - [libs] Remove unused `db/debugDB` and `common/colors.go` & `errors/errors.go` files (@marbar3778)
  16. - [libs] \#2432 Remove unused `common/heap.go` file (@marbar3778)
  17. - Blockchain Protocol
  18. - P2P Protocol
  19. ### FEATURES:
  20. - [node] Refactor `NewNode` to use functional options to make it more flexible
  21. and extensible in the future.
  22. - [node][\#3730](https://github.com/tendermint/tendermint/pull/3730) Add `CustomReactors` option to `NewNode` allowing caller to pass
  23. custom reactors to run inside Tendermint node (@ParthDesai)
  24. ### IMPROVEMENTS:
  25. - [rpc] \#3700 Make possible to set absolute paths for TLS cert and key (@climber73)
  26. ### BUG FIXES:
  27. - [p2p] \#3338 Prevent "sent next PEX request too soon" errors by not calling
  28. ensurePeers outside of ensurePeersRoutine
  29. - [behaviour] Return correct reason in MessageOutOfOrder (@jim380)