Skip to content

Commit fbd91c7

Browse files
author
Valentin D. Pinkman
authored
🚑️ (release) [NO-ISSUE]: Release DMK 0.7.0 (#846)
2 parents c547d60 + 1eb86e9 commit fbd91c7

File tree

479 files changed

+25042
-4317
lines changed

Some content is hidden

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

479 files changed

+25042
-4317
lines changed

.changeset/blue-snakes-tell.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
---
2+
"@ledgerhq/device-transport-kit-react-native-hid": patch
3+
---
4+
5+
Fix android module name for RN 0.75

.changeset/chilly-carpets-press.md

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

.changeset/cold-garlics-suffer.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-bitcoin": patch
3+
---
4+
5+
Allow to skip opening the application

.changeset/quick-timers-sneeze.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-solana": patch
3+
---
4+
5+
Allow to skip opening the application

.changeset/silver-chefs-arrive.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
---
2+
"@ledgerhq/device-transport-kit-react-native-hid": patch
3+
---
4+
5+
Fix scanning & connection issues on rn-ble transport

.changeset/ten-drinks-love.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
---
2+
"@ledgerhq/device-transport-kit-react-native-hid": patch
3+
---
4+
5+
Implement React Native HID transport

.changeset/witty-tigers-swim.md

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

.github/workflows/merge_queue.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ concurrency:
1212
jobs:
1313
checks:
1414
name: Run health check and unit tests
15-
runs-on: ubuntu-22.04
15+
runs-on: "ledgerhq-device-sdk" # Use the custom runner for the merge queue #
1616
steps:
1717
- uses: actions/checkout@v4
1818

.github/workflows/update_toolchain.yml

Lines changed: 13 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -14,6 +14,8 @@ jobs:
1414
runs-on: ["ledgerhq-device-sdk"]
1515
steps:
1616
- uses: actions/checkout@v4
17+
with:
18+
ref: develop
1719

1820
- uses: LedgerHQ/device-sdk-ts/.github/actions/setup-toolchain-composite@develop
1921

@@ -22,7 +24,7 @@ jobs:
2224
git config user.name 'github-actions[bot]'
2325
git config user.email 'github-actions[bot]@users.noreply.github.com'
2426
git checkout -b ${{ env.BRANCH_NAME }}
25-
git push --set-upstream origin ${{ env.BRANCH_NAME }}
27+
git push --set-upstream origin ${{ env.BRANCH_NAME }} --force
2628
2729
- name: Update toolchain
2830
run: |
@@ -34,41 +36,44 @@ jobs:
3436
echo "status=$(git status --porcelain | wc -l)" >> $GITHUB_OUTPUT
3537
3638
- name: Set new versions
37-
if: steps.changes.outputs.status > 0
3839
id: new-versions
3940
run: |
4041
proto use
4142
pnpm i
43+
jq 'del(.packageManager)' package.json > tmp.json && mv tmp.json package.json
4244
echo "version=$(pnpm -v)" >> $GITHUB_OUTPUT
4345
4446
- name: Update package.json
45-
if: steps.changes.outputs.status > 0
4647
run: |
4748
jq '.packageManager = "pnpm@${{ steps.new-versions.outputs.version }}"' package.json > tmp.json && mv tmp.json package.json
4849
50+
- name: Deduplicate
51+
run: |
52+
pnpm dedupe
53+
4954
- name: Add changes to commit
50-
if: steps.changes.outputs.status > 0 && success()
5155
run: |
56+
git status
5257
git add .prototools
5358
git add package.json
59+
git add pnpm-lock.yaml
5460
5561
- name: Commit and sign
56-
if: steps.changes.outputs.status > 0 && success()
5762
uses: planetscale/[email protected]
5863
with:
5964
commit_message: "🔧 (repo): Update toolchain"
6065
repo: ${{ github.repository }}
6166
branch: ${{ env.BRANCH_NAME }}
62-
file_pattern: '*'
67+
file_pattern: '.'
6368
env:
6469
GITHUB_TOKEN: ${{ github.token }}
6570

6671
- name: Create PR
67-
if: steps.changes.outputs.status > 0 && success()
72+
continue-on-error: true
6873
run: |
6974
gh pr create \
7075
--title "🔧 (repo) [NO-ISSUE]: Update toolchain" \
71-
--body "This PR updates the toolchain (node, npm, pnpm) to the newest versions" \
76+
--body "This PR updates the toolchain (node, npm, pnpm) to the newest versions and deduplicates packages" \
7277
--base develop \
7378
--head ${{ env.BRANCH_NAME }}
7479
env:

.github/workflows/version.yml

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

0 commit comments

Comments
 (0)