Skip to content

Commit 6ab2604

Browse files
committed
update deps
1 parent bfe353f commit 6ab2604

File tree

5 files changed

+1589
-1082
lines changed

5 files changed

+1589
-1082
lines changed

.github/workflows/main.yaml

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ jobs:
2424
HEAD_BRANCH_NAME: ${{ github.head_ref }}
2525
steps:
2626
- name: Checkout
27-
uses: actions/checkout@v4
27+
uses: actions/checkout@v5
2828
with:
2929
submodules: true
3030

@@ -36,6 +36,11 @@ jobs:
3636

3737
- uses: oven-sh/setup-bun@v1
3838

39+
- name: Install build dependencies
40+
run: |
41+
apt-get update
42+
apt-get install -y build-essential python3 libusb-1.0-0-dev libudev-dev
43+
3944
- run: bun install
4045

4146
- run: bun run format:check

.github/workflows/publish.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ jobs:
2626
HEAD_BRANCH_NAME: ${{ github.head_ref }}
2727
steps:
2828
- name: Checkout
29-
uses: actions/checkout@v4
29+
uses: actions/checkout@v5
3030
with:
3131
submodules: true
3232

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55

66
[![License](https://img.shields.io/badge/License-Apache%202.0-blue.svg)](https://opensource.org/licenses/Apache-2.0)
77
[![Main](https://github.com/cosmos/ledger-cosmos-js/workflows/Main/badge.svg)](https://github.com/cosmos/ledger-cosmos-js/actions?query=workflow%3AMain)
8-
[![npm version](https://badge.fury.io/js/%40cosmos%2Fledger-cosmos-js.svg)](https://badge.fury.io/js/%40cosmos%2Fledger-cosmos-js)
8+
[![npm version](https://badge.fury.io/js/%40zondax%2Fledger-cosmos-js.svg)](https://badge.fury.io/js/%40cosmos%2Fledger-cosmos-js)
99

1010
This package provides a basic client library to communicate with a Tendermint/Cosmos App running in a Ledger Nano S/S+/X devices
1111

package.json

Lines changed: 23 additions & 23 deletions
Original file line numberDiff line numberDiff line change
@@ -36,38 +36,38 @@
3636
"upgrade": "bunx npm-check-updates -i"
3737
},
3838
"dependencies": {
39-
"@ledgerhq/hw-transport": "6.31.4",
40-
"@noble/hashes": "^1.7.1",
41-
"@scure/base": "^1.2.4",
42-
"@zondax/ledger-js": "^1.2.0",
39+
"@ledgerhq/hw-transport": "6.31.9",
40+
"@noble/hashes": "^1.8.0",
41+
"@scure/base": "^1.2.6",
42+
"@zondax/ledger-js": "^1.3.1",
4343
"buffer": "^6.0.3",
4444
"ripemd160": "^2.0.2"
4545
},
4646
"devDependencies": {
47-
"@ledgerhq/hw-transport-mocker": "^6.29.4",
48-
"@ledgerhq/hw-transport-node-hid": "^6.29.5",
49-
"@noble/curves": "^1.8.1",
47+
"@ledgerhq/hw-transport-mocker": "^6.29.9",
48+
"@ledgerhq/hw-transport-node-hid": "^6.29.10",
49+
"@noble/curves": "^1.9.7",
5050
"@trivago/prettier-plugin-sort-imports": "^5.2.2",
51-
"@types/jest": "^29.5.14",
52-
"@types/node": "^22.14.0",
53-
"@typescript-eslint/eslint-plugin": "^8.29.1",
54-
"@typescript-eslint/parser": "^8.29.1",
51+
"@types/jest": "^30.0.0",
52+
"@types/node": "^24.3.0",
53+
"@typescript-eslint/eslint-plugin": "^8.40.0",
54+
"@typescript-eslint/parser": "^8.40.0",
5555
"bip32": "5.0.0-rc.0",
5656
"bip39": "3.1.0",
57-
"eslint": "^9.24.0",
58-
"eslint-config-prettier": "^10.1.2",
59-
"eslint-plugin-import": "^2.31.0",
60-
"eslint-plugin-jest": "^28.11.0",
57+
"eslint": "^9.33.0",
58+
"eslint-config-prettier": "^10.1.8",
59+
"eslint-plugin-import": "^2.32.0",
60+
"eslint-plugin-jest": "^29.0.1",
6161
"eslint-plugin-tsdoc": "^0.4.0",
62-
"eslint-plugin-unused-imports": "^4.1.4",
63-
"jest": "^29.7.0",
64-
"jest-runner": "^29.7.0",
65-
"jest-serial-runner": "^1.2.1",
66-
"prettier": "^3.5.3",
67-
"sort-package-json": "^3.0.0",
68-
"ts-jest": "29.3.1",
62+
"eslint-plugin-unused-imports": "^4.2.0",
63+
"jest": "^30.0.5",
64+
"jest-runner": "^30.0.5",
65+
"jest-serial-runner": "^1.2.2",
66+
"prettier": "^3.6.2",
67+
"sort-package-json": "^3.4.0",
68+
"ts-jest": "29.4.1",
6969
"ts-node": "^10.9.2",
70-
"typescript": "^5.8.3"
70+
"typescript": "^5.9.2"
7171
},
7272
"volta": {
7373
"node": "20.11.1",

0 commit comments

Comments
 (0)