Skip to content

Commit

Permalink
chore(release): update changelog and bump version to 1.5.0 (#2300)
Browse files Browse the repository at this point in the history
  • Loading branch information
shumkov authored Nov 1, 2024
1 parent bacbd6d commit 8aa624e
Show file tree
Hide file tree
Showing 45 changed files with 119 additions and 70 deletions.
52 changes: 52 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,53 @@
## [1.5.0](https://github.com/dashpay/platform/compare/v1.4.1...v1.5.0) (2024-11-01)

### ⚠ BREAKING CHANGES

* **drive:** rotate always to top quorum. This is a breaking change requiring a HF. (#2290)
* **sdk:** SDK methods which broadcasting transactions will return `SdkError::Protocol(ProtocolError::Consensus(..))` instead of `DapiClientError(String)` in case of validation errors. (#2274)
* **sdk:** serialized consensus error moved to a separate gRPC header `dash-serialized-consensus-error-bin` (#2274)
* **sdk:** `DapiRequestExecutor::execute` and `DapiRequest::execute` now returns `ExecutionResult` (#2259)
* **sdk:** returned objects are `IndexMap/IndexSet` instead of previous `BTreeMap` (#2207)


### Features

* **dashmate:** add protocol version to the status command ([#2255](https://github.com/dashpay/platform/issues/2255))
* **sdk:** added transfer transition to rs-sdk ([#2289](https://github.com/dashpay/platform/issues/2289))
* **sdk:** detect stale nodes ([#2254](https://github.com/dashpay/platform/issues/2254))
* **sdk:** provide request execution information ([#2259](https://github.com/dashpay/platform/issues/2259))
* **sdk:** return consensus errors from broadcast methods ([#2274](https://github.com/dashpay/platform/issues/2274))
* **sdk:** sdk-level retry logic for `fetch` and `fetch_many` ([#2266](https://github.com/dashpay/platform/issues/2266))
* **dashmate:** cleanup zerossl certs command ([#2298](https://github.com/dashpay/platform/issues/2298))


### Bug Fixes

* **dashmate:** invalid mount path from helper ([#2296](https://github.com/dashpay/platform/issues/2296))
* **dashmate:** zero ssl certificate draft not saved ([#2297](https://github.com/dashpay/platform/issues/2297))
* **platform:** rotate always to top quorum ([#2290](https://github.com/dashpay/platform/issues/2290))
* **dapi:** invalid state transition failed with already in chain error ([#2270](https://github.com/dashpay/platform/issues/2270))
* **dashmate:** invalid drive status check ([#2248](https://github.com/dashpay/platform/issues/2248))
* **dashmate:** invalid platform version in the status command ([#2249](https://github.com/dashpay/platform/issues/2249))
* document query start to support pagination ([#2284](https://github.com/dashpay/platform/issues/2284))
* **sdk:** `AddressListError` is private ([#2278](https://github.com/dashpay/platform/issues/2278))
* **sdk:** opposite retry trigger ([#2265](https://github.com/dashpay/platform/issues/2265))
* **sdk:** wrong order of objects returned by Drive ([#2207](https://github.com/dashpay/platform/issues/2207))
* seed nodes aren't responding ([#2276](https://github.com/dashpay/platform/issues/2276))


### Code Refactoring

* platform version refactoring into sub versions ([#2269](https://github.com/dashpay/platform/issues/2269))


### Miscellaneous Chores

* add partial eq to document query ([#2253](https://github.com/dashpay/platform/issues/2253))
* **dashmate:** report port check errors ([#2245](https://github.com/dashpay/platform/issues/2245))
* move BLS Sigs import to Rust Dash Core ([#2252](https://github.com/dashpay/platform/issues/2252))
* update to latest rust dash core with x11 optional ([#2251](https://github.com/dashpay/platform/issues/2251))


## [1.5.0-rc.2](https://github.com/dashpay/platform/compare/v1.5.0-rc.1...v1.5.0-rc.2) (2024-10-31)


Expand All @@ -12,6 +62,7 @@
* **dashmate:** zero ssl certificate draft not saved ([#2297](https://github.com/dashpay/platform/issues/2297))
* **platform:** rotate always to top quorum ([#2290](https://github.com/dashpay/platform/issues/2290))


## [1.5.0-rc.1](https://github.com/dashpay/platform/compare/v1.4.1...v1.5.0-rc.1) (2024-10-30)


Expand Down Expand Up @@ -55,6 +106,7 @@

* platform version refactoring into sub versions ([#2269](https://github.com/dashpay/platform/issues/2269))


### [1.4.1](https://github.com/dashpay/platform/compare/v1.4.0...v1.4.1) (2024-10-12)


Expand Down
50 changes: 25 additions & 25 deletions Cargo.lock

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

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@dashevo/platform",
"version": "1.5.0-rc.2",
"version": "1.5.0",
"private": true,
"scripts": {
"setup": "yarn install && yarn run build && yarn run configure",
Expand Down
2 changes: 1 addition & 1 deletion packages/bench-suite/package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "@dashevo/bench-suite",
"private": true,
"version": "1.5.0-rc.2",
"version": "1.5.0",
"description": "Dash Platform benchmark tool",
"scripts": {
"bench": "node ./bin/bench.js",
Expand Down
2 changes: 1 addition & 1 deletion packages/check-features/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "check-features"
version = "1.5.0-rc.2"
version = "1.5.0"
edition = "2021"

# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
Expand Down
2 changes: 1 addition & 1 deletion packages/dapi-grpc/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
[package]
name = "dapi-grpc"
description = "GRPC client for Dash Platform"
version = "1.5.0-rc.2"
version = "1.5.0"
authors = [
"Samuel Westrich <[email protected]>",
"Igor Markin <[email protected]>",
Expand Down
2 changes: 1 addition & 1 deletion packages/dapi-grpc/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@dashevo/dapi-grpc",
"version": "1.5.0-rc.2",
"version": "1.5.0",
"description": "DAPI GRPC definition file and generated clients",
"browser": "browser.js",
"main": "node.js",
Expand Down
2 changes: 1 addition & 1 deletion packages/dapi/package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "@dashevo/dapi",
"private": true,
"version": "1.5.0-rc.2",
"version": "1.5.0",
"description": "A decentralized API for the Dash network",
"scripts": {
"api": "node scripts/api.js",
Expand Down
2 changes: 1 addition & 1 deletion packages/dash-spv/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@dashevo/dash-spv",
"version": "2.5.0-rc.2",
"version": "2.5.0",
"description": "Repository containing SPV functions used by @dashevo",
"main": "index.js",
"scripts": {
Expand Down
3 changes: 0 additions & 3 deletions packages/dashmate/configs/getConfigFileMigrationsFactory.js
Original file line number Diff line number Diff line change
Expand Up @@ -1029,9 +1029,6 @@ export default function getConfigFileMigrationsFactory(homeDir, defaultConfigs)
if (options.network === NETWORK_TESTNET && name !== 'base') {
options.platform.drive.tenderdash.p2p.seeds = testnet.get('platform.drive.tenderdash.p2p.seeds');
}

options.platform.drive.abci.docker.image = 'dashpay/drive:1-rc';
options.platform.dapi.api.docker.image = 'dashpay/dapi:1-rc';
});
return configFile;
},
Expand Down
2 changes: 1 addition & 1 deletion packages/dashmate/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "dashmate",
"version": "1.5.0-rc.2",
"version": "1.5.0",
"description": "Distribution package for Dash node installation",
"scripts": {
"lint": "eslint .",
Expand Down
2 changes: 1 addition & 1 deletion packages/dashpay-contract/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
[package]
name = "dashpay-contract"
description = "DashPay data contract schema and tools"
version = "1.5.0-rc.2"
version = "1.5.0"
edition = "2021"
rust-version.workspace = true
license = "MIT"
Expand Down
2 changes: 1 addition & 1 deletion packages/dashpay-contract/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@dashevo/dashpay-contract",
"version": "1.5.0-rc.2",
"version": "1.5.0",
"description": "Reference contract of the DashPay DPA on Dash Evolution",
"scripts": {
"lint": "eslint .",
Expand Down
2 changes: 1 addition & 1 deletion packages/data-contracts/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
[package]
name = "data-contracts"
description = "Dash Platform system data contracts"
version = "1.5.0-rc.2"
version = "1.5.0"
edition = "2021"
rust-version.workspace = true
license = "MIT"
Expand Down
Loading

0 comments on commit 8aa624e

Please sign in to comment.