@ledgerhq/react-native-hw-transport-ble 6.29.6-nightly.2 → 6.30.0-next.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.
@@ -1,4 +1,4 @@
1
1
 
2
- > @ledgerhq/react-native-hw-transport-ble@6.29.6-nightly.1 build /home/runner/work/ledger-live/ledger-live/libs/ledgerjs/packages/react-native-hw-transport-ble
2
+ > @ledgerhq/react-native-hw-transport-ble@6.29.5 build /home/runner/work/ledger-live/ledger-live/libs/ledgerjs/packages/react-native-hw-transport-ble
3
3
  > tsc && tsc -m ES6 --outDir lib-es
4
4
 
@@ -0,0 +1,3 @@
1
+ {
2
+ "entry": ["src/BleTransport.ts"]
3
+ }
package/CHANGELOG.md CHANGED
@@ -1,27 +1,21 @@
1
1
  # @ledgerhq/react-native-hw-transport-ble
2
2
 
3
- ## 6.29.6-nightly.2
3
+ ## 6.30.0-next.0
4
4
 
5
- ### Patch Changes
6
-
7
- - Updated dependencies [[`7968dfc551`](https://github.com/LedgerHQ/ledger-live/commit/7968dfc551acca00b7fabf00a726758d74be33de)]:
8
- - @ledgerhq/hw-transport@6.28.9-nightly.2
9
-
10
- ## 6.29.6-nightly.1
11
-
12
- ### Patch Changes
5
+ ### Minor Changes
13
6
 
14
- - Updated dependencies [[`6b7fc5d071`](https://github.com/LedgerHQ/ledger-live/commit/6b7fc5d0711a83ed2fcacacd02795862a4a3bf1d)]:
15
- - @ledgerhq/hw-transport@6.28.9-nightly.1
7
+ - [#4709](https://github.com/LedgerHQ/ledger-live/pull/4709) [`9e2d32aec4`](https://github.com/LedgerHQ/ledger-live/commit/9e2d32aec4ebd8774880f94e3ef0e805ebb172ac) Thanks [@alexandremgo](https://github.com/alexandremgo)! - feat: usage of new tracing system
16
8
 
17
- ## 6.29.6-nightly.0
9
+ The tracing helps keeping a context (for ex a `job id`) that is propagated to other logs,
10
+ creating a (simple) tracing span
18
11
 
19
12
  ### Patch Changes
20
13
 
21
- - Updated dependencies [[`4d6fa0772e`](https://github.com/LedgerHQ/ledger-live/commit/4d6fa0772e19cdbd4b432fafa43621c42e2a5fdd)]:
22
- - @ledgerhq/errors@6.15.0-nightly.0
23
- - @ledgerhq/devices@8.0.8-nightly.0
24
- - @ledgerhq/hw-transport@6.28.9-nightly.0
14
+ - Updated dependencies [[`9e2d32aec4`](https://github.com/LedgerHQ/ledger-live/commit/9e2d32aec4ebd8774880f94e3ef0e805ebb172ac), [`7968dfc551`](https://github.com/LedgerHQ/ledger-live/commit/7968dfc551acca00b7fabf00a726758d74be33de), [`6b7fc5d071`](https://github.com/LedgerHQ/ledger-live/commit/6b7fc5d0711a83ed2fcacacd02795862a4a3bf1d), [`9e2d32aec4`](https://github.com/LedgerHQ/ledger-live/commit/9e2d32aec4ebd8774880f94e3ef0e805ebb172ac), [`4d6fa0772e`](https://github.com/LedgerHQ/ledger-live/commit/4d6fa0772e19cdbd4b432fafa43621c42e2a5fdd)]:
15
+ - @ledgerhq/logs@6.11.0-next.0
16
+ - @ledgerhq/hw-transport@6.29.0-next.0
17
+ - @ledgerhq/errors@6.15.0-next.0
18
+ - @ledgerhq/devices@8.0.8-next.0
25
19
 
26
20
  ## 6.29.5
27
21
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@ledgerhq/react-native-hw-transport-ble",
3
- "version": "6.29.6-nightly.2",
3
+ "version": "6.30.0-next.0",
4
4
  "description": "Ledger Hardware Wallet Bluetooth BLE transport for React Native",
5
5
  "keywords": [
6
6
  "Ledger",
@@ -25,14 +25,12 @@
25
25
  "types": "lib/BleTransport.d.ts",
26
26
  "license": "Apache-2.0",
27
27
  "dependencies": {
28
- "invariant": "^2.2.4",
29
28
  "react-native-ble-plx": "2.0.3",
30
29
  "rxjs": "^7.8.1",
31
- "uuid": "^3.4.0",
32
- "@ledgerhq/devices": "^8.0.8-nightly.0",
33
- "@ledgerhq/errors": "^6.15.0-nightly.0",
34
- "@ledgerhq/hw-transport": "^6.28.9-nightly.2",
35
- "@ledgerhq/logs": "^6.10.1"
30
+ "@ledgerhq/devices": "^8.0.8-next.0",
31
+ "@ledgerhq/errors": "^6.15.0-next.0",
32
+ "@ledgerhq/hw-transport": "^6.29.0-next.0",
33
+ "@ledgerhq/logs": "^6.11.0-next.0"
36
34
  },
37
35
  "gitHead": "dd0dea64b58e5a9125c8a422dcffd29e5ef6abec",
38
36
  "devDependencies": {
@@ -52,6 +50,7 @@
52
50
  "watch": "tsc --watch",
53
51
  "lint": "eslint ./src --no-error-on-unmatched-pattern --ext .ts,.tsx --cache",
54
52
  "lint:fix": "pnpm lint --fix",
55
- "test": "jest --runInBand"
53
+ "test": "jest --runInBand",
54
+ "unimported": "unimported"
56
55
  }
57
56
  }