@metamask/eth-simple-keyring 5.1.0 → 6.0.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.
- package/CHANGELOG.md +9 -1
- package/README.md +1 -1
- package/package.json +6 -6
package/CHANGELOG.md
CHANGED
|
@@ -6,6 +6,13 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
|
|
|
6
6
|
|
|
7
7
|
## [Unreleased]
|
|
8
8
|
|
|
9
|
+
## [6.0.0]
|
|
10
|
+
### Changed
|
|
11
|
+
- **BREAKING**: Increase minimum Node.js version to 16 ([#152](https://github.com/MetaMask/eth-simple-keyring/pull/152))
|
|
12
|
+
- **BREAKING**: Bump @metamask/eth-sig-util from ^6.0.1 to ^7.0.0 ([#156](https://github.com/MetaMask/eth-simple-keyring/pull/156))
|
|
13
|
+
- Bump @metamask/utils from ^5.0.0 to ^8.1.0 ([#153](https://github.com/MetaMask/eth-simple-keyring/pull/153))
|
|
14
|
+
- Bump ethereum-cryptography from ^1.2.0 to ^2.1.2 ([#153](https://github.com/MetaMask/eth-simple-keyring/pull/153))
|
|
15
|
+
|
|
9
16
|
## [5.1.0]
|
|
10
17
|
### Changed
|
|
11
18
|
- Export TypeScript interfaces ([#140](https://github.com/MetaMask/eth-simple-keyring/pull/140))
|
|
@@ -29,6 +36,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
|
|
|
29
36
|
- **BREAKING:** Remove redundant `newGethSignMessage` method ([#72](https://github.com/MetaMask/eth-simple-keyring/pull/72))
|
|
30
37
|
- Consumers can use `signPersonalMessage` method as a replacement for `newGethSignMessage`.
|
|
31
38
|
|
|
32
|
-
[Unreleased]: https://github.com/MetaMask/eth-simple-keyring/compare/
|
|
39
|
+
[Unreleased]: https://github.com/MetaMask/eth-simple-keyring/compare/v6.0.0...HEAD
|
|
40
|
+
[6.0.0]: https://github.com/MetaMask/eth-simple-keyring/compare/v5.1.0...v6.0.0
|
|
33
41
|
[5.1.0]: https://github.com/MetaMask/eth-simple-keyring/compare/v5.0.0...v5.1.0
|
|
34
42
|
[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
|
|
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": "
|
|
3
|
+
"version": "6.0.0",
|
|
4
4
|
"description": "A simple standard interface for a series of Ethereum private keys.",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"ethereum",
|
|
@@ -34,10 +34,10 @@
|
|
|
34
34
|
"test:watch": "jest --watch"
|
|
35
35
|
},
|
|
36
36
|
"dependencies": {
|
|
37
|
-
"@ethereumjs/util": "^8.0
|
|
38
|
-
"@metamask/eth-sig-util": "^
|
|
39
|
-
"@metamask/utils": "^
|
|
40
|
-
"ethereum-cryptography": "^1.2
|
|
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": {
|
|
@@ -72,7 +72,7 @@
|
|
|
72
72
|
},
|
|
73
73
|
"packageManager": "yarn@3.3.0",
|
|
74
74
|
"engines": {
|
|
75
|
-
"node": "
|
|
75
|
+
"node": "^16.20 || ^18.16 || >=20"
|
|
76
76
|
},
|
|
77
77
|
"publishConfig": {
|
|
78
78
|
"access": "public",
|