@metamask/eth-simple-keyring 5.1.1 → 6.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.
package/CHANGELOG.md CHANGED
@@ -6,6 +6,17 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
6
6
 
7
7
  ## [Unreleased]
8
8
 
9
+ ## [6.0.1]
10
+ ### Fixed
11
+ - Treat `undefined` and `null` as empty array in deserialize function ([#163](https://github.com/MetaMask/eth-simple-keyring/pull/163))
12
+
13
+ ## [6.0.0]
14
+ ### Changed
15
+ - **BREAKING**: Increase minimum Node.js version to 16 ([#152](https://github.com/MetaMask/eth-simple-keyring/pull/152))
16
+ - **BREAKING**: Bump @metamask/eth-sig-util from ^6.0.1 to ^7.0.0 ([#156](https://github.com/MetaMask/eth-simple-keyring/pull/156))
17
+ - Bump @metamask/utils from ^5.0.0 to ^8.1.0 ([#153](https://github.com/MetaMask/eth-simple-keyring/pull/153))
18
+ - Bump ethereum-cryptography from ^1.2.0 to ^2.1.2 ([#153](https://github.com/MetaMask/eth-simple-keyring/pull/153))
19
+
9
20
  ## [5.1.1]
10
21
  ### Fixed
11
22
  - Treat `undefined` and `null` as empty array in deserialize function ([#166](https://github.com/MetaMask/eth-simple-keyring/pull/166))
@@ -33,7 +44,9 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
33
44
  - **BREAKING:** Remove redundant `newGethSignMessage` method ([#72](https://github.com/MetaMask/eth-simple-keyring/pull/72))
34
45
  - Consumers can use `signPersonalMessage` method as a replacement for `newGethSignMessage`.
35
46
 
36
- [Unreleased]: https://github.com/MetaMask/eth-simple-keyring/compare/v5.1.1...HEAD
47
+ [Unreleased]: https://github.com/MetaMask/eth-simple-keyring/compare/v6.0.1...HEAD
48
+ [6.0.1]: https://github.com/MetaMask/eth-simple-keyring/compare/v6.0.0...v6.0.1
49
+ [6.0.0]: https://github.com/MetaMask/eth-simple-keyring/compare/v5.1.1...v6.0.0
37
50
  [5.1.1]: https://github.com/MetaMask/eth-simple-keyring/compare/v5.1.0...v5.1.1
38
51
  [5.1.0]: https://github.com/MetaMask/eth-simple-keyring/compare/v5.0.0...v5.1.0
39
52
  [5.0.0]: https://github.com/MetaMask/eth-simple-keyring/releases/tag/v5.0.0
package/README.md CHANGED
@@ -81,7 +81,7 @@ removes the specified account from the list of accounts.
81
81
 
82
82
  ### Setup
83
83
 
84
- - Install [Node.js](https://nodejs.org) version 14 or greater
84
+ - Install [Node.js](https://nodejs.org) version 16 or greater
85
85
  - If you are using [nvm](https://github.com/creationix/nvm#installation) (recommended) running `nvm use` will automatically choose the right node version for you.
86
86
  - Install [Yarn v3](https://yarnpkg.com/getting-started/install)
87
87
  - 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-simple-keyring",
3
- "version": "5.1.1",
3
+ "version": "6.0.1",
4
4
  "description": "A simple standard interface for a series of Ethereum private keys.",
5
5
  "keywords": [
6
6
  "ethereum",
@@ -34,15 +34,15 @@
34
34
  "test:watch": "jest --watch"
35
35
  },
36
36
  "dependencies": {
37
- "@ethereumjs/util": "^8.0.5",
38
- "@metamask/eth-sig-util": "^6.0.1",
39
- "@metamask/utils": "^5.0.2",
40
- "ethereum-cryptography": "^1.2.0",
37
+ "@ethereumjs/util": "^8.1.0",
38
+ "@metamask/eth-sig-util": "^7.0.0",
39
+ "@metamask/utils": "^8.1.0",
40
+ "ethereum-cryptography": "^2.1.2",
41
41
  "randombytes": "^2.1.0"
42
42
  },
43
43
  "devDependencies": {
44
44
  "@ethereumjs/tx": "^4.1.1",
45
- "@lavamoat/allow-scripts": "^2.3.0",
45
+ "@lavamoat/allow-scripts": "^3.0.0",
46
46
  "@metamask/auto-changelog": "^3.1.0",
47
47
  "@metamask/eslint-config": "^11.1.0",
48
48
  "@metamask/eslint-config-jest": "^11.1.0",
@@ -72,7 +72,7 @@
72
72
  },
73
73
  "packageManager": "yarn@3.3.0",
74
74
  "engines": {
75
- "node": ">=14.0.0"
75
+ "node": "^16.20 || ^18.16 || >=20"
76
76
  },
77
77
  "publishConfig": {
78
78
  "access": "public",
@@ -87,4 +87,4 @@
87
87
  "ethereumjs-tx>ethereumjs-util>ethereum-cryptography>secp256k1": false
88
88
  }
89
89
  }
90
- }
90
+ }