@ledgerhq/errors 6.16.1-nightly.0 → 6.16.1
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 +29 -2
- package/package.json +4 -4
package/.turbo/turbo-build.log
CHANGED
package/CHANGELOG.md
CHANGED
|
@@ -1,10 +1,10 @@
|
|
|
1
1
|
# @ledgerhq/errors
|
|
2
2
|
|
|
3
|
-
## 6.16.1
|
|
3
|
+
## 6.16.1
|
|
4
4
|
|
|
5
5
|
### Patch Changes
|
|
6
6
|
|
|
7
|
-
- [#5171](https://github.com/LedgerHQ/ledger-live/pull/5171) [`
|
|
7
|
+
- [#5171](https://github.com/LedgerHQ/ledger-live/pull/5171) [`52a3732`](https://github.com/LedgerHQ/ledger-live/commit/52a373273dee3b2cb5a3e8d2d4b05f90616d71a2) Thanks [@alexandremgo](https://github.com/alexandremgo)! - Feat: new abort timeout on opening transport and APDU exchange
|
|
8
8
|
|
|
9
9
|
On `@ledgerhq/hw-transport`
|
|
10
10
|
|
|
@@ -19,6 +19,33 @@
|
|
|
19
19
|
- `cancelPendingOperations`: using a `currentTransactionIds` array of transactions id for each `write`, we can try to abort completely pending writes
|
|
20
20
|
- More documentation + tracing + simple unit tests
|
|
21
21
|
|
|
22
|
+
- [#5432](https://github.com/LedgerHQ/ledger-live/pull/5432) [`4d1aade`](https://github.com/LedgerHQ/ledger-live/commit/4d1aade53cd33f8e7548ce340f54fbb834bdcdcb) Thanks [@alexandremgo](https://github.com/alexandremgo)! - chore: refactoring TransportStatusError
|
|
23
|
+
|
|
24
|
+
Refactor into a real class in order to improve TS inference
|
|
25
|
+
|
|
26
|
+
## 6.16.1-next.0
|
|
27
|
+
|
|
28
|
+
### Patch Changes
|
|
29
|
+
|
|
30
|
+
- [#5171](https://github.com/LedgerHQ/ledger-live/pull/5171) [`52a3732`](https://github.com/LedgerHQ/ledger-live/commit/52a373273dee3b2cb5a3e8d2d4b05f90616d71a2) Thanks [@alexandremgo](https://github.com/alexandremgo)! - Feat: new abort timeout on opening transport and APDU exchange
|
|
31
|
+
|
|
32
|
+
On `@ledgerhq/hw-transport`
|
|
33
|
+
|
|
34
|
+
- `exchange` adding an optional `abortTimeoutMs` arg to its definition
|
|
35
|
+
- `send` taking an optional `abortTimeoutMs` and passing it to `exchange`
|
|
36
|
+
- Some documentation and tracing
|
|
37
|
+
|
|
38
|
+
On `@ledgerhq/react-native-hw-transport-ble`
|
|
39
|
+
|
|
40
|
+
- `open`: enabling optional timeout when opening a transport instance
|
|
41
|
+
- `exchange`: enabling optional timeout on APDU exchange, calling `cancelPendingOperations` on timeout
|
|
42
|
+
- `cancelPendingOperations`: using a `currentTransactionIds` array of transactions id for each `write`, we can try to abort completely pending writes
|
|
43
|
+
- More documentation + tracing + simple unit tests
|
|
44
|
+
|
|
45
|
+
- [#5432](https://github.com/LedgerHQ/ledger-live/pull/5432) [`4d1aade`](https://github.com/LedgerHQ/ledger-live/commit/4d1aade53cd33f8e7548ce340f54fbb834bdcdcb) Thanks [@alexandremgo](https://github.com/alexandremgo)! - chore: refactoring TransportStatusError
|
|
46
|
+
|
|
47
|
+
Refactor into a real class in order to improve TS inference
|
|
48
|
+
|
|
22
49
|
## 6.16.0
|
|
23
50
|
|
|
24
51
|
### Minor Changes
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@ledgerhq/errors",
|
|
3
|
-
"version": "6.16.1
|
|
3
|
+
"version": "6.16.1",
|
|
4
4
|
"description": "Ledger common errors",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"Ledger"
|
|
@@ -22,13 +22,13 @@
|
|
|
22
22
|
"license": "Apache-2.0",
|
|
23
23
|
"gitHead": "dd0dea64b58e5a9125c8a422dcffd29e5ef6abec",
|
|
24
24
|
"devDependencies": {
|
|
25
|
-
"@types/jest": "^29.5.
|
|
25
|
+
"@types/jest": "^29.5.10",
|
|
26
26
|
"@types/node": "^20.8.10",
|
|
27
27
|
"documentation": "14.0.2",
|
|
28
|
-
"jest": "^
|
|
28
|
+
"jest": "^29.7.0",
|
|
29
29
|
"rimraf": "^4.4.1",
|
|
30
30
|
"source-map-support": "^0.5.21",
|
|
31
|
-
"ts-jest": "^
|
|
31
|
+
"ts-jest": "^29.1.1",
|
|
32
32
|
"ts-node": "^10.4.0"
|
|
33
33
|
},
|
|
34
34
|
"scripts": {
|