Skip to content

Commit 7d5e4cc

Browse files
Release/1088.0.0 (#9349)
## 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/processes/updating-changelogs.md) - [ ] I've introduced [breaking changes](https://github.com/MetaMask/core/tree/main/docs/processes/breaking-changes.md) in this PR and have prepared draft pull requests for clients and consumer packages to resolve them <!-- CURSOR_SUMMARY --> --- > [!NOTE] > **High Risk** > Wide dependency propagation of multiple breaking major releases (especially network RPC failover and multichain session wiring) across bridge, assets, and wallet clients; consumers must update feature flags, messenger hooks, and pay-strategy integrations. > > **Overview** > Cuts **monorepo release 1088.0.0** by bumping root and many `@metamask/*` package versions, refreshing changelogs/compare links, and aligning workspace dependencies (notably `@metamask/network-controller` **^34.0.0**, `@metamask/accounts-controller` **^39.0.4**, `@metamask/transaction-controller` **^68.2.2**, `@metamask/polling-controller` **^16.0.8**, `@metamask/core-backend` **^6.5.0**). > > This release train pulls in several **breaking** consumer-facing changes that were already implemented on main: **`NetworkController` 34** (RPC failover only via `corePlatformRpcFailoverMode`; removed imperative enable/disable APIs), **`multichain-api-middleware` 4** (required `getCapabilities` hook for session handlers), **`@metamask/wallet` 6** (default init wires `AddressBookController`), and **`transaction-pay-controller` 23.17.3** (Bridge/Test pay strategies removed). Notable non-breaking highlights in the versioned notes include **`core-backend` 6.5** Accounts API v6 multi-account balances and **`assets-controllers` 109.3** snap account-asset enrichment / Stellar trustline helper export. > > <sup>Reviewed by [Cursor Bugbot](https://cursor.com/bugbot) for commit 4cb9785. Bugbot is set up for automated code reviews on this repo. Configure [here](https://www.cursor.com/dashboard/bugbot).</sup> <!-- /CURSOR_SUMMARY --> --------- Co-authored-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com>
1 parent 29840ad commit 7d5e4cc

75 files changed

Lines changed: 433 additions & 268 deletions

File tree

Some content is hidden

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

package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@metamask/core-monorepo",
3-
"version": "1087.0.0",
3+
"version": "1088.0.0",
44
"private": true,
55
"description": "Monorepo for packages shared between MetaMask clients",
66
"repository": {
@@ -61,7 +61,7 @@
6161
"@metamask/eth-block-tracker": "^15.0.1",
6262
"@metamask/eth-json-rpc-provider": "^6.0.1",
6363
"@metamask/json-rpc-engine": "^10.5.0",
64-
"@metamask/network-controller": "^33.0.0",
64+
"@metamask/network-controller": "^34.0.0",
6565
"@metamask/skills": "^0.1.0",
6666
"@metamask/utils": "^11.11.0",
6767
"@ts-bridge/cli": "^0.6.4",

packages/account-tree-controller/CHANGELOG.md

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

1212
- Bump `@metamask/keyring-api` from `^23.1.0` to `^23.3.0` ([#9249](https://github.com/MetaMask/core/pull/9249))
1313
- Bump `@metamask/multichain-account-service` from `^11.0.0` to `^11.1.0` ([#9264](https://github.com/MetaMask/core/pull/9264))
14+
- Bump `@metamask/accounts-controller` from `^39.0.3` to `^39.0.4` ([#9349](https://github.com/MetaMask/core/pull/9349))
1415

1516
## [7.5.3]
1617

packages/account-tree-controller/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -53,7 +53,7 @@
5353
"test:watch": "NODE_OPTIONS=--experimental-vm-modules jest --watch"
5454
},
5555
"dependencies": {
56-
"@metamask/accounts-controller": "^39.0.3",
56+
"@metamask/accounts-controller": "^39.0.4",
5757
"@metamask/base-controller": "^9.1.0",
5858
"@metamask/keyring-api": "^23.3.0",
5959
"@metamask/keyring-controller": "^27.1.0",

packages/accounts-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+
## [39.0.4]
11+
1012
### Changed
1113

1214
- Bump `@metamask/keyring-api` from `^23.1.0` to `^23.3.0` ([#9249](https://github.com/MetaMask/core/pull/9249))
1315
- Bump `@metamask/keyring-sdk` from `^2.1.1` to `^2.2.0` ([#9249](https://github.com/MetaMask/core/pull/9249))
1416
- Bump `@metamask/keyring-utils` from `^3.2.1` to `^3.3.1` ([#9249](https://github.com/MetaMask/core/pull/9249))
17+
- Bump `@metamask/network-controller` from `^33.0.0` to `^34.0.0` ([#9349](https://github.com/MetaMask/core/pull/9349))
1518

1619
## [39.0.3]
1720

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

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

847-
[Unreleased]: https://github.com/MetaMask/core/compare/@metamask/accounts-controller@39.0.3...HEAD
850+
[Unreleased]: https://github.com/MetaMask/core/compare/@metamask/accounts-controller@39.0.4...HEAD
851+
[39.0.4]: https://github.com/MetaMask/core/compare/@metamask/accounts-controller@39.0.3...@metamask/accounts-controller@39.0.4
848852
[39.0.3]: https://github.com/MetaMask/core/compare/@metamask/accounts-controller@39.0.2...@metamask/accounts-controller@39.0.3
849853
[39.0.2]: https://github.com/MetaMask/core/compare/@metamask/accounts-controller@39.0.1...@metamask/accounts-controller@39.0.2
850854
[39.0.1]: https://github.com/MetaMask/core/compare/@metamask/accounts-controller@39.0.0...@metamask/accounts-controller@39.0.1

packages/accounts-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/accounts-controller",
3-
"version": "39.0.3",
3+
"version": "39.0.4",
44
"description": "Manages internal accounts",
55
"keywords": [
66
"Ethereum",
@@ -62,7 +62,7 @@
6262
"@metamask/keyring-sdk": "^2.2.0",
6363
"@metamask/keyring-utils": "^3.3.1",
6464
"@metamask/messenger": "^1.2.0",
65-
"@metamask/network-controller": "^33.0.0",
65+
"@metamask/network-controller": "^34.0.0",
6666
"@metamask/superstruct": "^3.1.0",
6767
"@metamask/utils": "^11.11.0",
6868
"deepmerge": "^4.2.2",

packages/assets-controller/CHANGELOG.md

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

88
## [Unreleased]
99

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

12-
- Bump `@metamask/transaction-controller` from `^68.2.0` to `^68.2.1` ([#9337](https://github.com/MetaMask/core/pull/9337))
14+
- Bump `@metamask/transaction-controller` from `^68.2.0` to `^68.2.2` ([#9337](https://github.com/MetaMask/core/pull/9337), [#9349](https://github.com/MetaMask/core/pull/9349))
15+
- Bump `@metamask/accounts-controller` from `^39.0.3` to `^39.0.4` ([#9349](https://github.com/MetaMask/core/pull/9349))
16+
- Bump `@metamask/assets-controllers` from `^109.2.2` to `^109.3.0` ([#9349](https://github.com/MetaMask/core/pull/9349))
17+
- Bump `@metamask/core-backend` from `^6.4.0` to `^6.5.0` ([#9349](https://github.com/MetaMask/core/pull/9349))
18+
- Bump `@metamask/network-controller` from `^33.0.0` to `^34.0.0` ([#9349](https://github.com/MetaMask/core/pull/9349))
19+
- Bump `@metamask/network-enablement-controller` from `^5.4.0` to `^5.4.1` ([#9349](https://github.com/MetaMask/core/pull/9349))
20+
- Bump `@metamask/polling-controller` from `^16.0.7` to `^16.0.8` ([#9349](https://github.com/MetaMask/core/pull/9349))
1321

1422
## [10.0.0]
1523

@@ -675,7 +683,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
675683
- Refactor `RpcDataSource` to delegate polling to `BalanceFetcher` and `TokenDetector` services ([#7709](https://github.com/MetaMask/core/pull/7709))
676684
- Refactor `BalanceFetcher` and `TokenDetector` to extend `StaticIntervalPollingControllerOnly` for independent polling management ([#7709](https://github.com/MetaMask/core/pull/7709))
677685

678-
[Unreleased]: https://github.com/MetaMask/core/compare/@metamask/assets-controller@10.0.0...HEAD
686+
[Unreleased]: https://github.com/MetaMask/core/compare/@metamask/assets-controller@10.0.1...HEAD
687+
[10.0.1]: https://github.com/MetaMask/core/compare/@metamask/assets-controller@10.0.0...@metamask/assets-controller@10.0.1
679688
[10.0.0]: https://github.com/MetaMask/core/compare/@metamask/assets-controller@9.1.0...@metamask/assets-controller@10.0.0
680689
[9.1.0]: https://github.com/MetaMask/core/compare/@metamask/assets-controller@9.0.2...@metamask/assets-controller@9.1.0
681690
[9.0.2]: https://github.com/MetaMask/core/compare/@metamask/assets-controller@9.0.1...@metamask/assets-controller@9.0.2

packages/assets-controller/package.json

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@metamask/assets-controller",
3-
"version": "10.0.0",
3+
"version": "10.0.1",
44
"description": "Tracks assets balances/prices and handles token detection across all digital assets",
55
"keywords": [
66
"Ethereum",
@@ -57,26 +57,26 @@
5757
"@ethersproject/abi": "^5.7.0",
5858
"@ethersproject/providers": "^5.7.0",
5959
"@metamask/account-tree-controller": "^7.5.3",
60-
"@metamask/accounts-controller": "^39.0.3",
61-
"@metamask/assets-controllers": "^109.2.2",
60+
"@metamask/accounts-controller": "^39.0.4",
61+
"@metamask/assets-controllers": "^109.3.0",
6262
"@metamask/base-controller": "^9.1.0",
6363
"@metamask/client-controller": "^1.0.1",
6464
"@metamask/controller-utils": "^12.3.0",
65-
"@metamask/core-backend": "^6.4.0",
65+
"@metamask/core-backend": "^6.5.0",
6666
"@metamask/keyring-api": "^23.3.0",
6767
"@metamask/keyring-controller": "^27.1.0",
6868
"@metamask/keyring-internal-api": "^11.0.1",
6969
"@metamask/keyring-snap-client": "^9.0.2",
7070
"@metamask/messenger": "^1.2.0",
71-
"@metamask/network-controller": "^33.0.0",
72-
"@metamask/network-enablement-controller": "^5.4.0",
71+
"@metamask/network-controller": "^34.0.0",
72+
"@metamask/network-enablement-controller": "^5.4.1",
7373
"@metamask/permission-controller": "^13.1.1",
7474
"@metamask/phishing-controller": "^17.2.0",
75-
"@metamask/polling-controller": "^16.0.7",
75+
"@metamask/polling-controller": "^16.0.8",
7676
"@metamask/preferences-controller": "^23.1.0",
7777
"@metamask/snaps-controllers": "^19.0.0",
7878
"@metamask/snaps-utils": "^12.1.2",
79-
"@metamask/transaction-controller": "^68.2.1",
79+
"@metamask/transaction-controller": "^68.2.2",
8080
"@metamask/utils": "^11.11.0",
8181
"async-mutex": "^0.5.0",
8282
"bignumber.js": "^9.1.2",

packages/assets-controllers/CHANGELOG.md

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

88
## [Unreleased]
99

10+
## [109.3.0]
11+
1012
### Added
1113

1214
- Snap account-asset enrichment via `getAccountAssetInfo`; balance rows and `Asset.extra` carry chain-specific fields; export `isStellarClassicTrustlineInactiveForDisplay` for Stellar trustline UX ([#8828](https://github.com/MetaMask/core/pull/8828))
1315

1416
### Changed
1517

1618
- Bump `@metamask/keyring-api` from `^23.1.0` to `^23.3.0` ([#9249](https://github.com/MetaMask/core/pull/9249))
17-
- Bump `@metamask/transaction-controller` from `^68.1.1` to `^68.2.1` ([#9253](https://github.com/MetaMask/core/pull/9253), [#9337](https://github.com/MetaMask/core/pull/9337))
19+
- Bump `@metamask/transaction-controller` from `^68.1.1` to `^68.2.2` ([#9253](https://github.com/MetaMask/core/pull/9253), [#9337](https://github.com/MetaMask/core/pull/9337), [#9349](https://github.com/MetaMask/core/pull/9349))
1820
- Bump `@metamask/multichain-account-service` from `^11.0.0` to `^11.1.0` ([#9264](https://github.com/MetaMask/core/pull/9264))
19-
- Bump `@metamask/core-backend` from `^6.3.3` to `^6.4.0` ([#9312](https://github.com/MetaMask/core/pull/9312))
21+
- Bump `@metamask/core-backend` from `^6.3.3` to `^6.5.0` ([#9312](https://github.com/MetaMask/core/pull/9312), [#9349](https://github.com/MetaMask/core/pull/9349))
22+
- Bump `@metamask/accounts-controller` from `^39.0.3` to `^39.0.4` ([#9349](https://github.com/MetaMask/core/pull/9349))
23+
- Bump `@metamask/network-controller` from `^33.0.0` to `^34.0.0` ([#9349](https://github.com/MetaMask/core/pull/9349))
24+
- Bump `@metamask/network-enablement-controller` from `^5.4.0` to `^5.4.1` ([#9349](https://github.com/MetaMask/core/pull/9349))
25+
- Bump `@metamask/polling-controller` from `^16.0.7` to `^16.0.8` ([#9349](https://github.com/MetaMask/core/pull/9349))
2026

2127
## [109.2.2]
2228

@@ -3261,7 +3267,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
32613267
32623268
- Use Ethers for AssetsContractController ([#845](https://github.com/MetaMask/core/pull/845))
32633269
3264-
[Unreleased]: https://github.com/MetaMask/core/compare/@metamask/assets-controllers@109.2.2...HEAD
3270+
[Unreleased]: https://github.com/MetaMask/core/compare/@metamask/assets-controllers@109.3.0...HEAD
3271+
[109.3.0]: https://github.com/MetaMask/core/compare/@metamask/assets-controllers@109.2.2...@metamask/assets-controllers@109.3.0
32653272
[109.2.2]: https://github.com/MetaMask/core/compare/@metamask/assets-controllers@109.2.1...@metamask/assets-controllers@109.2.2
32663273
[109.2.1]: https://github.com/MetaMask/core/compare/@metamask/assets-controllers@109.2.0...@metamask/assets-controllers@109.2.1
32673274
[109.2.0]: https://github.com/MetaMask/core/compare/@metamask/assets-controllers@109.1.0...@metamask/assets-controllers@109.2.0

packages/assets-controllers/package.json

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@metamask/assets-controllers",
3-
"version": "109.2.2",
3+
"version": "109.3.0",
44
"description": "Controllers which manage interactions involving ERC-20, ERC-721, and ERC-1155 tokens (including NFTs)",
55
"keywords": [
66
"Ethereum",
@@ -61,31 +61,31 @@
6161
"@ethersproject/providers": "^5.7.0",
6262
"@metamask/abi-utils": "^2.0.3",
6363
"@metamask/account-tree-controller": "^7.5.3",
64-
"@metamask/accounts-controller": "^39.0.3",
64+
"@metamask/accounts-controller": "^39.0.4",
6565
"@metamask/approval-controller": "^9.0.2",
6666
"@metamask/base-controller": "^9.1.0",
6767
"@metamask/contract-metadata": "^2.4.0",
6868
"@metamask/controller-utils": "^12.3.0",
69-
"@metamask/core-backend": "^6.4.0",
69+
"@metamask/core-backend": "^6.5.0",
7070
"@metamask/eth-query": "^4.0.0",
7171
"@metamask/keyring-api": "^23.3.0",
7272
"@metamask/keyring-controller": "^27.1.0",
7373
"@metamask/messenger": "^1.2.0",
7474
"@metamask/metamask-eth-abis": "^3.1.1",
7575
"@metamask/multichain-account-service": "^11.1.0",
76-
"@metamask/network-controller": "^33.0.0",
77-
"@metamask/network-enablement-controller": "^5.4.0",
76+
"@metamask/network-controller": "^34.0.0",
77+
"@metamask/network-enablement-controller": "^5.4.1",
7878
"@metamask/permission-controller": "^13.1.1",
7979
"@metamask/phishing-controller": "^17.2.0",
80-
"@metamask/polling-controller": "^16.0.7",
80+
"@metamask/polling-controller": "^16.0.8",
8181
"@metamask/preferences-controller": "^23.1.0",
8282
"@metamask/profile-sync-controller": "^28.2.0",
8383
"@metamask/rpc-errors": "^7.0.2",
8484
"@metamask/snaps-controllers": "^19.0.0",
8585
"@metamask/snaps-sdk": "^11.0.0",
8686
"@metamask/snaps-utils": "^12.1.2",
8787
"@metamask/storage-service": "^1.0.2",
88-
"@metamask/transaction-controller": "^68.2.1",
88+
"@metamask/transaction-controller": "^68.2.2",
8989
"@metamask/utils": "^11.11.0",
9090
"@tanstack/query-core": "^5.62.16",
9191
"@types/bn.js": "^5.1.5",

packages/bridge-controller/CHANGELOG.md

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

88
## [Unreleased]
99

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

12-
- Bump `@metamask/transaction-controller` from `^68.2.0` to `^68.2.1` ([#9337](https://github.com/MetaMask/core/pull/9337))
14+
- Bump `@metamask/transaction-controller` from `^68.2.0` to `^68.2.2` ([#9337](https://github.com/MetaMask/core/pull/9337), [#9349](https://github.com/MetaMask/core/pull/9349))
15+
- Bump `@metamask/accounts-controller` from `^39.0.3` to `^39.0.4` ([#9349](https://github.com/MetaMask/core/pull/9349))
16+
- Bump `@metamask/assets-controller` from `^10.0.0` to `^10.0.1` ([#9349](https://github.com/MetaMask/core/pull/9349))
17+
- Bump `@metamask/assets-controllers` from `^109.2.2` to `^109.3.0` ([#9349](https://github.com/MetaMask/core/pull/9349))
18+
- Bump `@metamask/gas-fee-controller` from `^26.2.3` to `^26.2.4` ([#9349](https://github.com/MetaMask/core/pull/9349))
19+
- Bump `@metamask/multichain-network-controller` from `^3.2.0` to `^3.2.1` ([#9349](https://github.com/MetaMask/core/pull/9349))
20+
- Bump `@metamask/network-controller` from `^33.0.0` to `^34.0.0` ([#9349](https://github.com/MetaMask/core/pull/9349))
21+
- Bump `@metamask/polling-controller` from `^16.0.7` to `^16.0.8` ([#9349](https://github.com/MetaMask/core/pull/9349))
1322

1423
## [77.3.0]
1524

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

17071716
- Initial release ([#5317](https://github.com/MetaMask/core/pull/5317))
17081717

1709-
[Unreleased]: https://github.com/MetaMask/core/compare/@metamask/bridge-controller@77.3.0...HEAD
1718+
[Unreleased]: https://github.com/MetaMask/core/compare/@metamask/bridge-controller@77.3.1...HEAD
1719+
[77.3.1]: https://github.com/MetaMask/core/compare/@metamask/bridge-controller@77.3.0...@metamask/bridge-controller@77.3.1
17101720
[77.3.0]: https://github.com/MetaMask/core/compare/@metamask/bridge-controller@77.2.0...@metamask/bridge-controller@77.3.0
17111721
[77.2.0]: https://github.com/MetaMask/core/compare/@metamask/bridge-controller@77.1.0...@metamask/bridge-controller@77.2.0
17121722
[77.1.0]: https://github.com/MetaMask/core/compare/@metamask/bridge-controller@77.0.0...@metamask/bridge-controller@77.1.0

0 commit comments

Comments
 (0)