Skip to content

Commit f55cc4a

Browse files
Release/642.0.0 (#6962)
## 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? --> ## 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 --> ## Checklist - [ ] I've updated the test suite for new or updated code as appropriate - [ ] I've updated documentation (JSDoc, Markdown, etc.) for new or updated code as appropriate - [ ] I've communicated my changes to consumers by [updating changelogs for packages I've changed](https://github.com/MetaMask/core/tree/main/docs/contributing.md#updating-changelogs), highlighting breaking changes as necessary - [ ] I've prepared draft pull requests for clients and consumer packages to resolve any breaking changes <!-- CURSOR_SUMMARY --> --- > [!NOTE] > Publishes 642.0.0 with migration to new Messenger API and coordinated major version bumps across controllers/services. > > - **Breaking/Migrations**: > - Adopt new `@metamask/messenger` across packages; upgrade to `@metamask/base-controller@^9`. > - Major peer/dev dep bumps: `@metamask/accounts-controller@^34`, `@metamask/keyring-controller@^24`, `@metamask/network-controller@^25`, `@metamask/transaction-controller@^61`, `@metamask/polling-controller@^15`, `@metamask/gas-fee-controller@^25`, `@metamask/remote-feature-flag-controller@^2`, `@metamask/multichain-network-controller@^2`, `@metamask/core-backend@^4`, and related packages. > - **Package releases (highlights)**: > - New majors: `[email protected]`, `[email protected]`, `[email protected]`, `[email protected]`, `[email protected]`, `[email protected]`, `[email protected]`, `[email protected]`, `[email protected]`, `[email protected]`, `[email protected]`, `[email protected]`, `[email protected]`, `[email protected]`, `[email protected]`, `[email protected]`, `[email protected]`, `[email protected]`, `[email protected]`, `[email protected]`, `[email protected]`, `[email protected]`, `[email protected]`, `[email protected]`, `[email protected]`, `[email protected]`, `[email protected]`, `[email protected]`, `[email protected]`, `[email protected]`, `[email protected]`, `[email protected]`, `[email protected]`, `[email protected]`, `[email protected]`, `[email protected]`, `[email protected]`, `[email protected]`, `[email protected]`, `[email protected]`, `[email protected]`, `[email protected]`, `[email protected]`, `[email protected]`, `[email protected]`, `[email protected]`, `[email protected]`, `[email protected]`. > - **Repo**: > - Monorepo version bump to `642.0.0`; lockfile and peer ranges updated accordingly. > > <sup>Written by [Cursor Bugbot](https://cursor.com/dashboard?tab=bugbot) for commit 8947133. This will update automatically on new commits. Configure [here](https://cursor.com/dashboard?tab=bugbot).</sup> <!-- /CURSOR_SUMMARY --> --------- Co-authored-by: Mark Stacey <[email protected]>
1 parent b5aa379 commit f55cc4a

File tree

101 files changed

+872
-557
lines changed

Some content is hidden

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

101 files changed

+872
-557
lines changed

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": "641.0.0",
3+
"version": "642.0.0",
44
"private": true,
55
"description": "Monorepo for packages shared between MetaMask clients",
66
"repository": {

packages/account-tree-controller/CHANGELOG.md

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

88
## [Unreleased]
99

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

1214
- **BREAKING:** Use new `Messenger` from `@metamask/messenger` ([#6380](https://github.com/MetaMask/core/pull/6380))
1315
- Previously, `AccountTreeController` accepted a `RestrictedMessenger` instance from `@metamask/base-controller`.
16+
- **BREAKING:** Bump `@metamask/accounts-controller` from `^33.0.0` to `^34.0.0` ([#6962](https://github.com/MetaMask/core/pull/6962))
17+
- **BREAKING:** Bump `@metamask/keyring-controller` from `^23.0.0` to `^24.0.0` ([#6962](https://github.com/MetaMask/core/pull/6962))
18+
- **BREAKING:** Bump `@metamask/multichain-account-service` from `^1.0.0` to `^2.0.0` ([#6962](https://github.com/MetaMask/core/pull/6962))
19+
- **BREAKING:** Bump `@metamask/profile-sync-controller` from `^25.0.0` to `^26.0.0` ([#6962](https://github.com/MetaMask/core/pull/6962))
20+
- Bump `@metamask/base-controller` from `^8.4.2` to `^9.0.0` ([#6962](https://github.com/MetaMask/core/pull/6962))
1421

1522
## [1.6.0]
1623

@@ -386,7 +393,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
386393
- Initial release ([#5847](https://github.com/MetaMask/core/pull/5847))
387394
- Grouping accounts into 3 main categories: Entropy source, Snap ID, keyring types.
388395

389-
[Unreleased]: https://github.com/MetaMask/core/compare/@metamask/[email protected]
396+
[Unreleased]: https://github.com/MetaMask/core/compare/@metamask/[email protected]
397+
[2.0.0]: https://github.com/MetaMask/core/compare/@metamask/[email protected]...@metamask/[email protected]
390398
[1.6.0]: https://github.com/MetaMask/core/compare/@metamask/[email protected]...@metamask/[email protected]
391399
[1.5.0]: https://github.com/MetaMask/core/compare/@metamask/[email protected]...@metamask/[email protected]
392400
[1.4.2]: https://github.com/MetaMask/core/compare/@metamask/[email protected]...@metamask/[email protected]

packages/account-tree-controller/package.json

Lines changed: 10 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@metamask/account-tree-controller",
3-
"version": "1.6.0",
3+
"version": "2.0.0",
44
"description": "Controller to group account together based on some pre-defined rules",
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": "^8.4.2",
50+
"@metamask/base-controller": "^9.0.0",
5151
"@metamask/messenger": "^0.3.0",
5252
"@metamask/snaps-sdk": "^9.0.0",
5353
"@metamask/snaps-utils": "^11.0.0",
@@ -58,12 +58,12 @@
5858
},
5959
"devDependencies": {
6060
"@metamask/account-api": "^0.12.0",
61-
"@metamask/accounts-controller": "^33.2.0",
61+
"@metamask/accounts-controller": "^34.0.0",
6262
"@metamask/auto-changelog": "^3.4.4",
6363
"@metamask/keyring-api": "^21.0.0",
64-
"@metamask/keyring-controller": "^23.2.0",
65-
"@metamask/multichain-account-service": "^1.6.2",
66-
"@metamask/profile-sync-controller": "^25.1.2",
64+
"@metamask/keyring-controller": "^24.0.0",
65+
"@metamask/multichain-account-service": "^2.0.0",
66+
"@metamask/profile-sync-controller": "^26.0.0",
6767
"@metamask/providers": "^22.1.0",
6868
"@metamask/snaps-controllers": "^14.0.1",
6969
"@types/jest": "^27.4.1",
@@ -77,10 +77,10 @@
7777
},
7878
"peerDependencies": {
7979
"@metamask/account-api": "^0.12.0",
80-
"@metamask/accounts-controller": "^33.0.0",
81-
"@metamask/keyring-controller": "^23.0.0",
82-
"@metamask/multichain-account-service": "^1.0.0",
83-
"@metamask/profile-sync-controller": "^25.0.0",
80+
"@metamask/accounts-controller": "^34.0.0",
81+
"@metamask/keyring-controller": "^24.0.0",
82+
"@metamask/multichain-account-service": "^2.0.0",
83+
"@metamask/profile-sync-controller": "^26.0.0",
8484
"@metamask/providers": "^22.0.0",
8585
"@metamask/snaps-controllers": "^14.0.0",
8686
"webextension-polyfill": "^0.10.0 || ^0.11.0 || ^0.12.0"

packages/accounts-controller/CHANGELOG.md

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

88
## [Unreleased]
99

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

1214
- **BREAKING:** Use new `Messenger` from `@metamask/messenger` ([#6426](https://github.com/MetaMask/core/pull/6426))
1315
- Previously, `AccountsController` accepted a `RestrictedMessenger` instance from `@metamask/base-controller`.
16+
- **BREAKING:** Bump `@metamask/keyring-controller` from `^23.0.0` to `^24.0.0` ([#6962](https://github.com/MetaMask/core/pull/6962))
17+
- **BREAKING:** Bump `@metamask/network-controller` from `^24.0.0` to `^25.0.0` ([#6962](https://github.com/MetaMask/core/pull/6962))
1418
- Bump `@metamask/eth-snap-keyring` from `^17.0.0` to `^18.0.0` ([#6951](https://github.com/MetaMask/core/pull/6951))
19+
- Bump `@metamask/base-controller` from `^8.4.2` to `^9.0.0` ([#6962](https://github.com/MetaMask/core/pull/6962))
1520

1621
## [33.2.0]
1722

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

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

647-
[Unreleased]: https://github.com/MetaMask/core/compare/@metamask/[email protected]
652+
[Unreleased]: https://github.com/MetaMask/core/compare/@metamask/[email protected]
653+
[34.0.0]: https://github.com/MetaMask/core/compare/@metamask/[email protected]...@metamask/[email protected]
648654
[33.2.0]: https://github.com/MetaMask/core/compare/@metamask/[email protected]...@metamask/[email protected]
649655
[33.1.1]: https://github.com/MetaMask/core/compare/@metamask/[email protected]...@metamask/[email protected]
650656
[33.1.0]: https://github.com/MetaMask/core/compare/@metamask/[email protected]...@metamask/[email protected]

packages/accounts-controller/package.json

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@metamask/accounts-controller",
3-
"version": "33.2.0",
3+
"version": "34.0.0",
44
"description": "Manages internal accounts",
55
"keywords": [
66
"MetaMask",
@@ -48,7 +48,7 @@
4848
},
4949
"dependencies": {
5050
"@ethereumjs/util": "^9.1.0",
51-
"@metamask/base-controller": "^8.4.2",
51+
"@metamask/base-controller": "^9.0.0",
5252
"@metamask/eth-snap-keyring": "^18.0.0",
5353
"@metamask/keyring-api": "^21.0.0",
5454
"@metamask/keyring-internal-api": "^9.0.0",
@@ -67,8 +67,8 @@
6767
"devDependencies": {
6868
"@metamask/auto-changelog": "^3.4.4",
6969
"@metamask/controller-utils": "^11.14.1",
70-
"@metamask/keyring-controller": "^23.2.0",
71-
"@metamask/network-controller": "^24.3.1",
70+
"@metamask/keyring-controller": "^24.0.0",
71+
"@metamask/network-controller": "^25.0.0",
7272
"@metamask/providers": "^22.1.0",
7373
"@metamask/snaps-controllers": "^14.0.1",
7474
"@types/jest": "^27.4.1",
@@ -81,8 +81,8 @@
8181
"webextension-polyfill": "^0.12.0"
8282
},
8383
"peerDependencies": {
84-
"@metamask/keyring-controller": "^23.0.0",
85-
"@metamask/network-controller": "^24.0.0",
84+
"@metamask/keyring-controller": "^24.0.0",
85+
"@metamask/network-controller": "^25.0.0",
8686
"@metamask/providers": "^22.0.0",
8787
"@metamask/snaps-controllers": "^14.0.0",
8888
"webextension-polyfill": "^0.10.0 || ^0.11.0 || ^0.12.0"

packages/address-book-controller/CHANGELOG.md

Lines changed: 5 additions & 1 deletion
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+
## [7.0.0]
11+
1012
### Changed
1113

1214
- **BREAKING:** Use new `Messenger` from `@metamask/messenger` ([#6383](https://github.com/MetaMask/core/pull/6383))
1315
- Previously, `AddressBookController` accepted a `RestrictedMessenger` instance from `@metamask/base-controller`.
1416
- **BREAKING:** Metadata property `anonymous` renamed to `includeInDebugSnapshot` ([#6383](https://github.com/MetaMask/core/pull/6383))
17+
- Bump `@metamask/base-controller` from `^8.4.2` to `^9.0.0` ([#6962](https://github.com/MetaMask/core/pull/6962))
1518

1619
## [6.2.1]
1720

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

255258
All changes listed after this point were applied to this package following the monorepo conversion.
256259

257-
[Unreleased]: https://github.com/MetaMask/core/compare/@metamask/[email protected]
260+
[Unreleased]: https://github.com/MetaMask/core/compare/@metamask/[email protected]
261+
[7.0.0]: https://github.com/MetaMask/core/compare/@metamask/[email protected]...@metamask/[email protected]
258262
[6.2.1]: https://github.com/MetaMask/core/compare/@metamask/[email protected]...@metamask/[email protected]
259263
[6.2.0]: https://github.com/MetaMask/core/compare/@metamask/[email protected]...@metamask/[email protected]
260264
[6.1.1]: 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.2.1",
3+
"version": "7.0.0",
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": "^8.4.2",
50+
"@metamask/base-controller": "^9.0.0",
5151
"@metamask/controller-utils": "^11.14.1",
5252
"@metamask/messenger": "^0.3.0",
5353
"@metamask/utils": "^11.8.1"

packages/announcement-controller/CHANGELOG.md

Lines changed: 5 additions & 1 deletion
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+
## [8.0.0]
11+
1012
### Changed
1113

1214
- **BREAKING:** Use new `Messenger` from `@metamask/messenger` ([#6384](https://github.com/MetaMask/core/pull/6384))
1315
- Previously, `AnnouncementController` accepted a `RestrictedMessenger` instance from `@metamask/base-controller`.
1416
- **BREAKING:** Metadata property `anonymous` renamed to `includeInDebugSnapshot` ([#6384](https://github.com/MetaMask/core/pull/6384))
17+
- Bump `@metamask/base-controller` from `^8.4.2` to `^9.0.0` ([#6962](https://github.com/MetaMask/core/pull/6962))
1518

1619
## [7.1.1]
1720

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

199202
All changes listed after this point were applied to this package following the monorepo conversion.
200203

201-
[Unreleased]: https://github.com/MetaMask/core/compare/@metamask/[email protected]
204+
[Unreleased]: https://github.com/MetaMask/core/compare/@metamask/[email protected]
205+
[8.0.0]: https://github.com/MetaMask/core/compare/@metamask/[email protected]...@metamask/[email protected]
202206
[7.1.1]: https://github.com/MetaMask/core/compare/@metamask/[email protected]...@metamask/[email protected]
203207
[7.1.0]: https://github.com/MetaMask/core/compare/@metamask/[email protected]...@metamask/[email protected]
204208
[7.0.3]: 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.1.1",
3+
"version": "8.0.0",
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": "^8.4.2",
50+
"@metamask/base-controller": "^9.0.0",
5151
"@metamask/messenger": "^0.3.0"
5252
},
5353
"devDependencies": {

packages/app-metadata-controller/CHANGELOG.md

Lines changed: 5 additions & 1 deletion
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+
## [2.0.0]
11+
1012
### Changed
1113

1214
- **BREAKING:** Use new `Messenger` from `@metamask/messenger` ([#6385](https://github.com/MetaMask/core/pull/6385))
1315
- Previously, `AppMetadataController` accepted a `RestrictedMessenger` instance from `@metamask/base-controller`.
1416
- **BREAKING:** Metadata property `anonymous` renamed to `includeInDebugSnapshot` ([#6385](https://github.com/MetaMask/core/pull/6385))
17+
- Bump `@metamask/base-controller` from `^8.4.2` to `^9.0.0` ([#6962](https://github.com/MetaMask/core/pull/6962))
1518

1619
## [1.1.1]
1720

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

3639
- Initial release ([#5577](https://github.com/MetaMask/core/pull/5577))
3740

38-
[Unreleased]: https://github.com/MetaMask/core/compare/@metamask/[email protected]
41+
[Unreleased]: https://github.com/MetaMask/core/compare/@metamask/[email protected]
42+
[2.0.0]: https://github.com/MetaMask/core/compare/@metamask/[email protected]...@metamask/[email protected]
3943
[1.1.1]: https://github.com/MetaMask/core/compare/@metamask/[email protected]...@metamask/[email protected]
4044
[1.1.0]: https://github.com/MetaMask/core/compare/@metamask/[email protected]...@metamask/[email protected]
4145
[1.0.0]: https://github.com/MetaMask/core/releases/tag/@metamask/[email protected]

0 commit comments

Comments
 (0)