@metamask/keyring-api 5.0.0 → 5.1.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 +10 -1
- package/package.json +5 -2
package/CHANGELOG.md
CHANGED
@@ -7,6 +7,14 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
|
|
7
7
|
|
8
8
|
## [Unreleased]
|
9
9
|
|
10
|
+
## [5.1.0]
|
11
|
+
|
12
|
+
### Changed
|
13
|
+
|
14
|
+
- Use @metamask/providers as a peer dependency ([#282](https://github.com/MetaMask/keyring-api/pull/282))
|
15
|
+
- Bump @metamask/utils from 8.3.0 to 8.4.0 ([#280](https://github.com/MetaMask/keyring-api/pull/280))
|
16
|
+
- Add stale CI workflow to close issues and PRs ([#279](https://github.com/MetaMask/keyring-api/pull/279))
|
17
|
+
|
10
18
|
## [5.0.0]
|
11
19
|
|
12
20
|
### Changed
|
@@ -244,7 +252,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
|
|
244
252
|
- SnapController keyring client. It is intended to be used by MetaMask to talk to the snap.
|
245
253
|
- Helper functions to create keyring handler in the snap.
|
246
254
|
|
247
|
-
[Unreleased]: https://github.com/MetaMask/keyring-api/compare/v5.
|
255
|
+
[Unreleased]: https://github.com/MetaMask/keyring-api/compare/v5.1.0...HEAD
|
256
|
+
[5.1.0]: https://github.com/MetaMask/keyring-api/compare/v5.0.0...v5.1.0
|
248
257
|
[5.0.0]: https://github.com/MetaMask/keyring-api/compare/v4.0.2...v5.0.0
|
249
258
|
[4.0.2]: https://github.com/MetaMask/keyring-api/compare/v4.0.1...v4.0.2
|
250
259
|
[4.0.1]: https://github.com/MetaMask/keyring-api/compare/v4.0.0...v4.0.1
|
package/package.json
CHANGED
@@ -1,6 +1,6 @@
|
|
1
1
|
{
|
2
2
|
"name": "@metamask/keyring-api",
|
3
|
-
"version": "5.
|
3
|
+
"version": "5.1.0",
|
4
4
|
"description": "MetaMask Keyring API",
|
5
5
|
"keywords": [
|
6
6
|
"metamask",
|
@@ -38,7 +38,6 @@
|
|
38
38
|
"test:watch": "jest --watch"
|
39
39
|
},
|
40
40
|
"dependencies": {
|
41
|
-
"@metamask/providers": "^16.0.0",
|
42
41
|
"@metamask/snaps-sdk": "^3.1.1",
|
43
42
|
"@metamask/utils": "^8.3.0",
|
44
43
|
"@types/uuid": "^9.0.1",
|
@@ -53,6 +52,7 @@
|
|
53
52
|
"@metamask/eslint-config-jest": "^12.1.0",
|
54
53
|
"@metamask/eslint-config-nodejs": "^12.1.0",
|
55
54
|
"@metamask/eslint-config-typescript": "^12.1.0",
|
55
|
+
"@metamask/providers": "^16.0.0",
|
56
56
|
"@types/jest": "^28.1.6",
|
57
57
|
"@types/node": "^16",
|
58
58
|
"@typescript-eslint/eslint-plugin": "^5.43.0",
|
@@ -77,6 +77,9 @@
|
|
77
77
|
"typedoc": "^0.23.15",
|
78
78
|
"typescript": "~4.8.4"
|
79
79
|
},
|
80
|
+
"peerDependencies": {
|
81
|
+
"@metamask/providers": ">=15 <17"
|
82
|
+
},
|
80
83
|
"packageManager": "yarn@3.2.1",
|
81
84
|
"engines": {
|
82
85
|
"node": "^18.18 || >=20"
|