Skip to content

Commit a0ad33a

Browse files
authored
Release/766.0.0 (#7731)
## Explanation PR to create a new release for assets-controllers ## 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] > Publishes a new monorepo release and aligns dependents with breaking changes in `@metamask/assets-controllers`. > > - **BREAKING:** `@metamask/[email protected]` persists `TokenListController.tokensChainsCache` via `StorageService` and now requires `await initialize()`; per‑chain caches, parallel load, debounced auto‑persist > - `@metamask/[email protected]`: bump to use assets-controllers v98 and correct prior release notes; documents prior breaking state field removals > - `@metamask/[email protected]`: bump to bridge-controller v65 > - `@metamask/[email protected]`: bump deps to assets-controllers v98 and bridge controllers v65 > - Monorepo version to `766.0.0`; lockfile updated > > <sup>Written by [Cursor Bugbot](https://cursor.com/dashboard?tab=bugbot) for commit fad8ba5. This will update automatically on new commits. Configure [here](https://cursor.com/dashboard?tab=bugbot).</sup> <!-- /CURSOR_SUMMARY -->
1 parent e456ae6 commit a0ad33a

File tree

10 files changed

+47
-23
lines changed

10 files changed

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

packages/assets-controllers/CHANGELOG.md

Lines changed: 4 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+
## [98.0.0]
11+
1012
### Changed
1113

1214
- **BREAKING:** `TokenListController` now persists `tokensChainsCache` via `StorageService` and requires clients to call `initialize()` after construction ([#7413](https://github.com/MetaMask/core/pull/7413))
@@ -2581,7 +2583,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
25812583
25822584
- Use Ethers for AssetsContractController ([#845](https://github.com/MetaMask/core/pull/845))
25832585
2584-
[Unreleased]: https://github.com/MetaMask/core/compare/@metamask/[email protected]
2586+
[Unreleased]: https://github.com/MetaMask/core/compare/@metamask/[email protected]
2587+
[98.0.0]: https://github.com/MetaMask/core/compare/@metamask/[email protected]...@metamask/[email protected]
25852588
[97.0.0]: https://github.com/MetaMask/core/compare/@metamask/[email protected]...@metamask/[email protected]
25862589
[96.0.0]: https://github.com/MetaMask/core/compare/@metamask/[email protected]...@metamask/[email protected]
25872590
[95.3.0]: https://github.com/MetaMask/core/compare/@metamask/[email protected]...@metamask/[email protected]

packages/assets-controllers/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@metamask/assets-controllers",
3-
"version": "97.0.0",
3+
"version": "98.0.0",
44
"description": "Controllers which manage interactions involving ERC-20, ERC-721, and ERC-1155 tokens (including NFTs)",
55
"keywords": [
66
"MetaMask",

packages/bridge-controller/CHANGELOG.md

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

88
## [Unreleased]
99

10-
## [64.8.2]
10+
## [65.0.0]
11+
12+
### Changed
13+
14+
- Bump `@metamask/assets-controllers` from `^97.0.0` to `^98.0.0` ([#7731](https://github.com/MetaMask/core/pull/7731))
15+
- Corrects the previous 64.8.2 release to document breaking changes that were missed:
16+
- **BREAKING:** Remove `getMinimumBalanceForRentExemptionInLamports`, `getMinimumBalanceForRentExemptionRequest`, `selectMinimumBalanceForRentExemptionInSOL`, and `minimumBalanceForRentExemptionInLamports` from state ([#7715](https://github.com/MetaMask/core/pull/7715))
17+
18+
## [64.8.2] [DEPRECATED]
1119

1220
### Changed
1321

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

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

1053-
[Unreleased]: https://github.com/MetaMask/core/compare/@metamask/[email protected]
1061+
[Unreleased]: https://github.com/MetaMask/core/compare/@metamask/[email protected]
1062+
[65.0.0]: https://github.com/MetaMask/core/compare/@metamask/[email protected]...@metamask/[email protected]
10541063
[64.8.2]: https://github.com/MetaMask/core/compare/@metamask/[email protected]...@metamask/[email protected]
10551064
[64.8.1]: https://github.com/MetaMask/core/compare/@metamask/[email protected]...@metamask/[email protected]
10561065
[64.8.0]: https://github.com/MetaMask/core/compare/@metamask/[email protected]...@metamask/[email protected]

packages/bridge-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/bridge-controller",
3-
"version": "64.8.2",
3+
"version": "65.0.0",
44
"description": "Manages bridge-related quote fetching functionality for MetaMask",
55
"keywords": [
66
"MetaMask",
@@ -54,7 +54,7 @@
5454
"@ethersproject/contracts": "^5.7.0",
5555
"@ethersproject/providers": "^5.7.0",
5656
"@metamask/accounts-controller": "^35.0.2",
57-
"@metamask/assets-controllers": "^97.0.0",
57+
"@metamask/assets-controllers": "^98.0.0",
5858
"@metamask/base-controller": "^9.0.0",
5959
"@metamask/controller-utils": "^11.18.0",
6060
"@metamask/gas-fee-controller": "^26.0.2",

packages/bridge-status-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+
## [65.0.0]
11+
12+
### Changed
13+
14+
- Bump `@metamask/bridge-controller` from `^64.8.2` to `^65.0.0` ([#7731](https://github.com/MetaMask/core/pull/7731))
15+
1016
## [64.4.5]
1117

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

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

900-
[Unreleased]: https://github.com/MetaMask/core/compare/@metamask/[email protected]
906+
[Unreleased]: https://github.com/MetaMask/core/compare/@metamask/[email protected]
907+
[65.0.0]: https://github.com/MetaMask/core/compare/@metamask/[email protected]...@metamask/[email protected]
901908
[64.4.5]: https://github.com/MetaMask/core/compare/@metamask/[email protected]...@metamask/[email protected]
902909
[64.4.4]: https://github.com/MetaMask/core/compare/@metamask/[email protected]...@metamask/[email protected]
903910
[64.4.3]: https://github.com/MetaMask/core/compare/@metamask/[email protected]...@metamask/[email protected]

packages/bridge-status-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/bridge-status-controller",
3-
"version": "64.4.5",
3+
"version": "65.0.0",
44
"description": "Manages bridge-related status fetching functionality for MetaMask",
55
"keywords": [
66
"MetaMask",
@@ -50,7 +50,7 @@
5050
"dependencies": {
5151
"@metamask/accounts-controller": "^35.0.2",
5252
"@metamask/base-controller": "^9.0.0",
53-
"@metamask/bridge-controller": "^64.8.2",
53+
"@metamask/bridge-controller": "^65.0.0",
5454
"@metamask/controller-utils": "^11.18.0",
5555
"@metamask/gas-fee-controller": "^26.0.2",
5656
"@metamask/network-controller": "^29.0.0",

packages/transaction-pay-controller/CHANGELOG.md

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

88
## [Unreleased]
99

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

14+
- Bump `@metamask/assets-controllers` from `^97.0.0` to `^98.0.0` ([#7731](https://github.com/MetaMask/core/pull/7731))
15+
- Bump `@metamask/bridge-controller` from `^64.8.2` to `^65.0.0` ([#7731](https://github.com/MetaMask/core/pull/7731))
1216
- Bump `@metamask/bridge-status-controller` from `^64.4.4` to `^64.4.5` ([#7724](https://github.com/MetaMask/core/pull/7724))
1317

1418
## [11.1.1]
@@ -295,7 +299,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
295299

296300
- Initial release ([#6820](https://github.com/MetaMask/core/pull/6820))
297301

298-
[Unreleased]: https://github.com/MetaMask/core/compare/@metamask/[email protected]
302+
[Unreleased]: https://github.com/MetaMask/core/compare/@metamask/[email protected]
303+
[12.0.0]: https://github.com/MetaMask/core/compare/@metamask/[email protected]...@metamask/[email protected]
299304
[11.1.1]: https://github.com/MetaMask/core/compare/@metamask/[email protected]...@metamask/[email protected]
300305
[11.1.0]: https://github.com/MetaMask/core/compare/@metamask/[email protected]...@metamask/[email protected]
301306
[11.0.2]: https://github.com/MetaMask/core/compare/@metamask/[email protected]...@metamask/[email protected]

packages/transaction-pay-controller/package.json

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@metamask/transaction-pay-controller",
3-
"version": "11.1.1",
3+
"version": "12.0.0",
44
"description": "Manages alternate payment strategies to provide required funds for transactions in MetaMask",
55
"keywords": [
66
"MetaMask",
@@ -51,10 +51,10 @@
5151
"dependencies": {
5252
"@ethersproject/abi": "^5.7.0",
5353
"@ethersproject/contracts": "^5.7.0",
54-
"@metamask/assets-controllers": "^97.0.0",
54+
"@metamask/assets-controllers": "^98.0.0",
5555
"@metamask/base-controller": "^9.0.0",
56-
"@metamask/bridge-controller": "^64.8.2",
57-
"@metamask/bridge-status-controller": "^64.4.5",
56+
"@metamask/bridge-controller": "^65.0.0",
57+
"@metamask/bridge-status-controller": "^65.0.0",
5858
"@metamask/controller-utils": "^11.18.0",
5959
"@metamask/gas-fee-controller": "^26.0.2",
6060
"@metamask/messenger": "^0.3.0",

yarn.lock

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -2673,7 +2673,7 @@ __metadata:
26732673
languageName: unknown
26742674
linkType: soft
26752675

2676-
"@metamask/assets-controllers@npm:^97.0.0, @metamask/assets-controllers@workspace:packages/assets-controllers":
2676+
"@metamask/assets-controllers@npm:^98.0.0, @metamask/assets-controllers@workspace:packages/assets-controllers":
26772677
version: 0.0.0-use.local
26782678
resolution: "@metamask/assets-controllers@workspace:packages/assets-controllers"
26792679
dependencies:
@@ -2836,7 +2836,7 @@ __metadata:
28362836
languageName: unknown
28372837
linkType: soft
28382838

2839-
"@metamask/bridge-controller@npm:^64.8.2, @metamask/bridge-controller@workspace:packages/bridge-controller":
2839+
"@metamask/bridge-controller@npm:^65.0.0, @metamask/bridge-controller@workspace:packages/bridge-controller":
28402840
version: 0.0.0-use.local
28412841
resolution: "@metamask/bridge-controller@workspace:packages/bridge-controller"
28422842
dependencies:
@@ -2846,7 +2846,7 @@ __metadata:
28462846
"@ethersproject/contracts": "npm:^5.7.0"
28472847
"@ethersproject/providers": "npm:^5.7.0"
28482848
"@metamask/accounts-controller": "npm:^35.0.2"
2849-
"@metamask/assets-controllers": "npm:^97.0.0"
2849+
"@metamask/assets-controllers": "npm:^98.0.0"
28502850
"@metamask/auto-changelog": "npm:^3.4.4"
28512851
"@metamask/base-controller": "npm:^9.0.0"
28522852
"@metamask/controller-utils": "npm:^11.18.0"
@@ -2880,14 +2880,14 @@ __metadata:
28802880
languageName: unknown
28812881
linkType: soft
28822882

2883-
"@metamask/bridge-status-controller@npm:^64.4.5, @metamask/bridge-status-controller@workspace:packages/bridge-status-controller":
2883+
"@metamask/bridge-status-controller@npm:^65.0.0, @metamask/bridge-status-controller@workspace:packages/bridge-status-controller":
28842884
version: 0.0.0-use.local
28852885
resolution: "@metamask/bridge-status-controller@workspace:packages/bridge-status-controller"
28862886
dependencies:
28872887
"@metamask/accounts-controller": "npm:^35.0.2"
28882888
"@metamask/auto-changelog": "npm:^3.4.4"
28892889
"@metamask/base-controller": "npm:^9.0.0"
2890-
"@metamask/bridge-controller": "npm:^64.8.2"
2890+
"@metamask/bridge-controller": "npm:^65.0.0"
28912891
"@metamask/controller-utils": "npm:^11.18.0"
28922892
"@metamask/gas-fee-controller": "npm:^26.0.2"
28932893
"@metamask/network-controller": "npm:^29.0.0"
@@ -5182,11 +5182,11 @@ __metadata:
51825182
dependencies:
51835183
"@ethersproject/abi": "npm:^5.7.0"
51845184
"@ethersproject/contracts": "npm:^5.7.0"
5185-
"@metamask/assets-controllers": "npm:^97.0.0"
5185+
"@metamask/assets-controllers": "npm:^98.0.0"
51865186
"@metamask/auto-changelog": "npm:^3.4.4"
51875187
"@metamask/base-controller": "npm:^9.0.0"
5188-
"@metamask/bridge-controller": "npm:^64.8.2"
5189-
"@metamask/bridge-status-controller": "npm:^64.4.5"
5188+
"@metamask/bridge-controller": "npm:^65.0.0"
5189+
"@metamask/bridge-status-controller": "npm:^65.0.0"
51905190
"@metamask/controller-utils": "npm:^11.18.0"
51915191
"@metamask/gas-fee-controller": "npm:^26.0.2"
51925192
"@metamask/messenger": "npm:^0.3.0"

0 commit comments

Comments
 (0)