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
1.6 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. - [libs] Remove unused `date.go`, `io.go`. Remove `GoPath()`, `Prompt()` and `IsDirEmpty()` functions from `os.go` (@marbar3778)
  18. - Blockchain Protocol
  19. - P2P Protocol
  20. ### FEATURES:
  21. - [node] Refactor `NewNode` to use functional options to make it more flexible
  22. and extensible in the future.
  23. - [node][\#3730](https://github.com/tendermint/tendermint/pull/3730) Add `CustomReactors` option to `NewNode` allowing caller to pass
  24. custom reactors to run inside Tendermint node (@ParthDesai)
  25. ### IMPROVEMENTS:
  26. - [rpc] \#3700 Make possible to set absolute paths for TLS cert and key (@climber73)
  27. ### BUG FIXES:
  28. - [p2p] \#3338 Prevent "sent next PEX request too soon" errors by not calling
  29. ensurePeers outside of ensurePeersRoutine
  30. - [behaviour] Return correct reason in MessageOutOfOrder (@jim380)
  31. - [config] \#3723 Add consensus_params to testnet config generation; document time_iota_ms (@ashleyvega)