Skip to content

Commit 5d82eca

Browse files
authored
chore(release): update changelog and bump version to 1.5.0-rc.1 (#2291)
1 parent 244f5f9 commit 5d82eca

File tree

45 files changed

+113
-67
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

45 files changed

+113
-67
lines changed

CHANGELOG.md

Lines changed: 43 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,46 @@
1+
## [1.5.0-rc.1](https://github.com/dashpay/platform/compare/v1.4.1...v1.5.0-rc.1) (2024-10-30)
2+
3+
4+
### ⚠ BREAKING CHANGES
5+
6+
* **sdk:** return consensus errors from broadcast methods (#2274)
7+
* **sdk:** provide request execution information (#2259)
8+
* **sdk:** wrong order of objects returned by Drive (#2207)
9+
10+
### Features
11+
12+
* **dashmate:** add protocol version to the status command ([#2255](https://github.com/dashpay/platform/issues/2255))
13+
* **sdk:** added transfer transition to rs-sdk ([#2289](https://github.com/dashpay/platform/issues/2289))
14+
* **sdk:** detect stale nodes ([#2254](https://github.com/dashpay/platform/issues/2254))
15+
* **sdk:** provide request execution information ([#2259](https://github.com/dashpay/platform/issues/2259))
16+
* **sdk:** return consensus errors from broadcast methods ([#2274](https://github.com/dashpay/platform/issues/2274))
17+
* **sdk:** sdk-level retry logic for `fetch` and `fetch_many` ([#2266](https://github.com/dashpay/platform/issues/2266))
18+
19+
20+
### Bug Fixes
21+
22+
* **dapi:** invalid state transition failed with already in chain error ([#2270](https://github.com/dashpay/platform/issues/2270))
23+
* **dashmate:** invalid drive status check ([#2248](https://github.com/dashpay/platform/issues/2248))
24+
* **dashmate:** invalid platform version in the status command ([#2249](https://github.com/dashpay/platform/issues/2249))
25+
* document query start to support pagination ([#2284](https://github.com/dashpay/platform/issues/2284))
26+
* **sdk:** `AddressListError` is private ([#2278](https://github.com/dashpay/platform/issues/2278))
27+
* **sdk:** opposite retry trigger ([#2265](https://github.com/dashpay/platform/issues/2265))
28+
* **sdk:** wrong order of objects returned by Drive ([#2207](https://github.com/dashpay/platform/issues/2207))
29+
* seed nodes aren't responding ([#2276](https://github.com/dashpay/platform/issues/2276))
30+
31+
32+
### Miscellaneous Chores
33+
34+
* add partial eq to document query ([#2253](https://github.com/dashpay/platform/issues/2253))
35+
* **dashmate:** report port check errors ([#2245](https://github.com/dashpay/platform/issues/2245))
36+
* move BLS Sigs import to Rust Dash Core ([#2252](https://github.com/dashpay/platform/issues/2252))
37+
* update to latest rust dash core with x11 optional ([#2251](https://github.com/dashpay/platform/issues/2251))
38+
39+
40+
### Code Refactoring
41+
42+
* platform version refactoring into sub versions ([#2269](https://github.com/dashpay/platform/issues/2269))
43+
144
### [1.4.1](https://github.com/dashpay/platform/compare/v1.4.0...v1.4.1) (2024-10-12)
245

346

Cargo.lock

Lines changed: 25 additions & 25 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@dashevo/platform",
3-
"version": "1.4.1",
3+
"version": "1.5.0-rc.1",
44
"private": true,
55
"scripts": {
66
"setup": "yarn install && yarn run build && yarn run configure",

packages/bench-suite/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"name": "@dashevo/bench-suite",
33
"private": true,
4-
"version": "1.4.1",
4+
"version": "1.5.0-rc.1",
55
"description": "Dash Platform benchmark tool",
66
"scripts": {
77
"bench": "node ./bin/bench.js",

packages/check-features/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "check-features"
3-
version = "1.4.1"
3+
version = "1.5.0-rc.1"
44
edition = "2021"
55

66
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html

packages/dapi-grpc/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
[package]
22
name = "dapi-grpc"
33
description = "GRPC client for Dash Platform"
4-
version = "1.4.1"
4+
version = "1.5.0-rc.1"
55
authors = [
66
"Samuel Westrich <[email protected]>",
77
"Igor Markin <[email protected]>",

packages/dapi-grpc/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@dashevo/dapi-grpc",
3-
"version": "1.4.1",
3+
"version": "1.5.0-rc.1",
44
"description": "DAPI GRPC definition file and generated clients",
55
"browser": "browser.js",
66
"main": "node.js",

packages/dapi/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"name": "@dashevo/dapi",
33
"private": true,
4-
"version": "1.4.1",
4+
"version": "1.5.0-rc.1",
55
"description": "A decentralized API for the Dash network",
66
"scripts": {
77
"api": "node scripts/api.js",

packages/dash-spv/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@dashevo/dash-spv",
3-
"version": "2.4.1",
3+
"version": "2.5.0-rc.1",
44
"description": "Repository containing SPV functions used by @dashevo",
55
"main": "index.js",
66
"scripts": {

packages/dashmate/configs/getConfigFileMigrationsFactory.js

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1029,6 +1029,9 @@ export default function getConfigFileMigrationsFactory(homeDir, defaultConfigs)
10291029
if (options.network === NETWORK_TESTNET && name !== 'base') {
10301030
options.platform.drive.tenderdash.p2p.seeds = testnet.get('platform.drive.tenderdash.p2p.seeds');
10311031
}
1032+
1033+
options.platform.drive.abci.docker.image = 'dashpay/drive:1-rc';
1034+
options.platform.dapi.api.docker.image = 'dashpay/dapi:1-rc';
10321035
});
10331036
return configFile;
10341037
},

0 commit comments

Comments
 (0)