Skip to content

Commit 4b5ac13

Browse files
authored
Release/297.0.0 (#5305)
## Explanation <!-- Thanks for your contribution! Take a moment to answer these questions so that reviewers have the information they need to properly understand your changes: * What is the current state of things and why does it need to change? * What is the solution your changes offer and how does it work? * Are there any changes whose purpose might not obvious to those unfamiliar with the domain? * If your primary goal was to update one package but you found you had to update another one along the way, why did you do so? * If you had to upgrade a dependency, why did you do so? --> Major core release affecting all packages. This release delivers the latest version of BaseController, incorporating two significant breaking changes: the removal of `BaseControllerV1` and the removal of old `Messenger` aliases. ## References <!-- Are there any issues that this pull request is tied to? Are there other links that reviewers should consult to understand these changes better? Are there client or consumer pull requests to adopt any breaking changes? For example: * Fixes #12345 * Related to #67890 --> ## Changelog <!-- If you're making any consumer-facing changes, list those changes here as if you were updating a changelog, using the template below as a guide. (CATEGORY is one of BREAKING, ADDED, CHANGED, DEPRECATED, REMOVED, or FIXED. For security-related issues, follow the Security Advisory process.) Please take care to name the exact pieces of the API you've added or changed (e.g. types, interfaces, functions, or methods). If there are any breaking changes, make sure to offer a solution for consumers to follow once they upgrade to the changes. Finally, if you're only making changes to development scripts or tests, you may replace the template below with "None". --> ## Checklist - [x] I've updated the test suite for new or updated code as appropriate - [x] I've updated documentation (JSDoc, Markdown, etc.) for new or updated code as appropriate - [x] I've highlighted breaking changes using the "BREAKING" category above as appropriate - [x] I've prepared draft pull requests for clients and consumer packages to resolve any breaking changes
1 parent 8339f49 commit 4b5ac13

File tree

71 files changed

+515
-251
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

71 files changed

+515
-251
lines changed

examples/example-controllers/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -47,7 +47,7 @@
4747
"test:watch": "NODE_OPTIONS=--experimental-vm-modules jest --watch"
4848
},
4949
"dependencies": {
50-
"@metamask/base-controller": "^7.1.1",
50+
"@metamask/base-controller": "^8.0.0",
5151
"@metamask/utils": "^11.1.0"
5252
},
5353
"devDependencies": {

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@metamask/core-monorepo",
3-
"version": "296.0.0",
3+
"version": "297.0.0",
44
"private": true,
55
"description": "Monorepo for packages shared between MetaMask clients",
66
"repository": {

packages/accounts-controller/CHANGELOG.md

Lines changed: 8 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,12 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
77

88
## [Unreleased]
99

10+
## [23.0.1]
11+
12+
### Changed
13+
14+
- Bump `@metamask/base-controller` from `^7.1.1` to `^8.0.0` ([#5305](https://github.com/MetaMask/core/pull/5305))
15+
1016
## [23.0.0]
1117

1218
### Changed
@@ -432,7 +438,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
432438

433439
- Initial release ([#1637](https://github.com/MetaMask/core/pull/1637))
434440

435-
[Unreleased]: https://github.com/MetaMask/core/compare/@metamask/[email protected]
441+
[Unreleased]: https://github.com/MetaMask/core/compare/@metamask/[email protected]
442+
[23.0.1]: https://github.com/MetaMask/core/compare/@metamask/[email protected]...@metamask/[email protected]
436443
[23.0.0]: https://github.com/MetaMask/core/compare/@metamask/[email protected]...@metamask/[email protected]
437444
[22.0.0]: https://github.com/MetaMask/core/compare/@metamask/[email protected]...@metamask/[email protected]
438445
[21.0.2]: https://github.com/MetaMask/core/compare/@metamask/[email protected]...@metamask/[email protected]

packages/accounts-controller/package.json

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@metamask/accounts-controller",
3-
"version": "23.0.0",
3+
"version": "23.0.1",
44
"description": "Manages internal accounts",
55
"keywords": [
66
"MetaMask",
@@ -48,7 +48,7 @@
4848
},
4949
"dependencies": {
5050
"@ethereumjs/util": "^8.1.0",
51-
"@metamask/base-controller": "^7.1.1",
51+
"@metamask/base-controller": "^8.0.0",
5252
"@metamask/eth-snap-keyring": "^10.0.0",
5353
"@metamask/keyring-api": "^17.0.0",
5454
"@metamask/keyring-internal-api": "^4.0.1",
@@ -62,7 +62,7 @@
6262
},
6363
"devDependencies": {
6464
"@metamask/auto-changelog": "^3.4.4",
65-
"@metamask/keyring-controller": "^19.0.6",
65+
"@metamask/keyring-controller": "^19.0.7",
6666
"@metamask/providers": "^18.1.1",
6767
"@metamask/snaps-controllers": "^9.19.0",
6868
"@types/jest": "^27.4.1",

packages/address-book-controller/CHANGELOG.md

Lines changed: 8 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,9 +7,14 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
77

88
## [Unreleased]
99

10+
## [6.0.3]
11+
1012
### Changed
1113

12-
- Bump `@metamask/base-controller` from `^7.0.0` to `^7.1.0` ([#5079](https://github.com/MetaMask/core/pull/5079))
14+
- Bump `@metamask/base-controller` from `^7.0.2` to `^8.0.0` ([#5079](https://github.com/MetaMask/core/pull/5079)), ([#5135](https://github.com/MetaMask/core/pull/5135)), ([#5305](https://github.com/MetaMask/core/pull/5305))
15+
- Bump `@metamask/controller-utils` from `^11.4.4` to `^11.5.0` ([#5135](https://github.com/MetaMask/core/pull/5135)), ([#5272](https://github.com/MetaMask/core/pull/5272))
16+
- Bump `@metamask/rpc-errors` from `^7.0.1` to `^7.0.2` ([#5080](https://github.com/MetaMask/core/pull/5080))
17+
- Bump `@metamask/utils` from `^10.0.0` to `^11.1.0` ([#5080](https://github.com/MetaMask/core/pull/5080)), ([#5223](https://github.com/MetaMask/core/pull/5223))
1318

1419
## [6.0.2]
1520

@@ -198,7 +203,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
198203

199204
All changes listed after this point were applied to this package following the monorepo conversion.
200205

201-
[Unreleased]: https://github.com/MetaMask/core/compare/@metamask/[email protected]
206+
[Unreleased]: https://github.com/MetaMask/core/compare/@metamask/[email protected]
207+
[6.0.3]: https://github.com/MetaMask/core/compare/@metamask/[email protected]...@metamask/[email protected]
202208
[6.0.2]: https://github.com/MetaMask/core/compare/@metamask/[email protected]...@metamask/[email protected]
203209
[6.0.1]: https://github.com/MetaMask/core/compare/@metamask/[email protected]...@metamask/[email protected]
204210
[6.0.0]: https://github.com/MetaMask/core/compare/@metamask/[email protected]...@metamask/[email protected]

packages/address-book-controller/package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@metamask/address-book-controller",
3-
"version": "6.0.2",
3+
"version": "6.0.3",
44
"description": "Manages a list of recipient addresses associated with nicknames",
55
"keywords": [
66
"MetaMask",
@@ -47,7 +47,7 @@
4747
"test:watch": "NODE_OPTIONS=--experimental-vm-modules jest --watch"
4848
},
4949
"dependencies": {
50-
"@metamask/base-controller": "^7.1.1",
50+
"@metamask/base-controller": "^8.0.0",
5151
"@metamask/controller-utils": "^11.5.0",
5252
"@metamask/utils": "^11.1.0"
5353
},

packages/announcement-controller/CHANGELOG.md

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,9 +7,11 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
77

88
## [Unreleased]
99

10+
## [7.0.3]
11+
1012
### Changed
1113

12-
- Bump `@metamask/base-controller` from `^7.0.0` to `^7.1.0` ([#5079](https://github.com/MetaMask/core/pull/5079))
14+
- Bump `@metamask/base-controller` from `^7.0.2` to `^8.0.0` ([#5079](https://github.com/MetaMask/core/pull/5079)), ([#5135](https://github.com/MetaMask/core/pull/5135)), ([#5305](https://github.com/MetaMask/core/pull/5305))
1315

1416
## [7.0.2]
1517

@@ -174,7 +176,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
174176

175177
All changes listed after this point were applied to this package following the monorepo conversion.
176178

177-
[Unreleased]: https://github.com/MetaMask/core/compare/@metamask/[email protected]
179+
[Unreleased]: https://github.com/MetaMask/core/compare/@metamask/[email protected]
180+
[7.0.3]: https://github.com/MetaMask/core/compare/@metamask/[email protected]...@metamask/[email protected]
178181
[7.0.2]: https://github.com/MetaMask/core/compare/@metamask/[email protected]...@metamask/[email protected]
179182
[7.0.1]: https://github.com/MetaMask/core/compare/@metamask/[email protected]...@metamask/[email protected]
180183
[7.0.0]: https://github.com/MetaMask/core/compare/@metamask/[email protected]...@metamask/[email protected]

packages/announcement-controller/package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@metamask/announcement-controller",
3-
"version": "7.0.2",
3+
"version": "7.0.3",
44
"description": "Manages in-app announcements",
55
"keywords": [
66
"MetaMask",
@@ -47,7 +47,7 @@
4747
"test:watch": "NODE_OPTIONS=--experimental-vm-modules jest --watch"
4848
},
4949
"dependencies": {
50-
"@metamask/base-controller": "^7.1.1"
50+
"@metamask/base-controller": "^8.0.0"
5151
},
5252
"devDependencies": {
5353
"@metamask/auto-changelog": "^3.4.4",

packages/approval-controller/CHANGELOG.md

Lines changed: 9 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,13 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
77

88
## [Unreleased]
99

10+
## [7.1.3]
11+
12+
### Changed
13+
14+
- Bump `@metamask/base-controller` from `^7.1.0` to `^8.0.0` ([#5135](https://github.com/MetaMask/core/pull/5135)), ([#5305](https://github.com/MetaMask/core/pull/5305))
15+
- Bump `@metamask/utils` from `^11.0.1` to `^11.1.0` ([#5223](https://github.com/MetaMask/core/pull/5223))
16+
1017
## [7.1.2]
1118

1219
### Changed
@@ -262,7 +269,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
262269

263270
All changes listed after this point were applied to this package following the monorepo conversion.
264271

265-
[Unreleased]: https://github.com/MetaMask/core/compare/@metamask/[email protected]
272+
[Unreleased]: https://github.com/MetaMask/core/compare/@metamask/[email protected]
273+
[7.1.3]: https://github.com/MetaMask/core/compare/@metamask/[email protected]...@metamask/[email protected]
266274
[7.1.2]: https://github.com/MetaMask/core/compare/@metamask/[email protected]...@metamask/[email protected]
267275
[7.1.1]: https://github.com/MetaMask/core/compare/@metamask/[email protected]...@metamask/[email protected]
268276
[7.1.0]: https://github.com/MetaMask/core/compare/@metamask/[email protected]...@metamask/[email protected]

packages/approval-controller/package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@metamask/approval-controller",
3-
"version": "7.1.2",
3+
"version": "7.1.3",
44
"description": "Manages requests that require user approval",
55
"keywords": [
66
"MetaMask",
@@ -47,7 +47,7 @@
4747
"test:watch": "NODE_OPTIONS=--experimental-vm-modules jest --watch"
4848
},
4949
"dependencies": {
50-
"@metamask/base-controller": "^7.1.1",
50+
"@metamask/base-controller": "^8.0.0",
5151
"@metamask/rpc-errors": "^7.0.2",
5252
"@metamask/utils": "^11.1.0",
5353
"nanoid": "^3.3.8"

packages/assets-controllers/CHANGELOG.md

Lines changed: 21 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,25 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
77

88
## [Unreleased]
99

10+
## [49.0.0]
11+
12+
### Added
13+
14+
- Add new `MultiChainTokensRatesController` ([#5175](https://github.com/MetaMask/core/pull/5175))
15+
- A controller that manages multi‑chain token conversion rates within MetaMask. Its primary goal is to periodically poll for updated conversion rates of tokens associated with non‑EVM accounts (those using Snap metadata), ensuring that the conversion data remains up‑to‑date across supported chains.
16+
- Add `updateBalance` to MultichainBalancesController ([#5295](https://github.com/MetaMask/core/pull/5295))
17+
18+
### Changed
19+
20+
- **BREAKING:** MultichainBalancesController messenger must now allow `MultichainAssetsController:getState` action and `MultichainAssetsController:stateChange` event ([#5295](https://github.com/MetaMask/core/pull/5295))
21+
- Update `MultichainBalancesController` to get the full list of assets from `MultichainAssetsController` state instead of only requesting the native token ([#5295](https://github.com/MetaMask/core/pull/5295))
22+
- Bump `@metamask/base-controller` from `^7.1.1` to `^8.0.0` ([#5305](https://github.com/MetaMask/core/pull/5305))
23+
- Bump `@metamask/polling-controller` from `^12.0.2` to `^12.0.3` ([#5305](https://github.com/MetaMask/core/pull/5305))
24+
25+
### Removed
26+
27+
- **BREAKING:** `NETWORK_ASSETS_MAP`, `MultichainNetworks`, and `MultichainNativeAssets` are no longer exported ([#5295](https://github.com/MetaMask/core/pull/5295))
28+
1029
## [48.0.0]
1130

1231
### Added
@@ -1375,7 +1394,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
13751394
13761395
- Use Ethers for AssetsContractController ([#845](https://github.com/MetaMask/core/pull/845))
13771396
1378-
[Unreleased]: https://github.com/MetaMask/core/compare/@metamask/[email protected]
1397+
[Unreleased]: https://github.com/MetaMask/core/compare/@metamask/[email protected]
1398+
[49.0.0]: https://github.com/MetaMask/core/compare/@metamask/[email protected]...@metamask/[email protected]
13791399
[48.0.0]: https://github.com/MetaMask/core/compare/@metamask/[email protected]...@metamask/[email protected]
13801400
[47.0.0]: https://github.com/MetaMask/core/compare/@metamask/[email protected]...@metamask/[email protected]
13811401
[46.0.1]: https://github.com/MetaMask/core/compare/@metamask/[email protected]...@metamask/[email protected]

packages/assets-controllers/package.json

Lines changed: 10 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@metamask/assets-controllers",
3-
"version": "48.0.0",
3+
"version": "49.0.0",
44
"description": "Controllers which manage interactions involving ERC-20, ERC-721, and ERC-1155 tokens (including NFTs)",
55
"keywords": [
66
"MetaMask",
@@ -54,13 +54,13 @@
5454
"@ethersproject/contracts": "^5.7.0",
5555
"@ethersproject/providers": "^5.7.0",
5656
"@metamask/abi-utils": "^2.0.3",
57-
"@metamask/base-controller": "^7.1.1",
57+
"@metamask/base-controller": "^8.0.0",
5858
"@metamask/contract-metadata": "^2.4.0",
5959
"@metamask/controller-utils": "^11.5.0",
6060
"@metamask/eth-query": "^4.0.0",
6161
"@metamask/keyring-api": "^17.0.0",
6262
"@metamask/metamask-eth-abis": "^3.1.1",
63-
"@metamask/polling-controller": "^12.0.2",
63+
"@metamask/polling-controller": "^12.0.3",
6464
"@metamask/rpc-errors": "^7.0.2",
6565
"@metamask/snaps-utils": "^8.10.0",
6666
"@metamask/utils": "^11.1.0",
@@ -77,16 +77,16 @@
7777
},
7878
"devDependencies": {
7979
"@babel/runtime": "^7.23.9",
80-
"@metamask/accounts-controller": "^23.0.0",
81-
"@metamask/approval-controller": "^7.1.2",
80+
"@metamask/accounts-controller": "^23.0.1",
81+
"@metamask/approval-controller": "^7.1.3",
8282
"@metamask/auto-changelog": "^3.4.4",
8383
"@metamask/ethjs-provider-http": "^0.3.0",
84-
"@metamask/keyring-controller": "^19.0.6",
84+
"@metamask/keyring-controller": "^19.0.7",
8585
"@metamask/keyring-internal-api": "^4.0.1",
8686
"@metamask/keyring-snap-client": "^3.0.3",
87-
"@metamask/network-controller": "^22.2.0",
88-
"@metamask/permission-controller": "^11.0.5",
89-
"@metamask/preferences-controller": "^15.0.1",
87+
"@metamask/network-controller": "^22.2.1",
88+
"@metamask/permission-controller": "^11.0.6",
89+
"@metamask/preferences-controller": "^15.0.2",
9090
"@metamask/providers": "^18.1.1",
9191
"@metamask/snaps-controllers": "^9.19.0",
9292
"@metamask/snaps-sdk": "^6.17.1",
@@ -105,7 +105,7 @@
105105
"webextension-polyfill": "^0.12.0"
106106
},
107107
"peerDependencies": {
108-
"@metamask/accounts-controller": "^23.0.0",
108+
"@metamask/accounts-controller": "^23.0.1",
109109
"@metamask/approval-controller": "^7.0.0",
110110
"@metamask/keyring-controller": "^19.0.0",
111111
"@metamask/network-controller": "^22.0.0",

packages/base-controller/CHANGELOG.md

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
77

88
## [Unreleased]
99

10+
## [8.0.0]
11+
1012
### Changed
1113

1214
- **BREAKING:** Remove deprecated messenger-related exports and simplify `RestrictedMessenger` constructor ([#5260](https://github.com/MetaMask/core/pull/5260))
@@ -15,6 +17,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
1517
- Remove `RestrictedControllerMessengerConstraint` type export which was an alias for `RestrictedMessengerConstraint`. Consumers should use `RestrictedMessengerConstraint` type directly
1618
- Simplify `RestrictedMessenger` constructor by removing deprecated `controllerMessenger` parameter. The messenger instance should now be passed using only the `messenger` parameter instead of supporting both options
1719
- Widen input parameter for type guard `isBaseController` from `ControllerInstance` to `unknown` ([#5018](https://github.com/MetaMask/core/pull/5018/))
20+
- Bump `@metamask/json-rpc-engine` from `^10.0.2` to `^10.0.3` ([#5272](https://github.com/MetaMask/core/pull/5272))
21+
- Bump `@metamask/utils` from `^11.0.1` to `^11.1.0` ([#5223](https://github.com/MetaMask/core/pull/5223))
1822

1923
### Removed
2024

@@ -300,7 +304,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
300304

301305
All changes listed after this point were applied to this package following the monorepo conversion.
302306

303-
[Unreleased]: https://github.com/MetaMask/core/compare/@metamask/[email protected]
307+
[Unreleased]: https://github.com/MetaMask/core/compare/@metamask/[email protected]
308+
[8.0.0]: https://github.com/MetaMask/core/compare/@metamask/[email protected]...@metamask/[email protected]
304309
[7.1.1]: https://github.com/MetaMask/core/compare/@metamask/[email protected]...@metamask/[email protected]
305310
[7.1.0]: https://github.com/MetaMask/core/compare/@metamask/[email protected]...@metamask/[email protected]
306311
[7.0.2]: https://github.com/MetaMask/core/compare/@metamask/[email protected]...@metamask/[email protected]

packages/base-controller/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@metamask/base-controller",
3-
"version": "7.1.1",
3+
"version": "8.0.0",
44
"description": "Provides scaffolding for controllers as well a communication system for all controllers",
55
"keywords": [
66
"MetaMask",

packages/build-utils/CHANGELOG.md

Lines changed: 8 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,12 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
77

88
## [Unreleased]
99

10+
## [3.0.3]
11+
12+
### Changed
13+
14+
- Bump `@metamask/utils` from `^10.0.0` to `^11.1.0` ([#5080](https://github.com/MetaMask/core/pull/5080)), ([#5223](https://github.com/MetaMask/core/pull/5223))
15+
1016
## [3.0.2]
1117

1218
### Changed
@@ -75,7 +81,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
7581

7682
- Initial release ([#3577](https://github.com/MetaMask/core/pull/3577) [#3588](https://github.com/MetaMask/core/pull/3588))
7783

78-
[Unreleased]: https://github.com/MetaMask/core/compare/@metamask/[email protected]
84+
[Unreleased]: https://github.com/MetaMask/core/compare/@metamask/[email protected]
85+
[3.0.3]: https://github.com/MetaMask/core/compare/@metamask/[email protected]...@metamask/[email protected]
7986
[3.0.2]: https://github.com/MetaMask/core/compare/@metamask/[email protected]...@metamask/[email protected]
8087
[3.0.1]: https://github.com/MetaMask/core/compare/@metamask/[email protected]...@metamask/[email protected]
8188
[3.0.0]: https://github.com/MetaMask/core/compare/@metamask/[email protected]...@metamask/[email protected]

packages/build-utils/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@metamask/build-utils",
3-
"version": "3.0.2",
3+
"version": "3.0.3",
44
"description": "Utilities for building MetaMask applications",
55
"keywords": [
66
"MetaMask",

packages/composable-controller/CHANGELOG.md

Lines changed: 6 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,11 +7,14 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
77

88
## [Unreleased]
99

10+
## [11.0.0]
11+
1012
### Changed
1113

1214
- **BREAKING:** Re-define `ComposableControllerStateConstraint` type using `StateConstraint` instead of `LegacyControllerStateConstraint` ([#5018](https://github.com/MetaMask/core/pull/5018/))
1315
- **BREAKING:** Constrain the `ComposableControllerState` generic argument for the `ComposableController` class using `ComposableControllerStateConstraint` instead of `LegacyComposableControllerStateConstraint` ([#5018](https://github.com/MetaMask/core/pull/5018/))
14-
- Bump `@metamask/base-controller` from `^7.0.0` to `^7.1.0` ([#5079](https://github.com/MetaMask/core/pull/5079))
16+
- Bump `@metamask/base-controller` from `^7.0.2` to `^8.0.0` ([#5079](https://github.com/MetaMask/core/pull/5079)), ([#5135](https://github.com/MetaMask/core/pull/5135)), ([#5305](https://github.com/MetaMask/core/pull/5305))
17+
- Bump `@metamask/json-rpc-engine` from `^10.0.1` to `^10.0.3` ([#5082](https://github.com/MetaMask/core/pull/5082)), ([#5272](https://github.com/MetaMask/core/pull/5272))
1518

1619
## [10.0.0]
1720

@@ -218,7 +221,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
218221

219222
All changes listed after this point were applied to this package following the monorepo conversion.
220223

221-
[Unreleased]: https://github.com/MetaMask/core/compare/@metamask/[email protected]
224+
[Unreleased]: https://github.com/MetaMask/core/compare/@metamask/[email protected]
225+
[11.0.0]: https://github.com/MetaMask/core/compare/@metamask/[email protected]...@metamask/[email protected]
222226
[10.0.0]: https://github.com/MetaMask/core/compare/@metamask/[email protected]...@metamask/[email protected]
223227
[9.0.1]: https://github.com/MetaMask/core/compare/@metamask/[email protected]...@metamask/[email protected]
224228
[9.0.0]: https://github.com/MetaMask/core/compare/@metamask/[email protected]...@metamask/[email protected]

packages/composable-controller/package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@metamask/composable-controller",
3-
"version": "10.0.0",
3+
"version": "11.0.0",
44
"description": "Consolidates the state from multiple controllers into one",
55
"keywords": [
66
"MetaMask",
@@ -47,7 +47,7 @@
4747
"test:watch": "NODE_OPTIONS=--experimental-vm-modules jest --watch"
4848
},
4949
"dependencies": {
50-
"@metamask/base-controller": "^7.1.1"
50+
"@metamask/base-controller": "^8.0.0"
5151
},
5252
"devDependencies": {
5353
"@metamask/auto-changelog": "^3.4.4",

0 commit comments

Comments
 (0)