Skip to content

Commit 016dde5

Browse files
maxime-oemicaelae
authored andcommitted
Release/894.0.0 (#8355)
## 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] > **Low Risk** > This PR only updates package versions, changelogs, and dependency ranges/lockfile entries, with no functional code changes. > > **Overview** > Bumps the monorepo version to `894.0.0` and cuts releases for `@metamask/assets-controller` (`3.3.0`) and `@metamask/assets-controllers` (`103.1.0`), updating their changelogs accordingly. > > Propagates the new `@metamask/assets-controller`/`@metamask/assets-controllers` versions into dependent packages (`bridge-controller`, `transaction-pay-controller`) and updates `yarn.lock` to match. > > <sup>Written by [Cursor Bugbot](https://cursor.com/dashboard?tab=bugbot) for commit cb77904. This will update automatically on new commits. Configure [here](https://cursor.com/dashboard?tab=bugbot).</sup> <!-- /CURSOR_SUMMARY -->
1 parent 1dc6b9d commit 016dde5

10 files changed

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

packages/assets-controller/CHANGELOG.md

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

88
## [Unreleased]
99

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

1214
- Bump `@metamask/controller-utils` from `^11.19.0` to `^11.20.0` ([#8344](https://github.com/MetaMask/core/pull/8344))
1315
- Hide native tokens on Tempo networks (testnet and mainnet) in `getAssets` method ([#7882](https://github.com/MetaMask/core/pull/7882))
16+
- Bump `@metamask/assets-controllers` from `^103.0.0` to `^103.1.0` ([#8355](https://github.com/MetaMask/core/pull/8355))
1417

1518
## [3.2.1]
1619

@@ -252,7 +255,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
252255
- Refactor `RpcDataSource` to delegate polling to `BalanceFetcher` and `TokenDetector` services ([#7709](https://github.com/MetaMask/core/pull/7709))
253256
- Refactor `BalanceFetcher` and `TokenDetector` to extend `StaticIntervalPollingControllerOnly` for independent polling management ([#7709](https://github.com/MetaMask/core/pull/7709))
254257

255-
[Unreleased]: https://github.com/MetaMask/core/compare/@metamask/assets-controller@3.2.1...HEAD
258+
[Unreleased]: https://github.com/MetaMask/core/compare/@metamask/assets-controller@3.3.0...HEAD
259+
[3.3.0]: https://github.com/MetaMask/core/compare/@metamask/assets-controller@3.2.1...@metamask/assets-controller@3.3.0
256260
[3.2.1]: https://github.com/MetaMask/core/compare/@metamask/assets-controller@3.2.0...@metamask/assets-controller@3.2.1
257261
[3.2.0]: https://github.com/MetaMask/core/compare/@metamask/assets-controller@3.1.1...@metamask/assets-controller@3.2.0
258262
[3.1.1]: https://github.com/MetaMask/core/compare/@metamask/assets-controller@3.1.0...@metamask/assets-controller@3.1.1

packages/assets-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/assets-controller",
3-
"version": "3.2.1",
3+
"version": "3.3.0",
44
"description": "Tracks assets balances/prices and handles token detection across all digital assets",
55
"keywords": [
66
"MetaMask",
@@ -52,7 +52,7 @@
5252
"@ethersproject/abi": "^5.7.0",
5353
"@ethersproject/providers": "^5.7.0",
5454
"@metamask/account-tree-controller": "^7.0.0",
55-
"@metamask/assets-controllers": "^103.0.0",
55+
"@metamask/assets-controllers": "^103.1.0",
5656
"@metamask/base-controller": "^9.0.1",
5757
"@metamask/client-controller": "^1.0.1",
5858
"@metamask/controller-utils": "^11.20.0",

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+
## [103.1.0]
11+
1012
### Changed
1113

1214
- Bump `@metamask/controller-utils` from `^11.19.0` to `^11.20.0` ([#8344](https://github.com/MetaMask/core/pull/8344))
@@ -2905,7 +2907,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
29052907
29062908
- Use Ethers for AssetsContractController ([#845](https://github.com/MetaMask/core/pull/845))
29072909
2908-
[Unreleased]: https://github.com/MetaMask/core/compare/@metamask/assets-controllers@103.0.0...HEAD
2910+
[Unreleased]: https://github.com/MetaMask/core/compare/@metamask/assets-controllers@103.1.0...HEAD
2911+
[103.1.0]: https://github.com/MetaMask/core/compare/@metamask/assets-controllers@103.0.0...@metamask/assets-controllers@103.1.0
29092912
[103.0.0]: https://github.com/MetaMask/core/compare/@metamask/assets-controllers@102.0.0...@metamask/assets-controllers@103.0.0
29102913
[102.0.0]: https://github.com/MetaMask/core/compare/@metamask/assets-controllers@101.0.1...@metamask/assets-controllers@102.0.0
29112914
[101.0.1]: https://github.com/MetaMask/core/compare/@metamask/assets-controllers@101.0.0...@metamask/assets-controllers@101.0.1

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": "103.0.0",
3+
"version": "103.1.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: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
1010
### Changed
1111

1212
- Bump `@metamask/controller-utils` from `^11.19.0` to `^11.20.0` ([#8344](https://github.com/MetaMask/core/pull/8344))
13+
- Bump `@metamask/assets-controller` from `^3.2.1` to `^3.3.0` ([#8355](https://github.com/MetaMask/core/pull/8355))
14+
- Bump `@metamask/assets-controllers` from `^103.0.0` to `^103.1.0` ([#8355](https://github.com/MetaMask/core/pull/8355))
1315

1416
## [70.0.0]
1517

packages/bridge-controller/package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -53,8 +53,8 @@
5353
"@ethersproject/contracts": "^5.7.0",
5454
"@ethersproject/providers": "^5.7.0",
5555
"@metamask/accounts-controller": "^37.1.1",
56-
"@metamask/assets-controller": "^3.2.1",
57-
"@metamask/assets-controllers": "^103.0.0",
56+
"@metamask/assets-controller": "^3.3.0",
57+
"@metamask/assets-controllers": "^103.1.0",
5858
"@metamask/base-controller": "^9.0.1",
5959
"@metamask/controller-utils": "^11.20.0",
6060
"@metamask/gas-fee-controller": "^26.1.1",

packages/transaction-pay-controller/CHANGELOG.md

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

1212
- Bump `@metamask/controller-utils` from `^11.19.0` to `^11.20.0` ([#8344](https://github.com/MetaMask/core/pull/8344))
13+
- Bump `@metamask/assets-controller` from `^3.2.1` to `^3.3.0` ([#8355](https://github.com/MetaMask/core/pull/8355))
14+
- Bump `@metamask/assets-controllers` from `^103.0.0` to `^103.1.0` ([#8355](https://github.com/MetaMask/core/pull/8355))
1315

1416
## [19.0.1]
1517

packages/transaction-pay-controller/package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -52,8 +52,8 @@
5252
"@ethersproject/abi": "^5.7.0",
5353
"@ethersproject/contracts": "^5.7.0",
5454
"@ethersproject/providers": "^5.7.0",
55-
"@metamask/assets-controller": "^3.2.1",
56-
"@metamask/assets-controllers": "^103.0.0",
55+
"@metamask/assets-controller": "^3.3.0",
56+
"@metamask/assets-controllers": "^103.1.0",
5757
"@metamask/base-controller": "^9.0.1",
5858
"@metamask/bridge-controller": "^70.0.0",
5959
"@metamask/bridge-status-controller": "^70.0.4",

yarn.lock

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -2762,15 +2762,15 @@ __metadata:
27622762
languageName: unknown
27632763
linkType: soft
27642764

2765-
"@metamask/assets-controller@npm:^3.2.1, @metamask/assets-controller@workspace:packages/assets-controller":
2765+
"@metamask/assets-controller@npm:^3.3.0, @metamask/assets-controller@workspace:packages/assets-controller":
27662766
version: 0.0.0-use.local
27672767
resolution: "@metamask/assets-controller@workspace:packages/assets-controller"
27682768
dependencies:
27692769
"@ethereumjs/util": "npm:^9.1.0"
27702770
"@ethersproject/abi": "npm:^5.7.0"
27712771
"@ethersproject/providers": "npm:^5.7.0"
27722772
"@metamask/account-tree-controller": "npm:^7.0.0"
2773-
"@metamask/assets-controllers": "npm:^103.0.0"
2773+
"@metamask/assets-controllers": "npm:^103.1.0"
27742774
"@metamask/auto-changelog": "npm:^3.4.4"
27752775
"@metamask/base-controller": "npm:^9.0.1"
27762776
"@metamask/client-controller": "npm:^1.0.1"
@@ -2807,7 +2807,7 @@ __metadata:
28072807
languageName: unknown
28082808
linkType: soft
28092809

2810-
"@metamask/assets-controllers@npm:^103.0.0, @metamask/assets-controllers@workspace:packages/assets-controllers":
2810+
"@metamask/assets-controllers@npm:^103.1.0, @metamask/assets-controllers@workspace:packages/assets-controllers":
28112811
version: 0.0.0-use.local
28122812
resolution: "@metamask/assets-controllers@workspace:packages/assets-controllers"
28132813
dependencies:
@@ -3001,8 +3001,8 @@ __metadata:
30013001
"@ethersproject/contracts": "npm:^5.7.0"
30023002
"@ethersproject/providers": "npm:^5.7.0"
30033003
"@metamask/accounts-controller": "npm:^37.1.1"
3004-
"@metamask/assets-controller": "npm:^3.2.1"
3005-
"@metamask/assets-controllers": "npm:^103.0.0"
3004+
"@metamask/assets-controller": "npm:^3.3.0"
3005+
"@metamask/assets-controllers": "npm:^103.1.0"
30063006
"@metamask/auto-changelog": "npm:^3.4.4"
30073007
"@metamask/base-controller": "npm:^9.0.1"
30083008
"@metamask/controller-utils": "npm:^11.20.0"
@@ -5462,8 +5462,8 @@ __metadata:
54625462
"@ethersproject/abi": "npm:^5.7.0"
54635463
"@ethersproject/contracts": "npm:^5.7.0"
54645464
"@ethersproject/providers": "npm:^5.7.0"
5465-
"@metamask/assets-controller": "npm:^3.2.1"
5466-
"@metamask/assets-controllers": "npm:^103.0.0"
5465+
"@metamask/assets-controller": "npm:^3.3.0"
5466+
"@metamask/assets-controllers": "npm:^103.1.0"
54675467
"@metamask/auto-changelog": "npm:^3.4.4"
54685468
"@metamask/base-controller": "npm:^9.0.1"
54695469
"@metamask/bridge-controller": "npm:^70.0.0"

0 commit comments

Comments
 (0)