@metamask/eth-hd-keyring 6.0.0 → 6.0.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/.yarnrc.yml ADDED
@@ -0,0 +1,15 @@
1
+ enableScripts: false
2
+
3
+ enableTelemetry: 0
4
+
5
+ logFilters:
6
+ - code: YN0004
7
+ level: discard
8
+
9
+ nodeLinker: node-modules
10
+
11
+ plugins:
12
+ - path: .yarn/plugins/@yarnpkg/plugin-allow-scripts.cjs
13
+ spec: "https://raw.githubusercontent.com/LavaMoat/LavaMoat/main/packages/yarn-plugin-allow-scripts/bundles/@yarnpkg/plugin-allow-scripts.js"
14
+
15
+ yarnPath: .yarn/releases/yarn-3.3.0.cjs
package/CHANGELOG.md CHANGED
@@ -6,6 +6,19 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
6
6
 
7
7
  ## [Unreleased]
8
8
 
9
+ ## [6.0.2]
10
+ ### Fixed
11
+ - Bump dependencies ([#94](https://github.com/MetaMask/eth-hd-keyring/pull/94))
12
+ * `@ethereumjs/util` from `^8.0.2` to `^8.1.0`
13
+ * `@metamask/eth-sig-util` from `^5.0.2` to `^6.0.0`
14
+ * `@metamask/scure-bip39` from `^2.0.3` to `^2.1.0`
15
+ * `@metamask/utils` from `^5.0.0` to `^5.0.2`
16
+ * `ethereum-cryptography` from `^1.1.2` to `^1.2.0`
17
+
18
+ ## [6.0.1] [RETRACTED]
19
+ ### Changed
20
+ - This version was retracted due to a bug causing code to be missing from published package.
21
+
9
22
  ## [6.0.0]
10
23
  ### Changed
11
24
  - Revert mnemonic serialization format from `Record<number, number>` (i.e. a stringified `Uint8Array`) which was introduced in v5.0.0 back to an untyped array of utf8 encoded bytes, which was the format prior to v5.0.0 ([#81](https://github.com/MetaMask/eth-hd-keyring/pull/81))
@@ -58,7 +71,9 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
58
71
  - 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`.
59
72
  - Package name changed from `eth-hd-keyring` to `@metamask/eth-hd-keyring`.
60
73
 
61
- [Unreleased]: https://github.com/MetaMask/eth-hd-keyring/compare/v6.0.0...HEAD
74
+ [Unreleased]: https://github.com/MetaMask/eth-hd-keyring/compare/v6.0.2...HEAD
75
+ [6.0.2]: https://github.com/MetaMask/eth-hd-keyring/compare/v6.0.1...v6.0.2
76
+ [6.0.1]: https://github.com/MetaMask/eth-hd-keyring/compare/v6.0.0...v6.0.1
62
77
  [6.0.0]: https://github.com/MetaMask/eth-hd-keyring/compare/v5.0.1...v6.0.0
63
78
  [5.0.1]: https://github.com/MetaMask/eth-hd-keyring/compare/v5.0.0...v5.0.1
64
79
  [5.0.0]: https://github.com/MetaMask/eth-hd-keyring/compare/v4.0.2...v5.0.0
package/README.md CHANGED
@@ -77,7 +77,7 @@ Exports the specified account as a private key hex string.
77
77
 
78
78
  ### Setup
79
79
 
80
- - Install [Node.js](https://nodejs.org) version 12
80
+ - Install [Node.js](https://nodejs.org) version 18
81
81
  - If you are using [nvm](https://github.com/creationix/nvm#installation) (recommended) running `nvm use` will automatically choose the right node version for you.
82
82
  - Install [Yarn v3](https://yarnpkg.com/getting-started/install)
83
83
  - Run `yarn install` to install dependencies and run any required post-install scripts
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@metamask/eth-hd-keyring",
3
- "version": "6.0.0",
3
+ "version": "6.0.2",
4
4
  "description": "A simple standard interface for a seed phrase generated set of Ethereum accounts.",
5
5
  "keywords": [
6
6
  "ethereum",
@@ -25,14 +25,16 @@
25
25
  "test": "jest"
26
26
  },
27
27
  "dependencies": {
28
- "@ethereumjs/util": "^8.0.2",
29
- "@metamask/eth-sig-util": "^5.0.2",
30
- "@metamask/scure-bip39": "^2.0.3",
31
- "ethereum-cryptography": "^1.1.2"
28
+ "@ethereumjs/util": "8.0.5",
29
+ "@metamask/eth-sig-util": "^6.0.0",
30
+ "@metamask/scure-bip39": "^2.1.0",
31
+ "@metamask/utils": "^5.0.2",
32
+ "ethereum-cryptography": "^1.2.0"
32
33
  },
33
34
  "devDependencies": {
34
- "@ethereumjs/tx": "^4.0.1",
35
- "@lavamoat/allow-scripts": "^2.1.0",
35
+ "@ethereumjs/tx": "^4.2.0",
36
+ "@lavamoat/allow-scripts": "^2.3.1",
37
+ "@lavamoat/preinstall-always-fail": "^1.0.0",
36
38
  "@metamask/auto-changelog": "^2.5.0",
37
39
  "@metamask/bip39": "^4.0.0",
38
40
  "@metamask/eslint-config": "^8.0.0",
@@ -65,4 +67,4 @@
65
67
  "@metamask/eth-hd-keyring>ethereumjs-util>ethereum-cryptography>secp256k1": false
66
68
  }
67
69
  }
68
- }
70
+ }
package/.yarnrc DELETED
@@ -1 +0,0 @@
1
- ignore-scripts true