Skip to content

Commit c90a04b

Browse files
authored
Release/632.0.0 (#6908)
## 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? --> Assets controller major release. Preview PRs: MetaMask/metamask-mobile#21465 MetaMask/metamask-extension#36808 ## 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] > Releases core 632 with @metamask/assets-controllers v82 (breaking event listeners, multicall additions, Snap request batching) and aligns bridge packages with breaking peer bumps. > > - **Packages**: > - `@metamask/assets-controllers@82.0.0`: > - **BREAKING:** Add balance refresh listeners for `TransactionControllerUnapprovedTransactionAddedEvent` and `TransactionControllerTransactionConfirmedEvent`. > - Add multicall addresses for additional chains; batch `OnAssetConversion` and `OnAssetsMarketData` requests to non‑EVM Snaps. > - `@metamask/bridge-controller@54.0.0`: > - **BREAKING:** Bump peer `@metamask/assets-controllers` to `^82.0.0`. > - `@metamask/bridge-status-controller@54.0.0`: > - **BREAKING:** Bump peer `@metamask/bridge-controller` to `^54.0.0`. > - **Repo**: Bump monorepo version to `632.0.0` and update lockfile. > > <sup>Written by [Cursor Bugbot](https://cursor.com/dashboard?tab=bugbot) for commit 45f4843. This will update automatically on new commits. Configure [here](https://cursor.com/dashboard?tab=bugbot).</sup> <!-- /CURSOR_SUMMARY -->
1 parent a189a89 commit c90a04b

File tree

8 files changed

+34
-17
lines changed

8 files changed

+34
-17
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": "631.0.0",
3+
"version": "632.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+
## [82.0.0]
11+
1012
### Added
1113

1214
- **BREAKING:** Add new event listeners to refresh balances on `TransactionControllerUnapprovedTransactionAddedEvent` and `TransactionControllerTransactionConfirmedEvent` ([#6903](https://github.com/MetaMask/core/pull/6903))
@@ -2144,7 +2146,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
21442146
21452147
- Use Ethers for AssetsContractController ([#845](https://github.com/MetaMask/core/pull/845))
21462148
2147-
[Unreleased]: https://github.com/MetaMask/core/compare/@metamask/assets-controllers@81.0.1...HEAD
2149+
[Unreleased]: https://github.com/MetaMask/core/compare/@metamask/assets-controllers@82.0.0...HEAD
2150+
[82.0.0]: https://github.com/MetaMask/core/compare/@metamask/assets-controllers@81.0.1...@metamask/assets-controllers@82.0.0
21482151
[81.0.1]: https://github.com/MetaMask/core/compare/@metamask/assets-controllers@81.0.0...@metamask/assets-controllers@81.0.1
21492152
[81.0.0]: https://github.com/MetaMask/core/compare/@metamask/assets-controllers@80.0.0...@metamask/assets-controllers@81.0.0
21502153
[80.0.0]: https://github.com/MetaMask/core/compare/@metamask/assets-controllers@79.0.1...@metamask/assets-controllers@80.0.0

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": "81.0.1",
3+
"version": "82.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: 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+
## [54.0.0]
11+
12+
### Changed
13+
14+
- **BREAKING:** Bump peer dependency `@metamask/assets-controllers` from `^81.0.0` to `^82.0.0` ([#6908](https://github.com/MetaMask/core/pull/6908))
15+
1016
## [53.1.0]
1117

1218
### Added
@@ -750,7 +756,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
750756

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

753-
[Unreleased]: https://github.com/MetaMask/core/compare/@metamask/bridge-controller@53.1.0...HEAD
759+
[Unreleased]: https://github.com/MetaMask/core/compare/@metamask/bridge-controller@54.0.0...HEAD
760+
[54.0.0]: https://github.com/MetaMask/core/compare/@metamask/bridge-controller@53.1.0...@metamask/bridge-controller@54.0.0
754761
[53.1.0]: https://github.com/MetaMask/core/compare/@metamask/bridge-controller@53.0.0...@metamask/bridge-controller@53.1.0
755762
[53.0.0]: https://github.com/MetaMask/core/compare/@metamask/bridge-controller@52.0.0...@metamask/bridge-controller@53.0.0
756763
[52.0.0]: https://github.com/MetaMask/core/compare/@metamask/bridge-controller@51.0.0...@metamask/bridge-controller@52.0.0

packages/bridge-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/bridge-controller",
3-
"version": "53.1.0",
3+
"version": "54.0.0",
44
"description": "Manages bridge-related quote fetching functionality for MetaMask",
55
"keywords": [
66
"MetaMask",
@@ -66,7 +66,7 @@
6666
},
6767
"devDependencies": {
6868
"@metamask/accounts-controller": "^33.1.1",
69-
"@metamask/assets-controllers": "^81.0.1",
69+
"@metamask/assets-controllers": "^82.0.0",
7070
"@metamask/auto-changelog": "^3.4.4",
7171
"@metamask/eth-json-rpc-provider": "^5.0.1",
7272
"@metamask/network-controller": "^24.3.0",
@@ -87,7 +87,7 @@
8787
},
8888
"peerDependencies": {
8989
"@metamask/accounts-controller": "^33.0.0",
90-
"@metamask/assets-controllers": "^81.0.0",
90+
"@metamask/assets-controllers": "^82.0.0",
9191
"@metamask/network-controller": "^24.0.0",
9292
"@metamask/remote-feature-flag-controller": "^1.6.0",
9393
"@metamask/snaps-controllers": "^14.0.0",

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+
## [54.0.0]
11+
12+
### Changed
13+
14+
- **BREAKING:** Bump peer dependency `@metamask/bridge-controller` from `^53.0.0` to `^54.0.0` ([#6908](https://github.com/MetaMask/core/pull/6908))
15+
1016
## [53.0.0]
1117

1218
### Fixed
@@ -691,7 +697,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
691697

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

694-
[Unreleased]: https://github.com/MetaMask/core/compare/@metamask/bridge-status-controller@53.0.0...HEAD
700+
[Unreleased]: https://github.com/MetaMask/core/compare/@metamask/bridge-status-controller@54.0.0...HEAD
701+
[54.0.0]: https://github.com/MetaMask/core/compare/@metamask/bridge-status-controller@53.0.0...@metamask/bridge-status-controller@54.0.0
695702
[53.0.0]: https://github.com/MetaMask/core/compare/@metamask/bridge-status-controller@52.1.0...@metamask/bridge-status-controller@53.0.0
696703
[52.1.0]: https://github.com/MetaMask/core/compare/@metamask/bridge-status-controller@52.0.0...@metamask/bridge-status-controller@52.1.0
697704
[52.0.0]: https://github.com/MetaMask/core/compare/@metamask/bridge-status-controller@51.0.0...@metamask/bridge-status-controller@52.0.0

packages/bridge-status-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/bridge-status-controller",
3-
"version": "53.0.0",
3+
"version": "54.0.0",
44
"description": "Manages bridge-related status fetching functionality for MetaMask",
55
"keywords": [
66
"MetaMask",
@@ -58,7 +58,7 @@
5858
"devDependencies": {
5959
"@metamask/accounts-controller": "^33.1.1",
6060
"@metamask/auto-changelog": "^3.4.4",
61-
"@metamask/bridge-controller": "^53.1.0",
61+
"@metamask/bridge-controller": "^54.0.0",
6262
"@metamask/gas-fee-controller": "^24.1.0",
6363
"@metamask/network-controller": "^24.3.0",
6464
"@metamask/snaps-controllers": "^14.0.1",
@@ -76,7 +76,7 @@
7676
},
7777
"peerDependencies": {
7878
"@metamask/accounts-controller": "^33.0.0",
79-
"@metamask/bridge-controller": "^53.0.0",
79+
"@metamask/bridge-controller": "^54.0.0",
8080
"@metamask/gas-fee-controller": "^24.0.0",
8181
"@metamask/network-controller": "^24.0.0",
8282
"@metamask/snaps-controllers": "^14.0.0",

yarn.lock

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -2737,7 +2737,7 @@ __metadata:
27372737
languageName: unknown
27382738
linkType: soft
27392739

2740-
"@metamask/assets-controllers@npm:^81.0.1, @metamask/assets-controllers@workspace:packages/assets-controllers":
2740+
"@metamask/assets-controllers@npm:^82.0.0, @metamask/assets-controllers@workspace:packages/assets-controllers":
27412741
version: 0.0.0-use.local
27422742
resolution: "@metamask/assets-controllers@workspace:packages/assets-controllers"
27432743
dependencies:
@@ -2888,7 +2888,7 @@ __metadata:
28882888
languageName: unknown
28892889
linkType: soft
28902890

2891-
"@metamask/bridge-controller@npm:^53.1.0, @metamask/bridge-controller@workspace:packages/bridge-controller":
2891+
"@metamask/bridge-controller@npm:^54.0.0, @metamask/bridge-controller@workspace:packages/bridge-controller":
28922892
version: 0.0.0-use.local
28932893
resolution: "@metamask/bridge-controller@workspace:packages/bridge-controller"
28942894
dependencies:
@@ -2898,7 +2898,7 @@ __metadata:
28982898
"@ethersproject/contracts": "npm:^5.7.0"
28992899
"@ethersproject/providers": "npm:^5.7.0"
29002900
"@metamask/accounts-controller": "npm:^33.1.1"
2901-
"@metamask/assets-controllers": "npm:^81.0.1"
2901+
"@metamask/assets-controllers": "npm:^82.0.0"
29022902
"@metamask/auto-changelog": "npm:^3.4.4"
29032903
"@metamask/base-controller": "npm:^8.4.1"
29042904
"@metamask/controller-utils": "npm:^11.14.1"
@@ -2929,7 +2929,7 @@ __metadata:
29292929
uuid: "npm:^8.3.2"
29302930
peerDependencies:
29312931
"@metamask/accounts-controller": ^33.0.0
2932-
"@metamask/assets-controllers": ^81.0.0
2932+
"@metamask/assets-controllers": ^82.0.0
29332933
"@metamask/network-controller": ^24.0.0
29342934
"@metamask/remote-feature-flag-controller": ^1.6.0
29352935
"@metamask/snaps-controllers": ^14.0.0
@@ -2944,7 +2944,7 @@ __metadata:
29442944
"@metamask/accounts-controller": "npm:^33.1.1"
29452945
"@metamask/auto-changelog": "npm:^3.4.4"
29462946
"@metamask/base-controller": "npm:^8.4.1"
2947-
"@metamask/bridge-controller": "npm:^53.1.0"
2947+
"@metamask/bridge-controller": "npm:^54.0.0"
29482948
"@metamask/controller-utils": "npm:^11.14.1"
29492949
"@metamask/gas-fee-controller": "npm:^24.1.0"
29502950
"@metamask/network-controller": "npm:^24.3.0"
@@ -2967,7 +2967,7 @@ __metadata:
29672967
uuid: "npm:^8.3.2"
29682968
peerDependencies:
29692969
"@metamask/accounts-controller": ^33.0.0
2970-
"@metamask/bridge-controller": ^53.0.0
2970+
"@metamask/bridge-controller": ^54.0.0
29712971
"@metamask/gas-fee-controller": ^24.0.0
29722972
"@metamask/network-controller": ^24.0.0
29732973
"@metamask/snaps-controllers": ^14.0.0

0 commit comments

Comments
 (0)