Skip to content

Commit ba675ce

Browse files
authored
Release/770.0.0 (#7751)
## Explanation Updating assets controller to have NFT auto-detection enabled in all supported chains for the next RC <!-- 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 https://consensyssoftware.atlassian.net/browse/ASSETS-2469 <!-- 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] > Prepares RC with expanded NFT auto-detection and aligned dependency bumps. > > - **assets-controllers 99.0.0**: Expand NFT auto-detection to BSC, Polygon, Avalanche, and Base; bump `@metamask/transaction-controller` to `^62.10.0`. BREAKING: remove `TokenListController` methods/properties (`clearingTokenListData()`, `preventPollingOnNetworkRestart`). > - **bridge-controller 65.0.1**: Bump dependency `@metamask/assets-controllers` to `^99.0.0`. > - **transaction-pay-controller 12.0.1**: Bump `@metamask/assets-controllers` to `^99.0.0` and `@metamask/bridge-controller` to `^65.0.1`. > - **bridge-status-controller**: Bump `@metamask/bridge-controller` to `^65.0.1`. > - Monorepo version to `770.0.0`; update `yarn.lock`. > > <sup>Written by [Cursor Bugbot](https://cursor.com/dashboard?tab=bugbot) for commit 98932a7. This will update automatically on new commits. Configure [here](https://cursor.com/dashboard?tab=bugbot).</sup> <!-- /CURSOR_SUMMARY -->
1 parent 95991be commit ba675ce

File tree

10 files changed

+30
-17
lines changed

10 files changed

+30
-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": "769.0.0",
3+
"version": "770.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+
## [99.0.0]
11+
1012
### Changed
1113

1214
- Bump `@metamask/transaction-controller` from `^62.9.2` to `^62.10.0` ([#7737](https://github.com/MetaMask/core/pull/7737))
@@ -2599,7 +2601,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
25992601
26002602
- Use Ethers for AssetsContractController ([#845](https://github.com/MetaMask/core/pull/845))
26012603
2602-
[Unreleased]: https://github.com/MetaMask/core/compare/@metamask/[email protected]
2604+
[Unreleased]: https://github.com/MetaMask/core/compare/@metamask/[email protected]
2605+
[99.0.0]: https://github.com/MetaMask/core/compare/@metamask/[email protected]...@metamask/[email protected]
26032606
[98.0.0]: https://github.com/MetaMask/core/compare/@metamask/[email protected]...@metamask/[email protected]
26042607
[97.0.0]: https://github.com/MetaMask/core/compare/@metamask/[email protected]...@metamask/[email protected]
26052608
[96.0.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": "98.0.0",
3+
"version": "99.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: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,8 +7,11 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
77

88
## [Unreleased]
99

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

14+
- Bump `@metamask/assets-controllers` from `^98.0.0` to `^99.0.0` ([#7751](https://github.com/MetaMask/core/pull/7751))
1215
- Bump `@metamask/transaction-controller` from `^62.9.2` to `^62.10.0` ([#7737](https://github.com/MetaMask/core/pull/7737))
1316

1417
## [65.0.0]
@@ -1062,7 +1065,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
10621065

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

1065-
[Unreleased]: https://github.com/MetaMask/core/compare/@metamask/[email protected]
1068+
[Unreleased]: https://github.com/MetaMask/core/compare/@metamask/[email protected]
1069+
[65.0.1]: https://github.com/MetaMask/core/compare/@metamask/[email protected]...@metamask/[email protected]
10661070
[65.0.0]: https://github.com/MetaMask/core/compare/@metamask/[email protected]...@metamask/[email protected]
10671071
[64.8.2]: https://github.com/MetaMask/core/compare/@metamask/[email protected]...@metamask/[email protected]
10681072
[64.8.1]: 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": "65.0.0",
3+
"version": "65.0.1",
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": "^98.0.0",
57+
"@metamask/assets-controllers": "^99.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: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
99

1010
### Changed
1111

12+
- Bump `@metamask/bridge-controller` from `^65.0.0` to `^65.0.1` ([#7751](https://github.com/MetaMask/core/pull/7751))
1213
- Bump `@metamask/transaction-controller` from `^62.9.2` to `^62.10.0` ([#7737](https://github.com/MetaMask/core/pull/7737))
1314

1415
## [65.0.0]

packages/bridge-status-controller/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -50,7 +50,7 @@
5050
"dependencies": {
5151
"@metamask/accounts-controller": "^35.0.2",
5252
"@metamask/base-controller": "^9.0.0",
53-
"@metamask/bridge-controller": "^65.0.0",
53+
"@metamask/bridge-controller": "^65.0.1",
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.1]
11+
1012
### Changed
1113

14+
- Bump `@metamask/assets-controllers` from `^98.0.0` to `^99.0.0` ([#7751](https://github.com/MetaMask/core/pull/7751))
15+
- Bump `@metamask/bridge-controller` from `^65.0.0` to `^65.0.1` ([#7751](https://github.com/MetaMask/core/pull/7751))
1216
- Bump `@metamask/transaction-controller` from `^62.9.2` to `^62.10.0` ([#7737](https://github.com/MetaMask/core/pull/7737))
1317

1418
## [12.0.0]
@@ -303,7 +307,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
303307

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

306-
[Unreleased]: https://github.com/MetaMask/core/compare/@metamask/[email protected]
310+
[Unreleased]: https://github.com/MetaMask/core/compare/@metamask/[email protected]
311+
[12.0.1]: https://github.com/MetaMask/core/compare/@metamask/[email protected]...@metamask/[email protected]
307312
[12.0.0]: https://github.com/MetaMask/core/compare/@metamask/[email protected]...@metamask/[email protected]
308313
[11.1.1]: https://github.com/MetaMask/core/compare/@metamask/[email protected]...@metamask/[email protected]
309314
[11.1.0]: https://github.com/MetaMask/core/compare/@metamask/[email protected]...@metamask/[email protected]

packages/transaction-pay-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/transaction-pay-controller",
3-
"version": "12.0.0",
3+
"version": "12.0.1",
44
"description": "Manages alternate payment strategies to provide required funds for transactions in MetaMask",
55
"keywords": [
66
"MetaMask",
@@ -51,9 +51,9 @@
5151
"dependencies": {
5252
"@ethersproject/abi": "^5.7.0",
5353
"@ethersproject/contracts": "^5.7.0",
54-
"@metamask/assets-controllers": "^98.0.0",
54+
"@metamask/assets-controllers": "^99.0.0",
5555
"@metamask/base-controller": "^9.0.0",
56-
"@metamask/bridge-controller": "^65.0.0",
56+
"@metamask/bridge-controller": "^65.0.1",
5757
"@metamask/bridge-status-controller": "^65.0.0",
5858
"@metamask/controller-utils": "^11.18.0",
5959
"@metamask/gas-fee-controller": "^26.0.2",

yarn.lock

Lines changed: 6 additions & 6 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:^98.0.0, @metamask/assets-controllers@workspace:packages/assets-controllers":
2676+
"@metamask/assets-controllers@npm:^99.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:^65.0.0, @metamask/bridge-controller@workspace:packages/bridge-controller":
2839+
"@metamask/bridge-controller@npm:^65.0.1, @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:^98.0.0"
2849+
"@metamask/assets-controllers": "npm:^99.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"
@@ -2887,7 +2887,7 @@ __metadata:
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:^65.0.0"
2890+
"@metamask/bridge-controller": "npm:^65.0.1"
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,10 +5182,10 @@ __metadata:
51825182
dependencies:
51835183
"@ethersproject/abi": "npm:^5.7.0"
51845184
"@ethersproject/contracts": "npm:^5.7.0"
5185-
"@metamask/assets-controllers": "npm:^98.0.0"
5185+
"@metamask/assets-controllers": "npm:^99.0.0"
51865186
"@metamask/auto-changelog": "npm:^3.4.4"
51875187
"@metamask/base-controller": "npm:^9.0.0"
5188-
"@metamask/bridge-controller": "npm:^65.0.0"
5188+
"@metamask/bridge-controller": "npm:^65.0.1"
51895189
"@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"

0 commit comments

Comments
 (0)