@metamask-previews/composable-controller 6.0.1-preview-4a95e5f → 7.0.0-preview-8e708969
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 +16 -1
- package/package.json +4 -4
package/CHANGELOG.md
CHANGED
|
@@ -7,6 +7,16 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
|
|
|
7
7
|
|
|
8
8
|
## [Unreleased]
|
|
9
9
|
|
|
10
|
+
## [7.0.0]
|
|
11
|
+
|
|
12
|
+
### Changed
|
|
13
|
+
|
|
14
|
+
- **BREAKING:** Bump minimum Node version to 18.18 ([#3611](https://github.com/MetaMask/core/pull/3611))
|
|
15
|
+
- Bump `@metamask/base-controller` to `^6.0.0` ([#4352](https://github.com/MetaMask/core/pull/4352))
|
|
16
|
+
- Bump `@metamask/json-rpc-engine` to `^9.0.0` ([#4352](https://github.com/MetaMask/core/pull/4352))
|
|
17
|
+
|
|
18
|
+
## [6.0.2]
|
|
19
|
+
|
|
10
20
|
### Added
|
|
11
21
|
|
|
12
22
|
- Adds and exports new types: ([#3952](https://github.com/MetaMask/core/pull/3952))
|
|
@@ -18,6 +28,9 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
|
|
|
18
28
|
|
|
19
29
|
- **BREAKING:** The `ComposableController` class is now a generic class that expects one generic argument `ComposableControllerState` ([#3952](https://github.com/MetaMask/core/pull/3952)).
|
|
20
30
|
- **BREAKING:** For the `ComposableController` class to be typed correctly, any of its child controllers that extend `BaseControllerV1` must have an overridden `name` property that is defined using the `as const` assertion.
|
|
31
|
+
- **BREAKING:** The types `ComposableControllerStateChangeEvent`, `ComposableControllerEvents`, `ComposableControllerMessenger` are now generic types that expect one generic argument `ComposableControllerState` ([#3952](https://github.com/MetaMask/core/pull/3952)).
|
|
32
|
+
- Bump `@metamask/json-rpc-engine` to `^8.0.2` ([#4234](https://github.com/MetaMask/core/pull/4234))
|
|
33
|
+
- Bump `@metamask/base-controller` to `^5.0.2` ([#4232](https://github.com/MetaMask/core/pull/4232))
|
|
21
34
|
|
|
22
35
|
## [6.0.1]
|
|
23
36
|
|
|
@@ -134,7 +147,9 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
|
|
|
134
147
|
|
|
135
148
|
All changes listed after this point were applied to this package following the monorepo conversion.
|
|
136
149
|
|
|
137
|
-
[Unreleased]: https://github.com/MetaMask/core/compare/@metamask/composable-controller@
|
|
150
|
+
[Unreleased]: https://github.com/MetaMask/core/compare/@metamask/composable-controller@7.0.0...HEAD
|
|
151
|
+
[7.0.0]: https://github.com/MetaMask/core/compare/@metamask/composable-controller@6.0.2...@metamask/composable-controller@7.0.0
|
|
152
|
+
[6.0.2]: https://github.com/MetaMask/core/compare/@metamask/composable-controller@6.0.1...@metamask/composable-controller@6.0.2
|
|
138
153
|
[6.0.1]: https://github.com/MetaMask/core/compare/@metamask/composable-controller@6.0.0...@metamask/composable-controller@6.0.1
|
|
139
154
|
[6.0.0]: https://github.com/MetaMask/core/compare/@metamask/composable-controller@5.0.1...@metamask/composable-controller@6.0.0
|
|
140
155
|
[5.0.1]: https://github.com/MetaMask/core/compare/@metamask/composable-controller@5.0.0...@metamask/composable-controller@5.0.1
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@metamask-previews/composable-controller",
|
|
3
|
-
"version": "
|
|
3
|
+
"version": "7.0.0-preview-8e708969",
|
|
4
4
|
"description": "Consolidates the state from multiple controllers into one",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"MetaMask",
|
|
@@ -41,11 +41,11 @@
|
|
|
41
41
|
"test:watch": "jest --watch"
|
|
42
42
|
},
|
|
43
43
|
"dependencies": {
|
|
44
|
-
"@metamask/base-controller": "^
|
|
44
|
+
"@metamask/base-controller": "^6.0.0"
|
|
45
45
|
},
|
|
46
46
|
"devDependencies": {
|
|
47
47
|
"@metamask/auto-changelog": "^3.4.4",
|
|
48
|
-
"@metamask/json-rpc-engine": "^
|
|
48
|
+
"@metamask/json-rpc-engine": "^9.0.0",
|
|
49
49
|
"@types/jest": "^27.4.1",
|
|
50
50
|
"deepmerge": "^4.2.2",
|
|
51
51
|
"immer": "^9.0.6",
|
|
@@ -57,7 +57,7 @@
|
|
|
57
57
|
"typescript": "~4.9.5"
|
|
58
58
|
},
|
|
59
59
|
"engines": {
|
|
60
|
-
"node": ">=
|
|
60
|
+
"node": "^18.18 || >=20"
|
|
61
61
|
},
|
|
62
62
|
"publishConfig": {
|
|
63
63
|
"access": "public",
|