@ledgerhq/hw-transport-webhid 6.29.0-windows-certificate.0 → 6.29.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/.turbo/turbo-build.log +1 -1
- package/CHANGELOG.md +18 -5
- package/package.json +4 -4
package/.turbo/turbo-build.log
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
1
|
|
|
2
|
-
> @ledgerhq/hw-transport-webhid@6.
|
|
2
|
+
> @ledgerhq/hw-transport-webhid@6.29.0 build /home/runner/work/ledger-live/ledger-live/libs/ledgerjs/packages/hw-transport-webhid
|
|
3
3
|
> tsc && tsc -m ES6 --outDir lib-es
|
|
4
4
|
|
package/CHANGELOG.md
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
# @ledgerhq/hw-transport-webhid
|
|
2
2
|
|
|
3
|
-
## 6.29.0
|
|
3
|
+
## 6.29.0
|
|
4
4
|
|
|
5
5
|
### Minor Changes
|
|
6
6
|
|
|
@@ -8,10 +8,23 @@
|
|
|
8
8
|
|
|
9
9
|
### Patch Changes
|
|
10
10
|
|
|
11
|
-
- Updated dependencies [[`77fa530`](https://github.com/LedgerHQ/ledger-live/commit/77fa530c8626df94fa7f9c0a8b3a99f2efa7cb11), [`cec1599`](https://github.com/LedgerHQ/ledger-live/commit/cec1599a41aa1a18a249e34312164bc93b63972f)]:
|
|
12
|
-
- @ledgerhq/hw-transport@6.31.0
|
|
13
|
-
- @ledgerhq/devices@8.4.0
|
|
14
|
-
- @ledgerhq/errors@6.17.0
|
|
11
|
+
- Updated dependencies [[`77fa530`](https://github.com/LedgerHQ/ledger-live/commit/77fa530c8626df94fa7f9c0a8b3a99f2efa7cb11), [`815ae3d`](https://github.com/LedgerHQ/ledger-live/commit/815ae3dae8027823854ada837df3dc983d09b10f), [`cec1599`](https://github.com/LedgerHQ/ledger-live/commit/cec1599a41aa1a18a249e34312164bc93b63972f), [`3b9c93c`](https://github.com/LedgerHQ/ledger-live/commit/3b9c93c0de8ceff2af96a6ee8e42b8d9c2ab7af0)]:
|
|
12
|
+
- @ledgerhq/hw-transport@6.31.0
|
|
13
|
+
- @ledgerhq/devices@8.4.0
|
|
14
|
+
- @ledgerhq/errors@6.17.0
|
|
15
|
+
|
|
16
|
+
## 6.29.0-next.0
|
|
17
|
+
|
|
18
|
+
### Minor Changes
|
|
19
|
+
|
|
20
|
+
- [#6596](https://github.com/LedgerHQ/ledger-live/pull/6596) [`77fa530`](https://github.com/LedgerHQ/ledger-live/commit/77fa530c8626df94fa7f9c0a8b3a99f2efa7cb11) Thanks [@KVNLS](https://github.com/KVNLS)! - Upgrade React Native to version 0.73.6
|
|
21
|
+
|
|
22
|
+
### Patch Changes
|
|
23
|
+
|
|
24
|
+
- Updated dependencies [[`77fa530`](https://github.com/LedgerHQ/ledger-live/commit/77fa530c8626df94fa7f9c0a8b3a99f2efa7cb11), [`815ae3d`](https://github.com/LedgerHQ/ledger-live/commit/815ae3dae8027823854ada837df3dc983d09b10f), [`cec1599`](https://github.com/LedgerHQ/ledger-live/commit/cec1599a41aa1a18a249e34312164bc93b63972f), [`3b9c93c`](https://github.com/LedgerHQ/ledger-live/commit/3b9c93c0de8ceff2af96a6ee8e42b8d9c2ab7af0)]:
|
|
25
|
+
- @ledgerhq/hw-transport@6.31.0-next.0
|
|
26
|
+
- @ledgerhq/devices@8.4.0-next.0
|
|
27
|
+
- @ledgerhq/errors@6.17.0-next.0
|
|
15
28
|
|
|
16
29
|
## 6.28.6
|
|
17
30
|
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@ledgerhq/hw-transport-webhid",
|
|
3
|
-
"version": "6.29.0
|
|
3
|
+
"version": "6.29.0",
|
|
4
4
|
"description": "Ledger Hardware Wallet WebHID implementation of the communication layer",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"Ledger",
|
|
@@ -26,9 +26,9 @@
|
|
|
26
26
|
"types": "lib/TransportWebHID.d.ts",
|
|
27
27
|
"license": "Apache-2.0",
|
|
28
28
|
"dependencies": {
|
|
29
|
-
"@ledgerhq/devices": "^8.4.0
|
|
30
|
-
"@ledgerhq/errors": "^6.17.0
|
|
31
|
-
"@ledgerhq/hw-transport": "^6.31.0
|
|
29
|
+
"@ledgerhq/devices": "^8.4.0",
|
|
30
|
+
"@ledgerhq/errors": "^6.17.0",
|
|
31
|
+
"@ledgerhq/hw-transport": "^6.31.0",
|
|
32
32
|
"@ledgerhq/logs": "^6.12.0"
|
|
33
33
|
},
|
|
34
34
|
"devDependencies": {
|