@metamask/shield-controller 2.1.1 → 3.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 +10 -3
- package/package.json +6 -6
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
|
+
## [3.0.0]
|
|
11
|
+
|
|
12
|
+
### Changed
|
|
13
|
+
|
|
14
|
+
- Bump `@metamask/controller-utils` from `^11.15.0` to `^11.16.0` ([#7202](https://github.com/MetaMask/core/pull/7202))
|
|
15
|
+
- **BREAKING:** Bump `@metamask/transaction-controller` from `^61.0.0` to `^62.0.0` ([#7202](https://github.com/MetaMask/core/pull/7202))
|
|
16
|
+
- **BREAKING:** Bump `@metamask/signature-controller` from `^36.0.0` to `^37.0.0` ([#7202](https://github.com/MetaMask/core/pull/7202))
|
|
17
|
+
|
|
10
18
|
## [2.1.1]
|
|
11
19
|
|
|
12
20
|
### Added
|
|
@@ -33,8 +41,6 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
|
|
|
33
41
|
|
|
34
42
|
### Changed
|
|
35
43
|
|
|
36
|
-
- fix: Fix build script not working because of missing `@ts-bridge/cli` dependency ([#7040](https://github.com/MetaMask/core/pull/7040))
|
|
37
|
-
- chore(dev-deps): Bump `@ts-bridge/cli` from `^0.6.1` to `^0.6.4` ([#7039](https://github.com/MetaMask/core/pull/7039))
|
|
38
44
|
- Bump `@metamask/transaction-controller` from `61.0.0` to `61.1.0`. ([#7007](https://github.com/MetaMask/core/pull/7007))
|
|
39
45
|
- Bump `@metamask/controller-utils` from `^11.14.1` to `^11.15.0`. ([#7003](https://github.com/MetaMask/core/pull/7003))
|
|
40
46
|
|
|
@@ -140,7 +146,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
|
|
|
140
146
|
|
|
141
147
|
- Initial release of the shield-controller package ([#6137](https://github.com/MetaMask/core/pull/6137)
|
|
142
148
|
|
|
143
|
-
[Unreleased]: https://github.com/MetaMask/core/compare/@metamask/shield-controller@
|
|
149
|
+
[Unreleased]: https://github.com/MetaMask/core/compare/@metamask/shield-controller@3.0.0...HEAD
|
|
150
|
+
[3.0.0]: https://github.com/MetaMask/core/compare/@metamask/shield-controller@2.1.1...@metamask/shield-controller@3.0.0
|
|
144
151
|
[2.1.1]: https://github.com/MetaMask/core/compare/@metamask/shield-controller@2.1.0...@metamask/shield-controller@2.1.1
|
|
145
152
|
[2.1.0]: https://github.com/MetaMask/core/compare/@metamask/shield-controller@2.0.0...@metamask/shield-controller@2.1.0
|
|
146
153
|
[2.0.0]: https://github.com/MetaMask/core/compare/@metamask/shield-controller@1.2.0...@metamask/shield-controller@2.0.0
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@metamask/shield-controller",
|
|
3
|
-
"version": "
|
|
3
|
+
"version": "3.0.0",
|
|
4
4
|
"description": "Controller handling shield transaction coverage logic",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"MetaMask",
|
|
@@ -49,7 +49,7 @@
|
|
|
49
49
|
},
|
|
50
50
|
"dependencies": {
|
|
51
51
|
"@metamask/base-controller": "^9.0.0",
|
|
52
|
-
"@metamask/controller-utils": "^11.
|
|
52
|
+
"@metamask/controller-utils": "^11.16.0",
|
|
53
53
|
"@metamask/messenger": "^0.3.0",
|
|
54
54
|
"@metamask/utils": "^11.8.1",
|
|
55
55
|
"cockatiel": "^3.1.2"
|
|
@@ -59,8 +59,8 @@
|
|
|
59
59
|
"@lavamoat/allow-scripts": "^3.0.4",
|
|
60
60
|
"@lavamoat/preinstall-always-fail": "^2.1.0",
|
|
61
61
|
"@metamask/auto-changelog": "^3.4.4",
|
|
62
|
-
"@metamask/signature-controller": "^
|
|
63
|
-
"@metamask/transaction-controller": "^
|
|
62
|
+
"@metamask/signature-controller": "^37.0.0",
|
|
63
|
+
"@metamask/transaction-controller": "^62.0.0",
|
|
64
64
|
"@ts-bridge/cli": "^0.6.4",
|
|
65
65
|
"@types/jest": "^27.4.1",
|
|
66
66
|
"deepmerge": "^4.2.2",
|
|
@@ -73,8 +73,8 @@
|
|
|
73
73
|
"uuid": "^8.3.2"
|
|
74
74
|
},
|
|
75
75
|
"peerDependencies": {
|
|
76
|
-
"@metamask/signature-controller": "^
|
|
77
|
-
"@metamask/transaction-controller": "^
|
|
76
|
+
"@metamask/signature-controller": "^37.0.0",
|
|
77
|
+
"@metamask/transaction-controller": "^62.0.0"
|
|
78
78
|
},
|
|
79
79
|
"engines": {
|
|
80
80
|
"node": "^18.18 || >=20"
|