Skip to content
This repository has been archived by the owner on Jan 12, 2022. It is now read-only.

chore(release): bump version to 7.21.0 #341

Merged
merged 5 commits into from
Oct 25, 2021
Merged
Show file tree
Hide file tree
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
38 changes: 38 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,41 @@
# [7.21.0](https://github.com/dashevo/wallet-lib/compare/v7.21.0-dev.16...v7.21.0) (2021-10-21)
shumkov marked this conversation as resolved.
Show resolved Hide resolved


### Features

* provide plugin dependencies sorting ([#281](https://github.com/dashevo/wallet-lib/issues/281))
* **Keychain:** `getHardenedDIP15AccountKey`, `getDIP15ExtendedPrivateKey` ([#282](https://github.com/dashevo/wallet-lib/issues/282))
* overridable coinbase maturity value ([#322](https://github.com/dashevo/wallet-lib/issues/322))
* retry policy of unconfirmed transaction from stream ([#304](https://github.com/dashevo/wallet-lib/issues/304)), closes [#303](https://github.com/dashevo/wallet-lib/issues/303)
* implement transaction metadata handling ([#291](https://github.com/dashevo/wallet-lib/issues/291), [#303](https://github.com/dashevo/wallet-lib/issues/303))
* transaction history ([#295](https://github.com/dashevo/wallet-lib/issues/295)), closes [#303](https://github.com/dashevo/wallet-lib/issues/303)
* **TransactionSyncWorker:** improve stream response handling ([#323](https://github.com/dashevo/wallet-lib/issues/323), [#339](https://github.com/dashevo/wallet-lib/issues/339), [#338](https://github.com/dashevo/wallet-lib/issues/338), [#336](https://github.com/dashevo/wallet-lib/issues/336))
* prevent broadcast and throw error on transaction below min relay fee ([#305](https://github.com/dashevo/wallet-lib/issues/305))
* provide watch-only mode for public key and address based wallet ([#290](https://github.com/dashevo/wallet-lib/issues/290))


### Bug Fixes

* logger doesn't work in the browser ([#330](https://github.com/dashevo/wallet-lib/issues/330))
* typings fix for `waitForInstantLock` ([#289](https://github.com/dashevo/wallet-lib/issues/289))
* correct logging of identity fetched ([#310](https://github.com/dashevo/wallet-lib/issues/310))
* correctly announced when a plugin is initialized ([#321](https://github.com/dashevo/wallet-lib/issues/321))
* `stream.cancel` were causing double-free and segfault ([#328](https://github.com/dashevo/wallet-lib/issues/328), [#329](https://github.com/dashevo/wallet-lib/issues/329))
* grpc-web doesn't throw cancel error ([#332](https://github.com/dashevo/wallet-lib/issues/332))


### Refactoring

* **Keychain**: proper naming for BIP44 and DIP9 get keys methods ([#288](https://github.com/dashevo/wallet-lib/issues/288))


### BREAKING CHANGES

* `getHardenedBIP44Path` renamed to `getHardenedBIP44HDKey`
* `getHardenedDIP9FeaturePath` renamed to `getHardenedDIP9FeatureHDKey`



## [7.20.1](https://github.com/dashevo/wallet-lib/compare/v7.20.0...v7.20.1) (2021-07-28)


Expand Down
72 changes: 36 additions & 36 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

6 changes: 3 additions & 3 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@dashevo/wallet-lib",
"version": "7.21.0-dev.16",
"version": "7.21.0",
"description": "Light wallet library for Dash",
"main": "src/index.js",
"unpkg": "dist/wallet-lib.min.js",
Expand Down Expand Up @@ -37,9 +37,9 @@
},
"homepage": "https://github.com/dashevo/wallet-lib#readme",
"dependencies": {
"@dashevo/dapi-client": "~0.21.0-dev.13",
"@dashevo/dapi-client": "~0.21.1",
"@dashevo/dashcore-lib": "~0.19.26",
"@dashevo/dpp": "~0.21.0-dev.8",
"@dashevo/dpp": "~0.21.0",
"@dashevo/grpc-common": "~0.5.4",
"cbor": "^7.0.5",
"crypto-js": "^4.0.0",
Expand Down