Skip to content

Commit 95b6e77

Browse files
committed
chore(release): update changelog and version to 1.6.0-dev.1
1 parent c913fda commit 95b6e77

File tree

46 files changed

+133
-70
lines changed

Some content is hidden

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

46 files changed

+133
-70
lines changed

CHANGELOG.md

Lines changed: 63 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,66 @@
1+
## [1.6.0-dev.1](https://github.com/dashpay/platform/compare/v1.5.0...v1.6.0-dev.1) (2024-11-25)
2+
3+
4+
### Features
5+
6+
* hardcoded identity transfers in strategy tests ([#2322](https://github.com/dashpay/platform/issues/2322))
7+
* integrate wallet contract ([#2345](https://github.com/dashpay/platform/issues/2345))
8+
* **sdk:** fetch many and return metadata and proof to client ([#2331](https://github.com/dashpay/platform/issues/2331))
9+
* **sdk:** including grovedb proof bytes when error in proof verification ([#2332](https://github.com/dashpay/platform/issues/2332))
10+
11+
12+
### Bug Fixes
13+
14+
* **dashmate:** container name is already in use ([#2341](https://github.com/dashpay/platform/issues/2341))
15+
* **dashmate:** failing doctor with drive metrics enabled ([#2348](https://github.com/dashpay/platform/issues/2348))
16+
* **dashmate:** various ZeroSSL cert verification errors ([#2339](https://github.com/dashpay/platform/issues/2339))
17+
* document query start after ([#2347](https://github.com/dashpay/platform/issues/2347))
18+
* **drive:** apply batch is not using transaction in `remove_all_votes_given_by_identities` ([#2309](https://github.com/dashpay/platform/issues/2309))
19+
* **drive:** nonce already present in past internal error ([#2343](https://github.com/dashpay/platform/issues/2343))
20+
* **drive:** uncommitted state if db transaction fails ([#2305](https://github.com/dashpay/platform/issues/2305))
21+
* incorrect dashd tag
22+
* mn_rr activated before we have quorums
23+
* platform status
24+
* wrong migration version
25+
26+
27+
### Build System
28+
29+
* adjust docker build context ([#2336](https://github.com/dashpay/platform/issues/2336))
30+
* use cargo binstall to speed up builds ([#2321](https://github.com/dashpay/platform/issues/2321))
31+
32+
33+
### Miscellaneous Chores
34+
35+
* **dashmate:** update Core to 21.2 nightly
36+
* make protocol version 6 ([#2327](https://github.com/dashpay/platform/issues/2327))
37+
* make sure we activated mn_rr
38+
* remove `deprecatedrpc=hpmn`
39+
* remove unnecessary migration
40+
* **sdk:** expose proof verifier errors ([#2333](https://github.com/dashpay/platform/issues/2333))
41+
* **sdk:** vote poll queries encoding ([#2334](https://github.com/dashpay/platform/issues/2334))
42+
* switch core to 22 rc1
43+
* update core image
44+
* update Core only for testnet/local/devnet
45+
* update the image to recent nightly
46+
47+
48+
### Code Refactoring
49+
50+
* remove unused import
51+
* remove unused import
52+
53+
54+
### Continuous Integration
55+
56+
* do not run test on push ([#2308](https://github.com/dashpay/platform/issues/2308))
57+
* improve caching ([#2329](https://github.com/dashpay/platform/issues/2329))
58+
* prebuilt librocksdb in docker image ([#2318](https://github.com/dashpay/platform/issues/2318))
59+
* run devcontainers workflow only on push to master ([#2295](https://github.com/dashpay/platform/issues/2295))
60+
* switch release workflow to github runners ([#2346](https://github.com/dashpay/platform/issues/2346))
61+
* switch to free runners ([#2319](https://github.com/dashpay/platform/issues/2319))
62+
* use prebuilt librocksdb in github actions ([#2316](https://github.com/dashpay/platform/issues/2316))
63+
164
## [1.5.0](https://github.com/dashpay/platform/compare/v1.4.1...v1.5.0) (2024-11-01)
265

366
### ⚠ BREAKING CHANGES

Cargo.lock

Lines changed: 26 additions & 26 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.5.0",
3+
"version": "1.6.0-dev.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.5.0",
4+
"version": "1.6.0-dev.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.5.0"
3+
version = "1.6.0-dev.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.5.0"
4+
version = "1.6.0-dev.1"
55
authors = [
66
"Samuel Westrich <sam@dash.org>",
77
"Igor Markin <igor.markin@dash.org>",

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.5.0",
3+
"version": "1.6.0-dev.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.5.0",
4+
"version": "1.6.0-dev.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.5.0",
3+
"version": "2.6.0-dev.1",
44
"description": "Repository containing SPV functions used by @dashevo",
55
"main": "index.js",
66
"scripts": {

packages/dashmate/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "dashmate",
3-
"version": "1.5.0",
3+
"version": "1.6.0-dev.1",
44
"description": "Distribution package for Dash node installation",
55
"scripts": {
66
"lint": "eslint .",

0 commit comments

Comments
 (0)