Skip to content

Commit ff54061

Browse files
authored
Merge branch 'v1.6-dev' into feat/sdk-retry-broadcast
2 parents 79ed045 + f72bbef commit ff54061

File tree

91 files changed

+2795
-893
lines changed

Some content is hidden

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

91 files changed

+2795
-893
lines changed

.github/package-filters/js-packages.yml

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,7 @@
1+
'@dashevo/wallet-utils-contract': &wallet-utils-contract
2+
- .github/workflows/tests*
3+
- packages/wallet-utils-contract/**
4+
15
'@dashevo/dashpay-contract': &dashpay-contract
26
- .github/workflows/tests*
37
- packages/dashpay-contract/**
@@ -25,6 +29,7 @@
2529
- *masternode-reward-shares-contract
2630
- *dpns-contract
2731
- *withdrawals-contract
32+
- *wallet-utils-contract
2833
- packages/rs-platform-serialization/**
2934
- packages/rs-platform-serialization-derive/**
3035
- packages/rs-platform-value/**

.github/package-filters/rs-packages.yml

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,7 @@
1+
wallet-utils-contract: &wallet-utils-contract
2+
- .github/workflows/tests*
3+
- packages/wallet-utils-contract/**
4+
15
dashpay-contract: &dashpay-contract
26
- .github/workflows/tests*
37
- packages/dashpay-contract/**
@@ -25,6 +29,7 @@ dpp: &dpp
2529
- *masternode-reward-shares-contract
2630
- *dpns-contract
2731
- *withdrawals-contract
32+
- *wallet-utils-contract
2833
- *json-schema-compatibility-validator
2934
- packages/rs-platform-serialization/**
3035
- packages/rs-platform-serialization-derive/**

.github/workflows/release-docker-image.yml

Lines changed: 8 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -33,13 +33,13 @@ jobs:
3333
build-image:
3434
name: Build ${{ matrix.platform }} image
3535
runs-on: ${{ matrix.runner }}
36-
timeout-minutes: 25
36+
timeout-minutes: 180
3737
strategy:
3838
matrix:
3939
include:
40-
- runner: ["self-hosted", "linux", "x64", "ubuntu-platform"]
40+
- runner: ubuntu-24.04
4141
platform: linux/amd64
42-
- runner: ["self-hosted", "linux", "arm64", "ubuntu-platform"]
42+
- runner: ubuntu-24.04
4343
platform: linux/arm64
4444
steps:
4545
- name: Check out repo
@@ -54,6 +54,10 @@ jobs:
5454
aws-secret-access-key: ${{ secrets.AWS_SECRET_ACCESS_KEY }}
5555
aws-region: ${{ secrets.AWS_REGION }}
5656

57+
- name: Set up QEMU
58+
uses: docker/setup-qemu-action@v3
59+
if: ${{ matrix.platform == 'linux/arm64' }}
60+
5761
- name: Build and push by digest
5862
uses: ./.github/actions/docker
5963
id: docker_build
@@ -134,6 +138,7 @@ jobs:
134138
with:
135139
username: ${{ secrets.DOCKERHUB_USERNAME }}
136140
password: ${{ secrets.DOCKERHUB_TOKEN }}
141+
137142
- name: Create manifest list and push
138143
working-directory: ${{ env.DIGEST_DIR_PATH }}
139144
run: |

.github/workflows/tests.yml

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,12 @@ on:
77
branches:
88
- master
99
- 'v[0-9]+\.[0-9]+-dev'
10+
push:
11+
branches:
12+
- master
13+
- 'v[0-9]+\.[0-9]+-dev'
14+
schedule:
15+
- cron: "30 4 * * *"
1016

1117
concurrency:
1218
group: ${{ github.workflow }}-${{ github.ref }}

.pnp.cjs

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

CHANGELOG.md

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

359
### ⚠ BREAKING CHANGES

0 commit comments

Comments
 (0)