@ledgerhq/hw-app-btc 8.0.0-next.0 → 8.0.1-nightly.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,5 +1,5 @@
1
- @ledgerhq/hw-app-btc:build: cache hit, replaying output 18e89b033510f262
1
+ @ledgerhq/hw-app-btc:build: cache hit, replaying output 67d874874b338700
2
2
  @ledgerhq/hw-app-btc:build:
3
- @ledgerhq/hw-app-btc:build: > @ledgerhq/hw-app-btc@7.0.0 build /home/runner/work/ledger-live/ledger-live/libs/ledgerjs/packages/hw-app-btc
3
+ @ledgerhq/hw-app-btc:build: > @ledgerhq/hw-app-btc@8.0.0 build /home/runner/work/ledger-live/ledger-live/libs/ledgerjs/packages/hw-app-btc
4
4
  @ledgerhq/hw-app-btc:build: > tsc && tsc -m ES6 --outDir lib-es
5
5
  @ledgerhq/hw-app-btc:build:
package/CHANGELOG.md CHANGED
@@ -1,5 +1,49 @@
1
1
  # @ledgerhq/hw-app-btc
2
2
 
3
+ ## 8.0.1-nightly.0
4
+
5
+ ### Patch Changes
6
+
7
+ - Updated dependencies [[`ecfdd1ebd8`](https://github.com/LedgerHQ/ledger-live/commit/ecfdd1ebd8cc7c4b5bc6315316ce662bb6241311)]:
8
+ - @ledgerhq/hw-transport@6.27.3-nightly.0
9
+
10
+ ## 8.0.0
11
+
12
+ ### Major Changes
13
+
14
+ - [#364](https://github.com/LedgerHQ/ledger-live/pull/364) [`f538d2974`](https://github.com/LedgerHQ/ledger-live/commit/f538d29745669b2aada6ac34f37cd404c23cf1b8) Thanks [@elbywan](https://github.com/elbywan)! - #### Replace [webpack](https://webpack.js.org/) with [vite.js](https://vitejs.dev/) to speed up the ledger live desktop development process.
15
+
16
+ To fully embrace the "bundleless" vite.js approach, it is necessary to transpile our packages contained in the monorepository to the ESM format, and [subpath exports](https://nodejs.org/api/packages.html#subpath-exports) have been added to silently map to commonjs or esm depending on the need.
17
+
18
+ #### 🔥 BREAKING CHANGES for `@ledgerhq/live-common`, `@ledgerhq/devices` and `@ledgerhq/hw-app-btc` consumers.
19
+
20
+ As highlighted [here](https://github.com/nodejs/node#39994), it is not possible to target folders directly when using subpath exports.
21
+
22
+ The workaround is to suffix the call with `/index` (or `/`).
23
+
24
+ For instance…
25
+
26
+ ```ts
27
+ import * as currencies from "@ledgerhq/live-common/currencies";
28
+ ```
29
+
30
+ …must be rewritten to…
31
+
32
+ ```ts
33
+ import * as currencies from "@ledgerhq/live-common/currencies/index;";
34
+ ```
35
+
36
+ …or:
37
+
38
+ ```ts
39
+ import * as currencies from "@ledgerhq/live-common/currencies/;";
40
+ ```
41
+
42
+ ### Patch Changes
43
+
44
+ - Updated dependencies []:
45
+ - @ledgerhq/hw-transport@6.27.2
46
+
3
47
  ## 8.0.0-next.0
4
48
 
5
49
  ### Major Changes
package/README.md CHANGED
@@ -7,6 +7,19 @@
7
7
 
8
8
  Ledger Hardware Wallet BTC JavaScript bindings. Also supports many altcoins.
9
9
 
10
+ ***
11
+
12
+ ## Are you adding Ledger support to your software wallet?
13
+
14
+ You may be using this package to communicate with the Bitcoin Nano App.
15
+
16
+ For a smooth and quick integration:
17
+
18
+ * See the developers’ documentation on the [Developer Portal](https://developers.ledger.com/docs/transport/overview/) and
19
+ * Go on [Discord](https://developers.ledger.com/discord-pro/) to chat with developer support and the developer community.
20
+
21
+ ***
22
+
10
23
  ## API
11
24
 
12
25
  <!-- Generated by documentation.js. Update this documentation by updating the source code. -->
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@ledgerhq/hw-app-btc",
3
- "version": "8.0.0-next.0",
3
+ "version": "8.0.1-nightly.0",
4
4
  "description": "Ledger Hardware Wallet Bitcoin Application API",
5
5
  "keywords": [
6
6
  "Ledger",
@@ -69,8 +69,8 @@
69
69
  },
70
70
  "license": "Apache-2.0",
71
71
  "dependencies": {
72
- "@ledgerhq/hw-transport": "^6.27.2-next.0",
73
- "@ledgerhq/logs": "^6.10.0",
72
+ "@ledgerhq/hw-transport": "^6.27.3-nightly.0",
73
+ "@ledgerhq/logs": "^6.10.1-nightly.0",
74
74
  "bip32-path": "^0.4.2",
75
75
  "bitcoinjs-lib": "^5.2.0",
76
76
  "bs58": "^4.0.1",
@@ -83,8 +83,8 @@
83
83
  "varuint-bitcoin": "1.1.2"
84
84
  },
85
85
  "devDependencies": {
86
- "@ledgerhq/hw-transport-mocker": "^6.27.2-next.0",
87
- "@ledgerhq/hw-transport-node-speculos": "^6.27.2-next.0",
86
+ "@ledgerhq/hw-transport-mocker": "^6.27.3-nightly.0",
87
+ "@ledgerhq/hw-transport-node-speculos": "^6.27.3-nightly.0",
88
88
  "axios": "^0.25.0"
89
89
  },
90
90
  "gitHead": "dd0dea64b58e5a9125c8a422dcffd29e5ef6abec",