Skip to content

Commit bda1365

Browse files
Release/937.0.0 (MetaMask#8590)
## 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? --> Release with multiple fixes for assets-controller. ## 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] > **Low Risk** > This PR is a release/version-bump only (package versions, dependency ranges, lockfile, and changelog entries) with no functional code changes in this diff. > > **Overview** > Bumps the monorepo version to `937.0.0` and publishes `@metamask/assets-controller` `6.2.0`, including changelog entries for new asset-fetch pipeline middlewares, configurable fetch timeouts, and a trace-callback robustness fix. > > Updates downstream packages (`@metamask/bridge-controller` and `@metamask/transaction-pay-controller`) to depend on `@metamask/assets-controller@^6.2.0`, and refreshes `yarn.lock` accordingly. > > <sup>Reviewed by [Cursor Bugbot](https://cursor.com/bugbot) for commit c4469e2. 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 d6bd865 commit bda1365

8 files changed

Lines changed: 15 additions & 11 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": "936.0.0",
3+
"version": "937.0.0",
44
"private": true,
55
"description": "Monorepo for packages shared between MetaMask clients",
66
"repository": {

packages/assets-controller/CHANGELOG.md

Lines changed: 6 additions & 4 deletions
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+
## [6.2.0]
11+
1012
### Added
1113

1214
- Add `CustomAssetGraduationMiddleware` that removes an EVM asset from `customAssets[selectedAccount]` when `AccountsApiDataSource` or `BackendWebsocketDataSource` reports a balance for it ([#8582](https://github.com/MetaMask/core/pull/8582))
@@ -230,9 +232,9 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
230232

231233
### Changed
232234

233-
- Bump `@metamask/assets-controllers` from `^100.0.3` to `^100.2.0` ([#8107](https://github.com/MetaMask/core/pull/8107)), ([#8140](https://github.com/MetaMask/core/pull/8140))
235+
- Bump `@metamask/assets-controllers` from `^100.0.3` to `^100.2.0`, ([#8107](https://github.com/MetaMask/core/pull/8107), [#8140](https://github.com/MetaMask/core/pull/8140))
234236
- Bump `@metamask/network-enablement-controller` from `^4.1.2` to `^4.2.0` ([#8107](https://github.com/MetaMask/core/pull/8107))
235-
- Bump `@metamask/transaction-controller` from `^62.19.0` to `^62.21.0` ([#8104](https://github.com/MetaMask/core/pull/8104)), ([#8140](https://github.com/MetaMask/core/pull/8140))
237+
- Bump `@metamask/transaction-controller` from `^62.19.0` to `^62.21.0`, ([#8104](https://github.com/MetaMask/core/pull/8104), [#8140](https://github.com/MetaMask/core/pull/8140))
236238
- Bump `@metamask/account-tree-controller` from `^4.1.1` to `^5.0.0` ([#8140](https://github.com/MetaMask/core/pull/8140))
237239
- Bump `@metamask/core-backend` from `^6.0.0` to `^6.1.0` ([#8140](https://github.com/MetaMask/core/pull/8140))
238240
- Bump `@metamask/preferences-controller` from `^22.1.0` to `^23.0.0` ([#8140](https://github.com/MetaMask/core/pull/8140))
@@ -345,7 +347,6 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
345347
### Changed
346348

347349
- Narrow `AssetsControllerState` types from `Json` to semantic types: `assetsMetadata``AssetMetadata`, `assetsBalance``AssetBalance`, `assetsPrice``AssetPrice`, `assetPreferences``AssetPreferences`, `customAssets``Caip19AssetId[]` ([#7777](https://github.com/MetaMask/core/pull/7777))
348-
349350
- Replace `viem` dependency with `@ethersproject/abi` for ABI encoding/decoding in `MulticallClient` ([#7839](https://github.com/MetaMask/core/pull/7839))
350351

351352
## [0.1.0]
@@ -372,7 +373,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
372373
- Refactor `RpcDataSource` to delegate polling to `BalanceFetcher` and `TokenDetector` services ([#7709](https://github.com/MetaMask/core/pull/7709))
373374
- Refactor `BalanceFetcher` and `TokenDetector` to extend `StaticIntervalPollingControllerOnly` for independent polling management ([#7709](https://github.com/MetaMask/core/pull/7709))
374375

375-
[Unreleased]: https://github.com/MetaMask/core/compare/@metamask/assets-controller@6.1.0...HEAD
376+
[Unreleased]: https://github.com/MetaMask/core/compare/@metamask/assets-controller@6.2.0...HEAD
377+
[6.2.0]: https://github.com/MetaMask/core/compare/@metamask/assets-controller@6.1.0...@metamask/assets-controller@6.2.0
376378
[6.1.0]: https://github.com/MetaMask/core/compare/@metamask/assets-controller@6.0.0...@metamask/assets-controller@6.1.0
377379
[6.0.0]: https://github.com/MetaMask/core/compare/@metamask/assets-controller@5.0.1...@metamask/assets-controller@6.0.0
378380
[5.0.1]: https://github.com/MetaMask/core/compare/@metamask/assets-controller@5.0.0...@metamask/assets-controller@5.0.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.1.0",
3+
"version": "6.2.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: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
1010
### Changed
1111

1212
- Bump `@metamask/transaction-controller` from `^64.3.0` to `^64.4.0` ([#8585](https://github.com/MetaMask/core/pull/8585))
13+
- Bump `@metamask/assets-controller` from `^6.1.0` to `^6.2.0` ([#8590](https://github.com/MetaMask/core/pull/8590))
1314

1415
## [70.2.0]
1516

packages/bridge-controller/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -58,7 +58,7 @@
5858
"@ethersproject/contracts": "^5.7.0",
5959
"@ethersproject/providers": "^5.7.0",
6060
"@metamask/accounts-controller": "^37.2.0",
61-
"@metamask/assets-controller": "^6.1.0",
61+
"@metamask/assets-controller": "^6.2.0",
6262
"@metamask/assets-controllers": "^104.3.0",
6363
"@metamask/base-controller": "^9.1.0",
6464
"@metamask/controller-utils": "^11.20.0",

packages/transaction-pay-controller/CHANGELOG.md

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

1212
- Bump `@metamask/transaction-controller` from `^64.3.0` to `^64.4.0` ([#8585](https://github.com/MetaMask/core/pull/8585))
13+
- Bump `@metamask/assets-controller` from `^6.1.0` to `^6.2.0` ([#8590](https://github.com/MetaMask/core/pull/8590))
1314

1415
### Fixed
1516

packages/transaction-pay-controller/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -57,7 +57,7 @@
5757
"@ethersproject/abi": "^5.7.0",
5858
"@ethersproject/contracts": "^5.7.0",
5959
"@ethersproject/providers": "^5.7.0",
60-
"@metamask/assets-controller": "^6.1.0",
60+
"@metamask/assets-controller": "^6.2.0",
6161
"@metamask/assets-controllers": "^104.3.0",
6262
"@metamask/base-controller": "^9.1.0",
6363
"@metamask/bridge-controller": "^70.2.0",

yarn.lock

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -2770,7 +2770,7 @@ __metadata:
27702770
languageName: unknown
27712771
linkType: soft
27722772

2773-
"@metamask/assets-controller@npm:^6.1.0, @metamask/assets-controller@workspace:packages/assets-controller":
2773+
"@metamask/assets-controller@npm:^6.2.0, @metamask/assets-controller@workspace:packages/assets-controller":
27742774
version: 0.0.0-use.local
27752775
resolution: "@metamask/assets-controller@workspace:packages/assets-controller"
27762776
dependencies:
@@ -3026,7 +3026,7 @@ __metadata:
30263026
"@ethersproject/contracts": "npm:^5.7.0"
30273027
"@ethersproject/providers": "npm:^5.7.0"
30283028
"@metamask/accounts-controller": "npm:^37.2.0"
3029-
"@metamask/assets-controller": "npm:^6.1.0"
3029+
"@metamask/assets-controller": "npm:^6.2.0"
30303030
"@metamask/assets-controllers": "npm:^104.3.0"
30313031
"@metamask/auto-changelog": "npm:^6.1.0"
30323032
"@metamask/base-controller": "npm:^9.1.0"
@@ -5692,7 +5692,7 @@ __metadata:
56925692
"@ethersproject/abi": "npm:^5.7.0"
56935693
"@ethersproject/contracts": "npm:^5.7.0"
56945694
"@ethersproject/providers": "npm:^5.7.0"
5695-
"@metamask/assets-controller": "npm:^6.1.0"
5695+
"@metamask/assets-controller": "npm:^6.2.0"
56965696
"@metamask/assets-controllers": "npm:^104.3.0"
56975697
"@metamask/auto-changelog": "npm:^6.1.0"
56985698
"@metamask/base-controller": "npm:^9.1.0"

0 commit comments

Comments
 (0)