Skip to content

Commit 381abeb

Browse files
authored
Release/968.0.0 (#8738)
## 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] > **Medium Risk** > Mostly version/changelog updates, but it pulls in `@metamask/assets-controller@7.0.0` (breaking) and propagates that bump through bridge and transaction-pay packages, which can break downstream builds if messenger permissions aren’t updated. > > **Overview** > Bumps the monorepo release version to `968.0.0` and publishes `@metamask/assets-controller` as `7.0.0` (documenting the breaking change and new RPC token detection behavior). > > Propagates dependency/version bumps to align consumers: `@metamask/bridge-controller` `72.0.1` now depends on `@metamask/assets-controller@^7.0.0`, `bridge-status-controller` updates to `@metamask/bridge-controller@^72.0.1`, and `transaction-pay-controller` `22.0.2` bumps both dependencies; `yarn.lock` is updated accordingly. > > <sup>Reviewed by [Cursor Bugbot](https://cursor.com/bugbot) for commit 9032692. Bugbot is set up for automated code reviews on this repo. Configure [here](https://www.cursor.com/dashboard/bugbot).</sup> <!-- /CURSOR_SUMMARY -->
1 parent 7f146c2 commit 381abeb

10 files changed

Lines changed: 39 additions & 17 deletions

File tree

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

packages/assets-controller/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+
## [7.0.0]
11+
1012
### Added
1113

1214
- RPC token detection now uses the same endpoint as `TokenListController` (`token.api.cx.metamask.io/tokens/{chainId}`) instead of the v3 `tokens.api.cx.metamask.io/v3/chains/.../assets` host, with no client-side `first` cap and a shared TanStack Query cache ([#8727](https://github.com/MetaMask/core/pull/8727))
@@ -446,7 +448,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
446448
- Refactor `RpcDataSource` to delegate polling to `BalanceFetcher` and `TokenDetector` services ([#7709](https://github.com/MetaMask/core/pull/7709))
447449
- Refactor `BalanceFetcher` and `TokenDetector` to extend `StaticIntervalPollingControllerOnly` for independent polling management ([#7709](https://github.com/MetaMask/core/pull/7709))
448450

449-
[Unreleased]: https://github.com/MetaMask/core/compare/@metamask/assets-controller@6.4.0...HEAD
451+
[Unreleased]: https://github.com/MetaMask/core/compare/@metamask/assets-controller@7.0.0...HEAD
452+
[7.0.0]: https://github.com/MetaMask/core/compare/@metamask/assets-controller@6.4.0...@metamask/assets-controller@7.0.0
450453
[6.4.0]: https://github.com/MetaMask/core/compare/@metamask/assets-controller@6.3.0...@metamask/assets-controller@6.4.0
451454
[6.3.0]: https://github.com/MetaMask/core/compare/@metamask/assets-controller@6.2.1...@metamask/assets-controller@6.3.0
452455
[6.2.1]: https://github.com/MetaMask/core/compare/@metamask/assets-controller@6.2.0...@metamask/assets-controller@6.2.1

packages/assets-controller/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-controller",
3-
"version": "6.4.0",
3+
"version": "7.0.0",
44
"description": "Tracks assets balances/prices and handles token detection across all digital assets",
55
"keywords": [
66
"Ethereum",

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+
## [72.0.1]
11+
12+
### Changed
13+
14+
- Bump `@metamask/assets-controller` from `^6.4.0` to `^7.0.0` ([#8738](https://github.com/MetaMask/core/pull/8738))
15+
1016
## [72.0.0]
1117

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

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

1436-
[Unreleased]: https://github.com/MetaMask/core/compare/@metamask/bridge-controller@72.0.0...HEAD
1442+
[Unreleased]: https://github.com/MetaMask/core/compare/@metamask/bridge-controller@72.0.1...HEAD
1443+
[72.0.1]: https://github.com/MetaMask/core/compare/@metamask/bridge-controller@72.0.0...@metamask/bridge-controller@72.0.1
14371444
[72.0.0]: https://github.com/MetaMask/core/compare/@metamask/bridge-controller@71.1.1...@metamask/bridge-controller@72.0.0
14381445
[71.1.1]: https://github.com/MetaMask/core/compare/@metamask/bridge-controller@71.1.0...@metamask/bridge-controller@71.1.1
14391446
[71.1.0]: https://github.com/MetaMask/core/compare/@metamask/bridge-controller@71.0.0...@metamask/bridge-controller@71.1.0

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": "72.0.0",
3+
"version": "72.0.1",
44
"description": "Manages bridge-related quote fetching functionality for MetaMask",
55
"keywords": [
66
"Ethereum",
@@ -58,7 +58,7 @@
5858
"@ethersproject/contracts": "^5.7.0",
5959
"@ethersproject/providers": "^5.7.0",
6060
"@metamask/accounts-controller": "^38.0.0",
61-
"@metamask/assets-controller": "^6.4.0",
61+
"@metamask/assets-controller": "^7.0.0",
6262
"@metamask/assets-controllers": "^106.0.0",
6363
"@metamask/base-controller": "^9.1.0",
6464
"@metamask/controller-utils": "^11.20.0",

packages/bridge-status-controller/CHANGELOG.md

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

88
## [Unreleased]
99

10+
### Changed
11+
12+
- Bump `@metamask/bridge-controller` from `^72.0.0` to `^72.0.1` ([#8738](https://github.com/MetaMask/core/pull/8738))
13+
1014
## [71.1.1]
1115

1216
### Changed

packages/bridge-status-controller/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -54,7 +54,7 @@
5454
"dependencies": {
5555
"@metamask/accounts-controller": "^38.0.0",
5656
"@metamask/base-controller": "^9.1.0",
57-
"@metamask/bridge-controller": "^72.0.0",
57+
"@metamask/bridge-controller": "^72.0.1",
5858
"@metamask/controller-utils": "^11.20.0",
5959
"@metamask/gas-fee-controller": "^26.2.0",
6060
"@metamask/keyring-controller": "^25.5.0",

packages/transaction-pay-controller/CHANGELOG.md

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

88
## [Unreleased]
99

10+
## [22.0.2]
11+
12+
### Changed
13+
14+
- Bump `@metamask/assets-controller` from `^6.4.0` to `^7.0.0` ([#8738](https://github.com/MetaMask/core/pull/8738))
15+
- Bump `@metamask/bridge-controller` from `^72.0.0` to `^72.0.1` ([#8738](https://github.com/MetaMask/core/pull/8738))
16+
1017
## [22.0.1]
1118

1219
### Changed
@@ -799,7 +806,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
799806

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

802-
[Unreleased]: https://github.com/MetaMask/core/compare/@metamask/transaction-pay-controller@22.0.1...HEAD
809+
[Unreleased]: https://github.com/MetaMask/core/compare/@metamask/transaction-pay-controller@22.0.2...HEAD
810+
[22.0.2]: https://github.com/MetaMask/core/compare/@metamask/transaction-pay-controller@22.0.1...@metamask/transaction-pay-controller@22.0.2
803811
[22.0.1]: https://github.com/MetaMask/core/compare/@metamask/transaction-pay-controller@22.0.0...@metamask/transaction-pay-controller@22.0.1
804812
[22.0.0]: https://github.com/MetaMask/core/compare/@metamask/transaction-pay-controller@21.1.0...@metamask/transaction-pay-controller@22.0.0
805813
[21.1.0]: https://github.com/MetaMask/core/compare/@metamask/transaction-pay-controller@21.0.0...@metamask/transaction-pay-controller@21.1.0

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": "22.0.1",
3+
"version": "22.0.2",
44
"description": "Manages alternate payment strategies to provide required funds for transactions in MetaMask",
55
"keywords": [
66
"Ethereum",
@@ -57,10 +57,10 @@
5757
"@ethersproject/abi": "^5.7.0",
5858
"@ethersproject/contracts": "^5.7.0",
5959
"@ethersproject/providers": "^5.7.0",
60-
"@metamask/assets-controller": "^6.4.0",
60+
"@metamask/assets-controller": "^7.0.0",
6161
"@metamask/assets-controllers": "^106.0.0",
6262
"@metamask/base-controller": "^9.1.0",
63-
"@metamask/bridge-controller": "^72.0.0",
63+
"@metamask/bridge-controller": "^72.0.1",
6464
"@metamask/bridge-status-controller": "^71.1.1",
6565
"@metamask/controller-utils": "^11.20.0",
6666
"@metamask/gas-fee-controller": "^26.2.0",

yarn.lock

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -2768,7 +2768,7 @@ __metadata:
27682768
languageName: unknown
27692769
linkType: soft
27702770

2771-
"@metamask/assets-controller@npm:^6.4.0, @metamask/assets-controller@workspace:packages/assets-controller":
2771+
"@metamask/assets-controller@npm:^7.0.0, @metamask/assets-controller@workspace:packages/assets-controller":
27722772
version: 0.0.0-use.local
27732773
resolution: "@metamask/assets-controller@workspace:packages/assets-controller"
27742774
dependencies:
@@ -3015,7 +3015,7 @@ __metadata:
30153015
languageName: unknown
30163016
linkType: soft
30173017

3018-
"@metamask/bridge-controller@npm:^72.0.0, @metamask/bridge-controller@workspace:packages/bridge-controller":
3018+
"@metamask/bridge-controller@npm:^72.0.1, @metamask/bridge-controller@workspace:packages/bridge-controller":
30193019
version: 0.0.0-use.local
30203020
resolution: "@metamask/bridge-controller@workspace:packages/bridge-controller"
30213021
dependencies:
@@ -3025,7 +3025,7 @@ __metadata:
30253025
"@ethersproject/contracts": "npm:^5.7.0"
30263026
"@ethersproject/providers": "npm:^5.7.0"
30273027
"@metamask/accounts-controller": "npm:^38.0.0"
3028-
"@metamask/assets-controller": "npm:^6.4.0"
3028+
"@metamask/assets-controller": "npm:^7.0.0"
30293029
"@metamask/assets-controllers": "npm:^106.0.0"
30303030
"@metamask/auto-changelog": "npm:^6.1.0"
30313031
"@metamask/base-controller": "npm:^9.1.0"
@@ -3069,7 +3069,7 @@ __metadata:
30693069
"@metamask/accounts-controller": "npm:^38.0.0"
30703070
"@metamask/auto-changelog": "npm:^6.1.0"
30713071
"@metamask/base-controller": "npm:^9.1.0"
3072-
"@metamask/bridge-controller": "npm:^72.0.0"
3072+
"@metamask/bridge-controller": "npm:^72.0.1"
30733073
"@metamask/controller-utils": "npm:^11.20.0"
30743074
"@metamask/gas-fee-controller": "npm:^26.2.0"
30753075
"@metamask/keyring-controller": "npm:^25.5.0"
@@ -5737,11 +5737,11 @@ __metadata:
57375737
"@ethersproject/abi": "npm:^5.7.0"
57385738
"@ethersproject/contracts": "npm:^5.7.0"
57395739
"@ethersproject/providers": "npm:^5.7.0"
5740-
"@metamask/assets-controller": "npm:^6.4.0"
5740+
"@metamask/assets-controller": "npm:^7.0.0"
57415741
"@metamask/assets-controllers": "npm:^106.0.0"
57425742
"@metamask/auto-changelog": "npm:^6.1.0"
57435743
"@metamask/base-controller": "npm:^9.1.0"
5744-
"@metamask/bridge-controller": "npm:^72.0.0"
5744+
"@metamask/bridge-controller": "npm:^72.0.1"
57455745
"@metamask/bridge-status-controller": "npm:^71.1.1"
57465746
"@metamask/controller-utils": "npm:^11.20.0"
57475747
"@metamask/gas-fee-controller": "npm:^26.2.0"

0 commit comments

Comments
 (0)