@ledgerhq/device-core 0.10.2-nightly.20260506192049 → 0.10.2

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/CHANGELOG.md CHANGED
@@ -1,15 +1,24 @@
1
1
  # @ledgerhq/device-core
2
2
 
3
- ## 0.10.2-nightly.20260506192049
3
+ ## 0.10.2
4
4
 
5
5
  ### Patch Changes
6
6
 
7
- - Updated dependencies [[`ed0dc8a`](https://github.com/LedgerHQ/ledger-live/commit/ed0dc8abc2c8f5054e655c4e12efe6fb433fbaca), [`4ddd97a`](https://github.com/LedgerHQ/ledger-live/commit/4ddd97a99bab5b581ad5ccfd36eb420ec4ee6352), [`7fafa10`](https://github.com/LedgerHQ/ledger-live/commit/7fafa10d8af581f4433a60ea908980a726d3a777), [`ac26c8b`](https://github.com/LedgerHQ/ledger-live/commit/ac26c8bffa9b5cc9f28bed5ce3d44e32982d655c), [`fb79639`](https://github.com/LedgerHQ/ledger-live/commit/fb79639eb81258bae4830ed6ffe375ae625054ad), [`321a0e2`](https://github.com/LedgerHQ/ledger-live/commit/321a0e2ce948fac11f7bdf0e106eb0af57168caa), [`d308b1a`](https://github.com/LedgerHQ/ledger-live/commit/d308b1a6b9c629839f051cf367a527f4232120c7), [`21e69fe`](https://github.com/LedgerHQ/ledger-live/commit/21e69fea49cffc0b1204903e539a64b83e4b28f0), [`fb4d165`](https://github.com/LedgerHQ/ledger-live/commit/fb4d1656be8dc8e933e55600970a2e991fbaeebb), [`5bd95a9`](https://github.com/LedgerHQ/ledger-live/commit/5bd95a9ceaac4d08c87d635f721265357368f8ee), [`73bfe05`](https://github.com/LedgerHQ/ledger-live/commit/73bfe055ec23e0d630f2da9f4dbc9731b6fe5190)]:
8
- - @ledgerhq/types-live@6.107.0-nightly.20260506192049
9
- - @ledgerhq/errors@6.35.0-nightly.20260506192049
10
- - @ledgerhq/live-network@2.6.0-nightly.20260506192049
11
- - @ledgerhq/devices@8.14.2-nightly.20260506192049
12
- - @ledgerhq/hw-transport@6.35.2-nightly.20260506192049
7
+ - Updated dependencies [[`202cc42`](https://github.com/LedgerHQ/ledger-live/commit/202cc423b09662b5b25012b84124aecd4dc7245d)]:
8
+ - @ledgerhq/errors@6.34.1
9
+ - @ledgerhq/devices@8.14.2
10
+ - @ledgerhq/hw-transport@6.35.2
11
+ - @ledgerhq/live-network@2.5.2
12
+
13
+ ## 0.10.2-hotfix.0
14
+
15
+ ### Patch Changes
16
+
17
+ - Updated dependencies [[`202cc42`](https://github.com/LedgerHQ/ledger-live/commit/202cc423b09662b5b25012b84124aecd4dc7245d)]:
18
+ - @ledgerhq/errors@6.34.1-hotfix.0
19
+ - @ledgerhq/devices@8.14.2-hotfix.0
20
+ - @ledgerhq/hw-transport@6.35.2-hotfix.0
21
+ - @ledgerhq/live-network@2.5.2-hotfix.0
13
22
 
14
23
  ## 0.10.1
15
24
 
@@ -0,0 +1,18 @@
1
+ {
2
+ "transform": {
3
+ "^.+\\.(t|j)sx?$": [
4
+ "@swc/jest",
5
+ {
6
+ "jsc": {
7
+ "target": "esnext"
8
+ }
9
+ }
10
+ ]
11
+ },
12
+ "testPathIgnorePatterns": ["lib/", "lib-es/"],
13
+ "coverageReporters": ["json", ["lcov", { "file": "lcov.info", "projectRoot": "../../" }], "text"],
14
+ "reporters": [
15
+ "default",
16
+ ["jest-sonar", { "outputName": "sonar-executionTests-report.xml", "reportedFilePath": "absolute" }]
17
+ ]
18
+ }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@ledgerhq/device-core",
3
- "version": "0.10.2-nightly.20260506192049",
3
+ "version": "0.10.2",
4
4
  "description": "Ledger Live device core module",
5
5
  "license": "Apache-2.0",
6
6
  "keywords": [
@@ -20,12 +20,12 @@
20
20
  "dependencies": {
21
21
  "@noble/hashes": "1.8.0",
22
22
  "semver": "7.7.3",
23
- "@ledgerhq/devices": "8.14.2-nightly.20260506192049",
24
- "@ledgerhq/errors": "^6.35.0-nightly.20260506192049",
25
- "@ledgerhq/hw-transport": "6.35.2-nightly.20260506192049",
26
- "@ledgerhq/live-network": "^2.6.0-nightly.20260506192049",
23
+ "@ledgerhq/devices": "8.14.2",
24
+ "@ledgerhq/errors": "^6.34.1",
25
+ "@ledgerhq/hw-transport": "6.35.2",
26
+ "@ledgerhq/live-network": "^2.5.2",
27
27
  "@ledgerhq/logs": "^6.17.0",
28
- "@ledgerhq/types-live": "^6.107.0-nightly.20260506192049"
28
+ "@ledgerhq/types-live": "^6.106.0"
29
29
  },
30
30
  "devDependencies": {
31
31
  "@testing-library/dom": "10.4.1",
package/jest.config.js DELETED
@@ -1,19 +0,0 @@
1
- module.exports = {
2
- transform: {
3
- "^.+\\.(t|j)sx?$": [
4
- "@swc/jest",
5
- {
6
- jsc: {
7
- target: "esnext",
8
- },
9
- },
10
- ],
11
- },
12
- testPathIgnorePatterns: ["lib/", "lib-es/"],
13
- coverageReporters: ["json", ["lcov", { file: "lcov.info", projectRoot: "../../" }], "text"],
14
- reporters: [
15
- "default",
16
- ...(process.env.CI ? ["github-actions"] : []),
17
- ["jest-sonar", { outputName: "sonar-executionTests-report.xml", reportedFilePath: "absolute" }],
18
- ],
19
- };