diff --git a/CHANGELOG.md b/CHANGELOG.md index 3f9a5d228..5367fd049 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,21 @@ +# [0.15.0](https://github.com/dashevo/dapi/compare/v0.14.0...v0.15.0) (2020-09-04) + + +### Features + +* update to DAPI gRPC 0.15 ([#298](https://github.com/dashevo/dapi/issues/298)) +* remove getUTXO & getAddressSummary rpc methods ([#292](https://github.com/dashevo/dapi/issues/292), [#293](https://github.com/dashevo/dapi/issues/293)) +* rename sendTransaction and applyStateTransition to broadcast ([#287](https://github.com/dashevo/dapi/pull/287)) + + +### BREAKING CHANGES + +* `broadcastTransaction` and `broadcastStatTransition` gRPC method names are using instead of `sendTransaction` and `applyStateTransition` +* TxFilterStream `subscribeToTransactionsWithProofs` endpoint uses `Core` gRPC service +* see [DAPI gRPC breaking changes](https://github.com/dashevo/dapi-grpc/releases/tag/v0.15.0) + + + # [0.14.0](https://github.com/dashevo/dapi/compare/v0.13.0...v0.14.0) (2020-07-23) ### Bug Fixes diff --git a/package-lock.json b/package-lock.json index 0b9a3a6b0..a794ca929 100644 --- a/package-lock.json +++ b/package-lock.json @@ -1,6 +1,6 @@ { "name": "@dashevo/dapi", - "version": "0.15.0-dev.6", + "version": "0.15.0", "lockfileVersion": 1, "requires": true, "dependencies": { @@ -144,12 +144,12 @@ } }, "@dashevo/dapi-client": { - "version": "0.15.0-dev.5", - "resolved": "https://registry.npmjs.org/@dashevo/dapi-client/-/dapi-client-0.15.0-dev.5.tgz", - "integrity": "sha512-lFrVEKOFQgf8d7osH5dLo8L43wcvy1Lob7o86Wej38+T5VTK6Mmw+ShoCP+TnbBjJOg31QvcaIOLz/cvjK7Mfg==", + "version": "0.15.0", + "resolved": "https://registry.npmjs.org/@dashevo/dapi-client/-/dapi-client-0.15.0.tgz", + "integrity": "sha512-VTkzZtYVFaJ9w4/t+rYVQKc/pBBrzLZvM3KYVb1kUT+zUwj1N0VBlyMi5ndCxAFGcJb0YTEGHhwX2mKJMxTT9w==", "dev": true, "requires": { - "@dashevo/dapi-grpc": "~0.15.0-dev.3", + "@dashevo/dapi-grpc": "~0.15.0", "@dashevo/dashcore-lib": "~0.18.12", "axios": "^0.19.2", "cbor": "^5.0.1", @@ -175,9 +175,9 @@ } }, "@dashevo/dapi-grpc": { - "version": "0.15.0-dev.4", - "resolved": "https://registry.npmjs.org/@dashevo/dapi-grpc/-/dapi-grpc-0.15.0-dev.4.tgz", - "integrity": "sha512-romFL8IQAFc94hu2TR2y3qdfh67ESEx/iSOBYFvK3jHFwkbjJ+liw3+hZye8H0zlN/c6d2/2F890XtdpmK2OiQ==", + "version": "0.15.0", + "resolved": "https://registry.npmjs.org/@dashevo/dapi-grpc/-/dapi-grpc-0.15.0.tgz", + "integrity": "sha512-2SaO6C/zTDJSVnENd/r1f+9zxixMuvbmDYhKBPQw7HROeuBIsLYDRRROZwBnFUx/oPACFJOcnuyaScauYcNDxg==", "requires": { "@dashevo/grpc-common": "^0.3.0", "google-protobuf": "^3.12.2", @@ -363,12 +363,12 @@ } }, "@dashevo/dpp": { - "version": "0.15.0-dev.7", - "resolved": "https://registry.npmjs.org/@dashevo/dpp/-/dpp-0.15.0-dev.7.tgz", - "integrity": "sha512-GNZfyK4oyphB3nVaY8Vg7tQ6VJCQ6I7/KnOu3/UEOvXeCemcUlbWkEa4q6OGIReeQBTZijFoVH7ZCDVRIYo7Dg==", + "version": "0.15.0", + "resolved": "https://registry.npmjs.org/@dashevo/dpp/-/dpp-0.15.0.tgz", + "integrity": "sha512-O/qsfLYTbi6QmjTiG8Zw+su8RLozL9vf0MhzmfKuqZK7M6AzgvKh/jlZhDgCN9R2S2rYhz77ybHUwjodJiLFOg==", "requires": { "@apidevtools/json-schema-ref-parser": "^8.0.0", - "@dashevo/dashcore-lib": "~0.18.11", + "@dashevo/dashcore-lib": "^0.18.12", "ajv": "^6.12.0", "bs58": "^4.0.1", "cbor": "^5.0.1", diff --git a/package.json b/package.json index f47903909..fae5a7939 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "@dashevo/dapi", - "version": "0.15.0-dev.6", + "version": "0.15.0", "description": "A decentralized API for the Dash network", "scripts": { "api": "node scripts/api.js", @@ -30,10 +30,10 @@ "all": true }, "dependencies": { - "@dashevo/dapi-grpc": "~0.15.0-dev.4", + "@dashevo/dapi-grpc": "~0.15.0", "@dashevo/dashcore-lib": "~0.18.12", "@dashevo/dashd-rpc": "^2.0.0", - "@dashevo/dpp": "~0.15.0-dev.7", + "@dashevo/dpp": "~0.15.0", "@dashevo/grpc-common": "~0.3.0", "ajv": "^6.4.0", "bs58": "^4.0.1", @@ -49,7 +49,7 @@ "zeromq": "^5.2.0" }, "devDependencies": { - "@dashevo/dapi-client": "~0.15.0-dev.5", + "@dashevo/dapi-client": "~0.15.0", "@dashevo/dp-services-ctl": "~0.14.0", "chai": "^4.2.0", "chai-as-promised": "^7.1.1",