Skip to content

Commit c72013b

Browse files
Merge branch 'v1.7-dev' into feat/tokenSupport
2 parents cf32dd5 + bf6282d commit c72013b

File tree

79 files changed

+558
-414
lines changed

Some content is hidden

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

79 files changed

+558
-414
lines changed

.github/workflows/manage-runs.yml

Lines changed: 0 additions & 47 deletions
This file was deleted.

.github/workflows/prebuild-devcontainers.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ jobs:
1919
build:
2020
name: Build and push devcontainer
2121
runs-on: ubuntu-24.04
22-
timeout-minutes: 60
22+
timeout-minutes: 240
2323
steps:
2424
- name: Checkout repo
2525
uses: actions/checkout@v4

.github/workflows/release.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -114,7 +114,7 @@ jobs:
114114
run: yarn config set npmAuthToken ${{ secrets.NPM_TOKEN }}
115115

116116
- name: Publish NPM packages
117-
run: yarn workspaces foreach --all --no-private --parallel npm publish --access public --tag ${{ steps.tag.outputs.result }}
117+
run: yarn workspaces foreach --all --no-private --parallel npm publish --tolerate-republish --access public --tag ${{ steps.tag.outputs.result }}
118118

119119
- name: Ignore only already cached artifacts
120120
run: |

.github/workflows/tests-build-image.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -18,6 +18,7 @@ jobs:
1818
build-image:
1919
name: Build ${{ inputs.name }} image
2020
runs-on: ubuntu-24.04
21+
timeout-minutes: 30
2122
steps:
2223
- name: Check out repo
2324
uses: actions/checkout@v4

.github/workflows/tests-build-js.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,7 @@ jobs:
55
build-js:
66
name: Build JS
77
runs-on: ubuntu-24.04
8+
timeout-minutes: 10
89
steps:
910
- uses: softwareforgood/check-artifact-v4-existence@v0
1011
id: check-artifact

.github/workflows/tests-codeql.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,7 @@ jobs:
55
codeql:
66
name: Run Code QL
77
runs-on: ubuntu-24.04
8+
timeout-minutes: 15
89
permissions:
910
actions: read
1011
contents: read

.github/workflows/tests-js-package.yml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -18,6 +18,7 @@ jobs:
1818
lint:
1919
name: Linting
2020
runs-on: ubuntu-24.04
21+
timeout-minutes: 5
2122
permissions:
2223
id-token: write
2324
contents: read
@@ -40,6 +41,7 @@ jobs:
4041
test:
4142
name: Tests
4243
runs-on: ubuntu-24.04
44+
timeout-minutes: 15
4345
permissions:
4446
id-token: write
4547
contents: read

.github/workflows/tests-rs-package.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -110,6 +110,7 @@ jobs:
110110

111111
detect_structure_changes:
112112
name: Detect immutable structure changes
113+
timeout-minutes: 10
113114
runs-on: ubuntu-24.04
114115
# FIXME: as we use `gh pr view` below, this check can only
115116
# run on pull requests. We should find a way to run it

.yarnrc.yml

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -17,6 +17,10 @@ npmAuditExcludePackages:
1717
- micromatch # TODO: remove when new micromatch will be released https://github.com/advisories/GHSA-952p-6rrq-rcjv
1818
- eslint # TODO: Update eslint https://github.com/dashpay/platform/issues/2212
1919
- elliptic # TODO: Remove when elliptic >6.5.7 released
20+
- memdown # TODO: Update leveldb
21+
- levelup # TODO: Update leveldb
22+
- deferred-leveldown # TODO: Update leveldb
23+
- abstract-leveldown # TODO: Update leveldb
2024

2125
packageExtensions:
2226
"@dashevo/protobufjs@*":

CHANGELOG.md

Lines changed: 20 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,23 @@
1+
### [1.6.2](https://github.com/dashpay/platform/compare/v1.6.1...v1.6.2) (2024-12-03)
2+
3+
4+
### Bug Fixes
5+
6+
* **dashmate:** status command fails if drive is not running ([#2364](https://github.com/dashpay/platform/issues/2364))
7+
* **dashmate:** zero ssl verification passes without being verified ([#2365](https://github.com/dashpay/platform/issues/2365))
8+
9+
10+
### Miscellaneous Chores
11+
12+
* ignore leveldb deprecation warnings ([#2366](https://github.com/dashpay/platform/issues/2366))
13+
14+
15+
### Build System
16+
17+
* enable drive image for Ivy Bridge CPU ([#2363](https://github.com/dashpay/platform/issues/2363))
18+
19+
### [1.6.1](https://github.com/dashpay/platform/compare/v1.6.0...v1.6.1) (2024-11-29)
20+
121
## [1.6.0-dev.2](https://github.com/dashpay/platform/compare/v1.6.0-dev.1...v1.6.0-dev.2) (2024-11-27)
222

323

0 commit comments

Comments
 (0)