Skip to content

Commit

Permalink
chore(release): update changelog and bump version to 0.25.16 (#1632)
Browse files Browse the repository at this point in the history
  • Loading branch information
shumkov authored Dec 11, 2023
1 parent 38d1f4c commit d928f85
Show file tree
Hide file tree
Showing 42 changed files with 128 additions and 63 deletions.
65 changes: 65 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,68 @@
### [0.25.16](https://github.com/dashpay/platform/compare/v0.25.15...v0.25.16) (2023-12-06)

### ⚠ BREAKING CHANGES

* **dashmate:** removed `docker.network.bindIp`, please use specific host configuration option (#1630)
* data contracts require position to be defined for object properties
* previously created state is not compatible
* upgrade to Node.JS v20 (#1562)


### Features

* **platform:** document serialization across versions ([#1594](https://github.com/dashpay/platform/issues/1594))
* **dashmate:** configure service listening interfaces ([#1630](https://github.com/dashpay/platform/issues/1630))
* **dashmate:** allow dashmate to update minor core versions ([#1619](https://github.com/dashpay/platform/issues/1619))
* **dashmate:** insight, core block explorer ([#1581](https://github.com/dashpay/platform/issues/1581))
* **dashmate:** update core version to 20.0.1 ([#1588](https://github.com/dashpay/platform/issues/1588))
* **dashmate:** upgrade dashmate to ESM syntax ([#1562](https://github.com/dashpay/platform/issues/1562))
* **package:** bump rust packages
* **sdk:** rs-sdk support for ExtendedEpochInfo::fetch()/fetch_many() ([#1576](https://github.com/dashpay/platform/issues/1576))


### Bug Fixes

* **dashmate:** http API calls fail with `command not found error` ([#1600](https://github.com/dashpay/platform/issues/1600))
* **dapi:** tonik streams hang until first message sent ([#1605](https://github.com/dashpay/platform/issues/1605))
* **dashmate:** missing choices enumerator ([#1595](https://github.com/dashpay/platform/issues/1595))
* **dashmate:** incorrect imports ([#1591](https://github.com/dashpay/platform/issues/1591))
* drive produces wrong app hash after restart ([#1586](https://github.com/dashpay/platform/issues/1586))
* **dapi:** failure if bloom filter is not set ([#1572](https://github.com/dashpay/platform/issues/1572))
* **dashmate:** incorrect block height color on null remote block height ([#1587](https://github.com/dashpay/platform/issues/1587))

### Performance Improvements

* **dapi:** run a cluster of processes ([#1627](https://github.com/dashpay/platform/issues/1627))


### Build System

* use two faucets for parallel test suite run ([#1615](https://github.com/dashpay/platform/issues/1615))


### Miscellaneous Chores

* **dapi:** logging of the wait for state transition result logic ([#1628](https://github.com/dashpay/platform/issues/1628))
* **dashmate:** update tenderdash to 0.13.4 ([#1631](https://github.com/dashpay/platform/issues/1631))
* remove unused dependencies of rust crates ([#1578](https://github.com/dashpay/platform/issues/1578))
* upgrade to Yarn v4 ([#1562](https://github.com/dashpay/platform/issues/1562))
* upgrade to Node.JS v20 ([#1562](https://github.com/dashpay/platform/issues/1562))
* **dashmate:** remove `platform feature-flag` command ([#1616](https://github.com/dashpay/platform/issues/1616))
* **dashmate:** remove unnecessary WASM DPP ([#1607](https://github.com/dashpay/platform/issues/1607))
* **dashmate:** add platform testnet-37 support ([#1603](https://github.com/dashpay/platform/issues/1603))


### Tests

* **dashmate:** add `dashmate update` unit test ([#1609](https://github.com/dashpay/platform/issues/1609))


### Continuous Integration

* arch dependant yarn unplugged cache ([#1580](https://github.com/dashpay/platform/issues/1580))
* rs-sdk, feature and unnecessary deps testing for rust packages ([#1575](https://github.com/dashpay/platform/issues/1575))


### [0.25.16-rc.6](https://github.com/dashpay/platform/compare/v0.25.16-rc.5...v0.25.16-rc.6) (2023-12-06)


Expand Down
46 changes: 23 additions & 23 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": "0.25.16-rc.6",
"version": "0.25.16",
"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": "0.25.16-rc.6",
"version": "0.25.16",
"description": "Dash Platform benchmark tool",
"scripts": {
"bench": "node ./bin/bench.js",
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 = "0.25.16-rc.6"
version = "0.25.16"
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": "0.25.16-rc.6",
"version": "0.25.16",
"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": "0.25.16-rc.6",
"version": "0.25.16",
"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": "0.25.16-rc.6",
"version": "0.25.16",
"description": "Repository containing SPV functions used by @dashevo",
"main": "index.js",
"scripts": {
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": "0.25.16-rc.6",
"version": "0.25.16",
"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 = "0.25.16-rc.6"
version = "0.25.16"
edition = "2021"
rust-version = "1.73"
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": "0.25.16-rc.6",
"version": "0.25.16",
"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 = "0.25.16-rc.6"
version = "0.25.16"
edition = "2021"
rust-version = "1.73"
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 = "0.25.16-rc.6"
version = "0.25.16"
edition = "2021"
rust-version = "1.73"
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": "0.25.16-rc.6",
"version": "0.25.16",
"description": "A contract and helper scripts for DPNS DApp",
"scripts": {
"lint": "eslint .",
Expand Down
2 changes: 1 addition & 1 deletion packages/feature-flags-contract/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
[package]
name = "feature-flags-contract"
description = "Feature flags data contract schema and tools"
version = "0.25.16-rc.6"
version = "0.25.16"
edition = "2021"
rust-version = "1.73"
license = "MIT"
Expand Down
2 changes: 1 addition & 1 deletion packages/feature-flags-contract/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@dashevo/feature-flags-contract",
"version": "0.25.16-rc.6",
"version": "0.25.16",
"description": "Data Contract to store Dash Platform feature flags",
"scripts": {
"build": "",
Expand Down
Loading

0 comments on commit d928f85

Please sign in to comment.