Skip to content

Commit 24d16fb

Browse files
πŸ”– (release) [NO-ISSUE]: New release incoming: DMK 1.6.0 (#1544)
2 parents 115a44b + 06f4c3c commit 24d16fb

171 files changed

Lines changed: 10412 additions & 975 deletions

File tree

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.
Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
---
2+
"@ledgerhq/device-signer-kit-solana": minor
3+
---
4+
5+
Use APDU chunk mechanism factorized into signer-utils package
Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
---
2+
"@ledgerhq/device-signer-kit-hyperliquid": patch
3+
---
4+
5+
Fix APDU length by using chunk mechanism
Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
---
2+
"@ledgerhq/device-signer-kit-solana": minor
3+
---
4+
5+
Add solana clear sign commands
Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
---
2+
"@ledgerhq/signer-utils": minor
3+
---
4+
5+
APDU chunk mechanism factorized
Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
---
2+
"@ledgerhq/device-signer-kit-solana": minor
3+
---
4+
5+
Extend the Solana transaction parser for clear-signing
Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
---
2+
"@ledgerhq/device-signer-kit-zcash": minor
3+
---
4+
5+
Implement transparent Zcash payment signing (`signTransaction`) with Ledger Wallet–compatible `LegacyCreateTransactionArg`, trusted-input flow, Sapling output commit, and signed transaction assembly. Add commands, task wiring, Vitest coverage, and README usage docs.

β€Ž.changeset/yummy-news-bow.mdβ€Ž

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
---
2+
"@ledgerhq/device-signer-kit-polkadot": minor
3+
---
4+
5+
Init polkadot device management kit signer
Lines changed: 36 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,36 @@
1+
name: "[Sonar] Develop baseline"
2+
on:
3+
push:
4+
branches:
5+
- develop
6+
7+
env:
8+
FORCE_COLOR: "1"
9+
10+
permissions:
11+
contents: read
12+
13+
concurrency:
14+
group: ${{ github.workflow }}-${{ github.ref }}
15+
cancel-in-progress: true
16+
17+
jobs:
18+
sonar:
19+
name: Run tests and Sonar scan
20+
runs-on: ledgerhq-device-sdk
21+
steps:
22+
- uses: actions/checkout@v6
23+
with:
24+
fetch-depth: 0
25+
26+
- uses: LedgerHQ/device-sdk-ts/.github/actions/setup-with-build-cache-composite@develop
27+
28+
- name: Tests
29+
id: unit-tests
30+
run: pnpm test:coverage
31+
32+
- uses: sonarsource/sonarqube-scan-action@v7
33+
if: ${{ steps.unit-tests.conclusion == 'success' }}
34+
env:
35+
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
36+
SONAR_TOKEN: ${{ secrets.SONAR_TOKEN }}

β€Ž.github/workflows/pull_request.ymlβ€Ž

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -124,6 +124,8 @@ jobs:
124124
runs-on: ${{ !github.event.pull_request.head.repo.fork && 'ledgerhq-device-sdk' || 'ubuntu-22.04' }}
125125
steps:
126126
- uses: actions/checkout@v6
127+
with:
128+
fetch-depth: 0
127129

128130
- uses: LedgerHQ/device-sdk-ts/.github/actions/setup-with-build-cache-composite@develop
129131

@@ -134,8 +136,8 @@ jobs:
134136
- uses: sonarsource/sonarqube-scan-action@v7
135137
if: ${{ steps.unit-tests.conclusion == 'success' && github.actor != 'dependabot[bot]' && !github.event.pull_request.head.repo.fork }}
136138
env:
137-
SONAR_TOKEN: ${{ secrets.PUBLIC_GREEN_SONAR_TOKEN }}
138-
SONAR_HOST_URL: ${{ vars.PUBLIC_SONAR_HOST_URL }}
139+
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
140+
SONAR_TOKEN: ${{ secrets.SONAR_TOKEN }}
139141

140142
cs-tester:
141143
needs: [build-libraries, detect-changes]

β€Ž.github/workflows/sync_doc.ymlβ€Ž

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -37,9 +37,9 @@ jobs:
3737
3838
- name: Copy files
3939
run: |
40-
rm -rf portal/pages/docs/device-interaction
41-
mkdir -p portal/pages/docs/device-interaction
42-
cp -r ldmk/apps/docs/pages/docs/* portal/pages/docs/device-interaction
40+
rm -rf portal/content/docs/device-interaction
41+
mkdir -p portal/content/docs/device-interaction
42+
cp -r ldmk/apps/docs/pages/docs/* portal/content/docs/device-interaction
4343
4444
4545
- name: Set branch name in outputs
@@ -53,7 +53,7 @@ jobs:
5353
cd portal
5454
# add timestamp to commit message
5555
git checkout -b ${{ steps.branch-name.outputs.BRANCH_NAME }}
56-
git add pages/docs/device-interaction
56+
git add content/docs/device-interaction
5757
git commit -m "doc: add new changes from device management kit to portal"
5858
5959
- name: Create pull request

0 commit comments

Comments
Β (0)