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.

26 lines
1.0 KiB

  1. # Pending
  2. BREAKING CHANGES:
  3. - [types] CanonicalTime uses nanoseconds instead of clipping to ms
  4. - breaks serialization/signing of all messages with a timestamp
  5. - [abci] Removed Fee from ResponseDeliverTx and ResponseCheckTx
  6. - [tools] Removed `make ensure_deps` in favor of `make get_vendor_deps`
  7. - [p2p] Remove salsa and ripemd primitives, in favor of using chacha as a stream cipher, and hkdf
  8. - [abci] Changed time format from int64 to google.protobuf.Timestamp
  9. - [abci] Changed Validators to LastCommitInfo in RequestBeginBlock
  10. FEATURES:
  11. - [tools] Added `make check_dep`
  12. - ensures gopkg.lock is synced with gopkg.toml
  13. - ensures no branches are used in the gopkg.toml
  14. IMPROVEMENTS:
  15. - [blockchain] Improve fast-sync logic
  16. - tweak params
  17. - only process one block at a time to avoid starving
  18. - [crypto] Switch hkdfchachapoly1305 to xchachapoly1305
  19. - [common] bit array functions which take in another parameter are now thread safe
  20. BUG FIXES:
  21. - [privval] fix a deadline for accepting new connections in socket private
  22. validator.