Skip to content

Commit

Permalink
Merge remote-tracking branch 'origin/v1.4-dev' into refactor/sdk-mock…
Browse files Browse the repository at this point in the history
…-errors
  • Loading branch information
lklimek committed Oct 30, 2024
2 parents 40963dc + 5d82eca commit bf07db8
Show file tree
Hide file tree
Showing 45 changed files with 113 additions and 67 deletions.
43 changes: 43 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,46 @@
## [1.5.0-rc.1](https://github.com/dashpay/platform/compare/v1.4.1...v1.5.0-rc.1) (2024-10-30)


### ⚠ BREAKING CHANGES

* **sdk:** return consensus errors from broadcast methods (#2274)
* **sdk:** provide request execution information (#2259)
* **sdk:** wrong order of objects returned by Drive (#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))


### Bug Fixes

* **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))


### 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))


### Code Refactoring

* 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.4.1",
"version": "1.5.0-rc.1",
"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.4.1",
"version": "1.5.0-rc.1",
"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.4.1"
version = "1.5.0-rc.1"
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.4.1"
version = "1.5.0-rc.1"
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.4.1",
"version": "1.5.0-rc.1",
"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.4.1",
"version": "1.5.0-rc.1",
"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.4.1",
"version": "2.5.0-rc.1",
"description": "Repository containing SPV functions used by @dashevo",
"main": "index.js",
"scripts": {
Expand Down
3 changes: 3 additions & 0 deletions packages/dashmate/configs/getConfigFileMigrationsFactory.js
Original file line number Diff line number Diff line change
Expand Up @@ -1029,6 +1029,9 @@ 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.4.1",
"version": "1.5.0-rc.1",
"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.4.1"
version = "1.5.0-rc.1"
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.4.1",
"version": "1.5.0-rc.1",
"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.4.1"
version = "1.5.0-rc.1"
edition = "2021"
rust-version.workspace = true
license = "MIT"
Expand Down
2 changes: 1 addition & 1 deletion packages/dpns-contract/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
[package]
name = "dpns-contract"
description = "DPNS data contract schema and tools"
version = "1.4.1"
version = "1.5.0-rc.1"
edition = "2021"
rust-version.workspace = true
license = "MIT"
Expand Down
2 changes: 1 addition & 1 deletion packages/dpns-contract/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@dashevo/dpns-contract",
"version": "1.4.1",
"version": "1.5.0-rc.1",
"description": "A contract and helper scripts for DPNS DApp",
"scripts": {
"lint": "eslint .",
Expand Down
Loading

0 comments on commit bf07db8

Please sign in to comment.