@metamask/eth-hd-keyring 14.0.0 → 14.0.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.
Files changed (3) hide show
  1. package/CHANGELOG.md +14 -1
  2. package/package.json +6 -5
  3. package/v2.js +3 -0
package/CHANGELOG.md CHANGED
@@ -7,6 +7,18 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
7
7
 
8
8
  ## [Unreleased]
9
9
 
10
+ ## [14.0.1]
11
+
12
+ ### Changed
13
+
14
+ - Bump `@metamask/account-api` from `^1.0.2` to `^1.0.3` ([#518](https://github.com/MetaMask/accounts/pull/518))
15
+ - Bump `@metamask/keyring-api` from `^23.0.0` to `^23.0.1` ([#518](https://github.com/MetaMask/accounts/pull/518))
16
+ - Bump `@metamask/keyring-sdk` from `^2.0.0` to `^2.0.1` ([#518](https://github.com/MetaMask/accounts/pull/518))
17
+
18
+ ### Fixed
19
+
20
+ - Workaround Browserify subpath export for `/v2` ([#516](https://github.com/MetaMask/accounts/pull/516))
21
+
10
22
  ## [14.0.0]
11
23
 
12
24
  ### Added
@@ -263,7 +275,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
263
275
  - Deserialize method (and `HdKeyring` constructor by extension) can no longer be passed an options object containing a value for `numberOfAccounts` if it is not also containing a value for `mnemonic`.
264
276
  - Package name changed from `eth-hd-keyring` to `@metamask/eth-hd-keyring`.
265
277
 
266
- [Unreleased]: https://github.com/MetaMask/accounts/compare/@metamask/eth-hd-keyring@14.0.0...HEAD
278
+ [Unreleased]: https://github.com/MetaMask/accounts/compare/@metamask/eth-hd-keyring@14.0.1...HEAD
279
+ [14.0.1]: https://github.com/MetaMask/accounts/compare/@metamask/eth-hd-keyring@14.0.0...@metamask/eth-hd-keyring@14.0.1
267
280
  [14.0.0]: https://github.com/MetaMask/accounts/compare/@metamask/eth-hd-keyring@13.1.1...@metamask/eth-hd-keyring@14.0.0
268
281
  [13.1.1]: https://github.com/MetaMask/accounts/compare/@metamask/eth-hd-keyring@13.1.0...@metamask/eth-hd-keyring@13.1.1
269
282
  [13.1.0]: https://github.com/MetaMask/accounts/compare/@metamask/eth-hd-keyring@13.0.0...@metamask/eth-hd-keyring@13.1.0
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@metamask/eth-hd-keyring",
3
- "version": "14.0.0",
3
+ "version": "14.0.1",
4
4
  "description": "A simple standard interface for a seed phrase generated set of Ethereum accounts",
5
5
  "keywords": [
6
6
  "ethereum",
@@ -42,7 +42,8 @@
42
42
  "main": "./dist/index.cjs",
43
43
  "types": "./dist/index.d.cts",
44
44
  "files": [
45
- "dist/"
45
+ "dist/",
46
+ "v2.js"
46
47
  ],
47
48
  "scripts": {
48
49
  "build": "ts-bridge --project tsconfig.build.json --verbose --clean --no-references",
@@ -65,8 +66,8 @@
65
66
  "@ethereumjs/util": "^9.1.0",
66
67
  "@metamask/eth-sig-util": "^8.2.0",
67
68
  "@metamask/key-tree": "^10.0.2",
68
- "@metamask/keyring-api": "^23.0.0",
69
- "@metamask/keyring-sdk": "^2.0.0",
69
+ "@metamask/keyring-api": "^23.0.1",
70
+ "@metamask/keyring-sdk": "^2.0.1",
70
71
  "@metamask/keyring-utils": "^3.2.0",
71
72
  "@metamask/scure-bip39": "^2.1.1",
72
73
  "@metamask/superstruct": "^3.1.0",
@@ -76,7 +77,7 @@
76
77
  "devDependencies": {
77
78
  "@lavamoat/allow-scripts": "^3.2.1",
78
79
  "@lavamoat/preinstall-always-fail": "^2.1.0",
79
- "@metamask/account-api": "^1.0.2",
80
+ "@metamask/account-api": "^1.0.3",
80
81
  "@metamask/auto-changelog": "^3.4.4",
81
82
  "@metamask/bip39": "^4.0.0",
82
83
  "@metamask/old-hd-keyring": "npm:@metamask/eth-hd-keyring@^4.0.1",
package/v2.js ADDED
@@ -0,0 +1,3 @@
1
+ // Re-exported for compatibility with Browserify.
2
+ // eslint-disable-next-line
3
+ module.exports = require('./dist/v2/index.cjs');