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.

60 lines
3.3 KiB

  1. # Unreleased Changes
  2. ## vX.X
  3. Special thanks to external contributors on this release:
  4. Friendly reminder, we have a [bug bounty program](https://hackerone.com/tendermint).
  5. ### BREAKING CHANGES
  6. - CLI/RPC/Config
  7. - [config] \#5598 The `test_fuzz` and `test_fuzz_config` P2P settings have been removed. (@erikgrinaker)
  8. - [config] \#5728 `fast_sync = "v1"` is no longer supported (@melekes)
  9. - [cli] \#5772 `gen_node_key` prints JSON-encoded `NodeKey` rather than ID and does not save it to `node_key.json` (@melekes)
  10. - [cli] \#5777 use hyphen-case instead of snake_case for all cli commands and config parameters (@cmwaters)
  11. - Apps
  12. - [ABCI] \#5447 Remove `SetOption` method from `ABCI.Client` interface
  13. - [ABCI] \#5447 Reset `Oneof` indexes for `Request` and `Response`.
  14. - [ABCI] \#5818 Use protoio for msg length delimitation. Migrates from int64 to uint64 length delimiters.
  15. - P2P Protocol
  16. - Go API
  17. - [abci/client, proxy] \#5673 `Async` funcs return an error, `Sync` and `Async` funcs accept `context.Context` (@melekes)
  18. - [p2p] Removed unused function `MakePoWTarget`. (@erikgrinaker)
  19. - [libs/bits] \#5720 Validate `BitArray` in `FromProto`, which now returns an error (@melekes)
  20. - [proto/p2p] Renamed `DefaultNodeInfo` and `DefaultNodeInfoOther` to `NodeInfo` and `NodeInfoOther` (@erikgrinaker)
  21. - [proto/p2p] Rename `NodeInfo.default_node_id` to `node_id` (@erikgrinaker)
  22. - [libs/os] Kill() and {Must,}{Read,Write}File() functions have been removed. (@alessio)
  23. - [store] \#5848 Remove block store state in favor of using the db iterators directly (@cmwaters)
  24. - [state] \#5864 Use an iterator when pruning state (@cmwaters)
  25. - Blockchain Protocol
  26. - Data Storage
  27. - [store/state/evidence/light] \#5771 Use an order-preserving varint key encoding (@cmwaters)
  28. ### FEATURES
  29. ### IMPROVEMENTS
  30. - [crypto/ed25519] \#5632 Adopt zip215 `ed25519` verification. (@marbar3778)
  31. - [privval] \#5603 Add `--key` to `init`, `gen_validator`, `testnet` & `unsafe_reset_priv_validator` for use in generating `secp256k1` keys.
  32. - [privval] \#5725 Add gRPC support to private validator.
  33. - [privval] \#5876 `tendermint show-validator` will query the remote signer if gRPC is being used (@marbar3778)
  34. - [abci/client] \#5673 `Async` requests return an error if queue is full (@melekes)
  35. - [mempool] \#5673 Cancel `CheckTx` requests if RPC client disconnects or times out (@melekes)
  36. - [abci] \#5706 Added `AbciVersion` to `RequestInfo` allowing applications to check ABCI version when connecting to Tendermint. (@marbar3778)
  37. - [blockchain/v1] \#5728 Remove in favor of v2 (@melekes)
  38. - [blockchain/v0] \#5741 Relax termination conditions and increase sync timeout (@melekes)
  39. - [cli] \#5772 `gen_node_key` output now contains node ID (`id` field) (@melekes)
  40. - [blockchain/v2] \#5774 Send status request when new peer joins (@melekes)
  41. - [consensus] \#5792 Deprecates the `time_iota_ms` consensus parameter, to reduce the bug surface. The parameter is no longer used. (@valardragon)
  42. ### BUG FIXES
  43. - [types] \#5523 Change json naming of `PartSetHeader` within `BlockID` from `parts` to `part_set_header` (@marbar3778)
  44. - [privval] \#5638 Increase read/write timeout to 5s and calculate ping interval based on it (@JoeKash)
  45. - [blockchain/v1] [\#5701](https://github.com/tendermint/tendermint/pull/5701) Handle peers without blocks (@melekes)
  46. - [blockchain/v1] \#5711 Fix deadlock (@melekes)