@metamask-previews/keyring-api 23.7.0-58658de → 24.0.0-914f87e
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 +10 -2
- package/package.json +3 -3
package/CHANGELOG.md
CHANGED
|
@@ -7,6 +7,13 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
|
|
|
7
7
|
|
|
8
8
|
## [Unreleased]
|
|
9
9
|
|
|
10
|
+
## [24.0.0]
|
|
11
|
+
|
|
12
|
+
### Changed
|
|
13
|
+
|
|
14
|
+
- **BREAKING:** Drop support for Node.js v18 and v20; minimum version is now v22 ([#593](https://github.com/MetaMask/accounts/pull/593))
|
|
15
|
+
- Bump `@metamask/keyring-utils` from `^4.0.0` to `^5.0.0` ([#611](https://github.com/MetaMask/accounts/pull/611))
|
|
16
|
+
|
|
10
17
|
## [23.7.0]
|
|
11
18
|
|
|
12
19
|
### Added
|
|
@@ -26,7 +33,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
|
|
|
26
33
|
|
|
27
34
|
- Use `sensitive` struct for `privateKey` in `PrivateKeyExportedAccountStruct` ([#577](https://github.com/MetaMask/accounts/pull/577))
|
|
28
35
|
- This ensures the private key value is always redacted in case of validation errors.
|
|
29
|
-
- Bump `@metamask/superstruct` from `^3.1.0` to `^3.4.1` ([#580](https://github.com/MetaMask/accounts/pull/580)
|
|
36
|
+
- Bump `@metamask/superstruct` from `^3.1.0` to `^3.4.1` ([#580](https://github.com/MetaMask/accounts/pull/580), [#577](https://github.com/MetaMask/accounts/pull/577))
|
|
30
37
|
- Bump `@metamask/keyring-utils` from `^3.3.1` to `^4.0.0` ([#600](https://github.com/MetaMask/accounts/pull/600))
|
|
31
38
|
|
|
32
39
|
## [23.5.0]
|
|
@@ -814,7 +821,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
|
|
|
814
821
|
- SnapController keyring client. It is intended to be used by MetaMask to talk to the snap.
|
|
815
822
|
- Helper functions to create keyring handler in the snap.
|
|
816
823
|
|
|
817
|
-
[Unreleased]: https://github.com/MetaMask/accounts/compare/@metamask/keyring-api@
|
|
824
|
+
[Unreleased]: https://github.com/MetaMask/accounts/compare/@metamask/keyring-api@24.0.0...HEAD
|
|
825
|
+
[24.0.0]: https://github.com/MetaMask/accounts/compare/@metamask/keyring-api@23.7.0...@metamask/keyring-api@24.0.0
|
|
818
826
|
[23.7.0]: https://github.com/MetaMask/accounts/compare/@metamask/keyring-api@23.6.0...@metamask/keyring-api@23.7.0
|
|
819
827
|
[23.6.0]: https://github.com/MetaMask/accounts/compare/@metamask/keyring-api@23.5.0...@metamask/keyring-api@23.6.0
|
|
820
828
|
[23.5.0]: https://github.com/MetaMask/accounts/compare/@metamask/keyring-api@23.4.0...@metamask/keyring-api@23.5.0
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@metamask-previews/keyring-api",
|
|
3
|
-
"version": "
|
|
3
|
+
"version": "24.0.0-914f87e",
|
|
4
4
|
"description": "MetaMask Keyring API",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"keyring",
|
|
@@ -67,7 +67,7 @@
|
|
|
67
67
|
"test:watch": "NODE_OPTIONS=--experimental-vm-modules jest --watch"
|
|
68
68
|
},
|
|
69
69
|
"dependencies": {
|
|
70
|
-
"@metamask/keyring-utils": "
|
|
70
|
+
"@metamask/keyring-utils": "5.0.0",
|
|
71
71
|
"@metamask/superstruct": "^3.4.1",
|
|
72
72
|
"@metamask/utils": "^11.11.0",
|
|
73
73
|
"bitcoin-address-validation": "^2.2.3"
|
|
@@ -97,7 +97,7 @@
|
|
|
97
97
|
"directory": "src"
|
|
98
98
|
},
|
|
99
99
|
"engines": {
|
|
100
|
-
"node": "
|
|
100
|
+
"node": ">=22"
|
|
101
101
|
},
|
|
102
102
|
"lavamoat": {
|
|
103
103
|
"allowScripts": {
|