Files
tendermint/CHANGELOG_PENDING.md
Sam Kleinman 5cc980698a mempool: consoldate implementations (#7171)
* mempool: consoldate implementations

* update chagelog

* fix test

* Apply suggestions from code review

Co-authored-by: M. J. Fromberger <michael.j.fromberger@gmail.com>

* cleanup locking comments

* context twiddle

* migrate away from deprecated ioutil APIs (#7175)

Co-authored-by: Callum Waters <cmwaters19@gmail.com>
Co-authored-by: M. J. Fromberger <fromberger@interchain.io>

Co-authored-by: M. J. Fromberger <michael.j.fromberger@gmail.com>
Co-authored-by: Callum Waters <cmwaters19@gmail.com>
Co-authored-by: M. J. Fromberger <fromberger@interchain.io>
2021-10-29 04:19:06 -04:00

1.5 KiB

Unreleased Changes

Friendly reminder: We have a bug bounty program.

vX.X

Month, DD, YYYY

Special thanks to external contributors on this release:

BREAKING CHANGES

  • CLI/RPC/Config

    • [rpc] Remove the deprecated gRPC interface to the RPC service. (@creachadair)
    • [blocksync] #7159 Remove support for disabling blocksync in any circumstance. (@tychoish)
    • [mempool] #7171 Remove legacy mempool implementation. (@tychoish)
  • Apps

    • [proto/tendermint] #6976 Remove core protobuf files in favor of only housing them in the tendermint/spec repository.
  • P2P Protocol

    • [p2p] #7035 Remove legacy P2P routing implementation and associated configuration options. (@tychoish)
  • Go API

    • [blocksync] #7046 Remove v2 implementation of the blocksync service and recactor, which was disabled in the previous release. (@tychoish)
    • [p2p] #7064 Remove WDRR queue implementation. (@tychoish)
    • [config] #7169 WriteConfigFile now returns an error. (@tychoish)
  • Blockchain Protocol

FEATURES

  • [cli] #7033 Add a rollback command to rollback to the previous tendermint state in the event of non-determinstic app hash or reverting an upgrade.
  • [mempool, rpc] #7041 Add removeTx operation to the RPC layer. (@tychoish)

IMPROVEMENTS

BUG FIXES

  • fix: assignment copies lock value in BitArray.UnmarshalJSON() (@lklimek)