@metamask/accounts-controller 6.0.0 → 7.0.0
Sign up to get free protection for your applications and to get access to all the features.
- package/CHANGELOG.md +8 -1
- package/package.json +7 -5
package/CHANGELOG.md
CHANGED
@@ -6,6 +6,12 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
|
|
6
6
|
|
7
7
|
## [Unreleased]
|
8
8
|
|
9
|
+
## [7.0.0]
|
10
|
+
### Changed
|
11
|
+
- **BREAKING:** Bump `@metamask/keyring-controller` peer dependency from `^10.0.0` to `^11.0.0` ([#3695](https://github.com/MetaMask/core/pull/3695))
|
12
|
+
- **BREAKING:** Add `@metamask/snaps-controllers` as a peer dependency ([#3607](https://github.com/MetaMask/core/pull/3607))
|
13
|
+
- Bump `@metamask/base-controller` to `^4.0.1` ([#3695](https://github.com/MetaMask/core/pull/3695))
|
14
|
+
|
9
15
|
## [6.0.0]
|
10
16
|
### Changed
|
11
17
|
- **BREAKING:** Bump `@metamask/base-controller` to ^4.0.0 ([#2063](https://github.com/MetaMask/core/pull/2063))
|
@@ -52,7 +58,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
|
|
52
58
|
### Added
|
53
59
|
- Initial release ([#1637](https://github.com/MetaMask/core/pull/1637))
|
54
60
|
|
55
|
-
[Unreleased]: https://github.com/MetaMask/core/compare/@metamask/accounts-controller@
|
61
|
+
[Unreleased]: https://github.com/MetaMask/core/compare/@metamask/accounts-controller@7.0.0...HEAD
|
62
|
+
[7.0.0]: https://github.com/MetaMask/core/compare/@metamask/accounts-controller@6.0.0...@metamask/accounts-controller@7.0.0
|
56
63
|
[6.0.0]: https://github.com/MetaMask/core/compare/@metamask/accounts-controller@5.0.0...@metamask/accounts-controller@6.0.0
|
57
64
|
[5.0.0]: https://github.com/MetaMask/core/compare/@metamask/accounts-controller@4.0.0...@metamask/accounts-controller@5.0.0
|
58
65
|
[4.0.0]: https://github.com/MetaMask/core/compare/@metamask/accounts-controller@3.0.0...@metamask/accounts-controller@4.0.0
|
package/package.json
CHANGED
@@ -1,6 +1,6 @@
|
|
1
1
|
{
|
2
2
|
"name": "@metamask/accounts-controller",
|
3
|
-
"version": "
|
3
|
+
"version": "7.0.0",
|
4
4
|
"description": "Manages internal accounts",
|
5
5
|
"keywords": [
|
6
6
|
"MetaMask",
|
@@ -22,6 +22,7 @@
|
|
22
22
|
],
|
23
23
|
"scripts": {
|
24
24
|
"build:docs": "typedoc",
|
25
|
+
"changelog:update": "../../scripts/update-changelog.sh @metamask/accounts-controller",
|
25
26
|
"changelog:validate": "../../scripts/validate-changelog.sh @metamask/accounts-controller",
|
26
27
|
"publish:preview": "yarn npm publish --tag preview",
|
27
28
|
"test": "jest --reporters=jest-silent-reporter",
|
@@ -30,7 +31,7 @@
|
|
30
31
|
"test:watch": "jest --watch"
|
31
32
|
},
|
32
33
|
"dependencies": {
|
33
|
-
"@metamask/base-controller": "^4.0.
|
34
|
+
"@metamask/base-controller": "^4.0.1",
|
34
35
|
"@metamask/eth-snap-keyring": "^2.0.0",
|
35
36
|
"@metamask/keyring-api": "^1.1.0",
|
36
37
|
"@metamask/snaps-utils": "^3.2.0",
|
@@ -41,8 +42,8 @@
|
|
41
42
|
"uuid": "^8.3.2"
|
42
43
|
},
|
43
44
|
"devDependencies": {
|
44
|
-
"@metamask/auto-changelog": "^3.4.
|
45
|
-
"@metamask/keyring-controller": "^
|
45
|
+
"@metamask/auto-changelog": "^3.4.4",
|
46
|
+
"@metamask/keyring-controller": "^11.0.0",
|
46
47
|
"@metamask/snaps-controllers": "^3.2.0",
|
47
48
|
"@types/jest": "^27.4.1",
|
48
49
|
"@types/readable-stream": "^2.3.0",
|
@@ -53,7 +54,8 @@
|
|
53
54
|
"typescript": "~4.8.4"
|
54
55
|
},
|
55
56
|
"peerDependencies": {
|
56
|
-
"@metamask/keyring-controller": "^
|
57
|
+
"@metamask/keyring-controller": "^11.0.0",
|
58
|
+
"@metamask/snaps-controllers": "^3.2.0"
|
57
59
|
},
|
58
60
|
"engines": {
|
59
61
|
"node": ">=16.0.0"
|