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.

154 lines
4.0 KiB

  1. # Changelog
  2. ## 0.9.0
  3. BREAKING CHANGES
  4. - `priv.PubKey()` no longer returns an error. Any applicable errors (such as when fetching the public key from a hardware wallet) should be checked and returned when constructing the private key.
  5. ## 0.8.0
  6. **TBD**
  7. ## 0.7.0
  8. **May 30th, 2018**
  9. BREAKING CHANGES
  10. No breaking changes compared to 0.6.2, but making up for the version bump that
  11. should have happened in 0.6.1.
  12. We also bring in the `tmlibs/merkle` package with breaking changes:
  13. - change the hash function from RIPEMD160 to tmhash (first 20-bytes of SHA256)
  14. - remove unused funcs and unexport SimpleMap
  15. FEATURES
  16. - [xchacha20poly1305] New authenticated encryption module
  17. - [merkle] Moved in from tmlibs
  18. - [merkle/tmhash] New hash function: the first 20-bytes of SHA256
  19. IMPROVEMENTS
  20. - Remove some dead code
  21. - Use constant-time compare for signatures
  22. BUG FIXES
  23. - Fix MixEntropy weakness
  24. - Fix PrivKeyEd25519.Generate()
  25. ## 0.6.2 (April 9, 2018)
  26. IMPROVEMENTS
  27. - Update for latest go-amino
  28. ## 0.6.1 (March 26, 2018)
  29. BREAKING CHANGES
  30. - Encoding uses MarshalBinaryBare rather than MarshalBinary (which auto-length-prefixes) for pub/priv/sig.
  31. ## 0.6.0 (March 2, 2018)
  32. BREAKING CHANGES
  33. - Update Amino names from "com.tendermint/..." to "tendermint/"
  34. ## 0.5.0 (March 2, 2018)
  35. BREAKING CHANGES
  36. - nano: moved to `_nano` now while we're having build issues
  37. - bcrypt: moved to `keys/bcrypt`
  38. - hd: moved to `keys/hd`; `BTC` added to some function names; other function cleanup
  39. - keys/cryptostore: moved to `keys`, renamed to `keybase`, and completely refactored
  40. - keys: moved BIP39 related code to `keys/words`
  41. FEATURE
  42. - `Address` is a type alias for `cmn.HexBytes`
  43. BUG FIX
  44. - PrivKey comparisons done in constant time
  45. ## 0.4.1 (October 27, 2017)
  46. This release removes support for bcrypt as it was merged too soon without an upgrade plan
  47. for existing keys.
  48. REVERTS THE FOLLOWING COMMITS:
  49. - Parameterize and lower bcrypt cost - dfc4cdd2d71513e4a9922d679c74f36357c4c862
  50. - Upgrade keys to use bcrypt with salts (#38) - 8e7f0e7701f92206679ad093d013b9b162427631
  51. ## 0.4.0 (October 27, 2017)
  52. BREAKING CHANGES:
  53. - `keys`: use bcrypt plus salt
  54. FEATURES:
  55. - add support for signing via Ledger Nano
  56. IMPROVEMENTS:
  57. - linting and comments
  58. ## 0.3.0 (September 22, 2017)
  59. BREAKING CHANGES:
  60. - Remove `cmd` and `keys/tx` packages altogether: move it to the cosmos-sdk
  61. - `cryptostore.Generator` takes a secret
  62. - Remove `String()` from `Signature` interface
  63. FEATURES:
  64. - `keys`: add CRC16 error correcting code
  65. IMPROVEMENTS:
  66. - Allow no passwords on keys for development convenience
  67. ## 0.2.1 (June 21, 2017)
  68. - Improve keys command
  69. - No password prompts in non-interactive mode (echo 'foobar' | keys new foo)
  70. - Added support for seed phrases
  71. - Seed phrase now returned on `keys new`
  72. - Add `keys restore` to restore private key from key phrase
  73. - Checksum to verify typos in the seed phrase (rather than just a useless key)
  74. - Add `keys delete` to remove a key if needed
  75. ## 0.2.0 (May 18, 2017)
  76. BREAKING CHANGES:
  77. - [hd] The following functions no longer take a `coin string` as argument: `ComputeAddress`, `AddrFromPubKeyBytes`, `ComputeAddressForPrivKey`, `ComputeWIF`, `WIFFromPrivKeyBytes`
  78. - Changes to `PrivKey`, `PubKey`, and `Signature` (denoted `Xxx` below):
  79. - interfaces are renamed `XxxInner`, and are not for use outside the package, though they must be exposed for sake of serialization.
  80. - `Xxx` is now a struct that wraps the corresponding `XxxInner` interface
  81. FEATURES:
  82. - `github.com/tendermint/go-keys -> github.com/tendermint/go-crypto/keys` - command and lib for generating and managing encrypted keys
  83. - [hd] New function `WIFFromPrivKeyBytes(privKeyBytes []byte, compress bool) string`
  84. - Changes to `PrivKey`, `PubKey`, and `Signature` (denoted `Xxx` below):
  85. - Expose a new method `Unwrap() XxxInner` on the `Xxx` struct which returns the corresponding `XxxInner` interface
  86. - Expose a new method `Wrap() Xxx` on the `XxxInner` interface which returns the corresponding `Xxx` struct
  87. IMPROVEMENTS:
  88. - Update to use new `tmlibs` repository
  89. ## 0.1.0 (April 14, 2017)
  90. Initial release