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.

46 lines
1.7 KiB

  1. # Unreleased Changes
  2. Friendly reminder: We have a [bug bounty program](https://hackerone.com/cosmos).
  3. ## vX.X
  4. Month, DD, YYYY
  5. Special thanks to external contributors on this release:
  6. ### BREAKING CHANGES
  7. - CLI/RPC/Config
  8. - [rpc] Remove the deprecated gRPC interface to the RPC service. (@creachadair)
  9. - [blocksync] \#7159 Remove support for disabling blocksync in any circumstance. (@tychoish)
  10. - [mempool] \#7171 Remove legacy mempool implementation. (@tychoish)
  11. - Apps
  12. - [proto/tendermint] \#6976 Remove core protobuf files in favor of only housing them in the [tendermint/spec](https://github.com/tendermint/spec) repository.
  13. - P2P Protocol
  14. - [p2p] \#7035 Remove legacy P2P routing implementation and associated configuration options. (@tychoish)
  15. - Go API
  16. - [pubsub] \#7231 Remove unbuffered subscriptions and rework the Subscription interface. (@creachadair)
  17. - [eventbus] \#7231 Move the EventBus type to the internal/eventbus package. (@creachadair)
  18. - [blocksync] \#7046 Remove v2 implementation of the blocksync service and recactor, which was disabled in the previous release. (@tychoish)
  19. - [p2p] \#7064 Remove WDRR queue implementation. (@tychoish)
  20. - [config] \#7169 `WriteConfigFile` now returns an error. (@tychoish)
  21. - Blockchain Protocol
  22. ### FEATURES
  23. - [cli] [#7033](https://github.com/tendermint/tendermint/pull/7033) Add a `rollback` command to rollback to the previous tendermint state in the event of non-determinstic app hash or reverting an upgrade.
  24. - [mempool, rpc] \#7041 Add removeTx operation to the RPC layer. (@tychoish)
  25. ### IMPROVEMENTS
  26. ### BUG FIXES
  27. - fix: assignment copies lock value in `BitArray.UnmarshalJSON()` (@lklimek)