Skip to content

Commit 16695fa

Browse files
authored
Release/1008.0.0 (#8941)
## Explanation Updated assets-controllers <!-- 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-2957 <!-- 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** > Version and lockfile-only release wiring; functional changes ship in the tagged assets-controllers release, not in this diff’s source files. > > **Overview** > Cuts **core monorepo release `1008.0.0`** by publishing **`@metamask/assets-controllers@108.3.0`** and aligning dependents on that version. > > The release changelog for **108.3.0** documents **`fetchRwas`** (Token API RWA listing) and several internal dependency bumps (e.g. **`keyring-controller` ^26**). This PR only updates **version fields**, **`packages/assets-controllers/CHANGELOG.md`** (new **108.3.0** section and compare links), **`^108.3.0`** pins in **`assets-controller`**, **`bridge-controller`**, and **`transaction-pay-controller`**, plus **`yarn.lock`**—no application source changes in the diff. > > <sup>Reviewed by [Cursor Bugbot](https://cursor.com/bugbot) for commit c9a59a8. Bugbot is set up for automated code reviews on this repo. Configure [here](https://www.cursor.com/dashboard/bugbot).</sup> <!-- /CURSOR_SUMMARY -->
1 parent fa1ced1 commit 16695fa

10 files changed

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

packages/assets-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
- `MulticallClient` no longer falls back to individual RPC calls by default; it retries and returns failed responses when retries are exhausted. Pass `{ fallbackToSingleCalls: true }` to `batchBalanceOf` to opt into per-token RPC fallback after retries (used by balance fetching, not token detection) ([#8925](https://github.com/MetaMask/core/pull/8925))
13+
- Bump `@metamask/assets-controllers` from `^108.2.0` to `^108.3.0` ([#8941](https://github.com/MetaMask/core/pull/8941))
1314

1415
## [8.1.0]
1516

packages/assets-controller/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -58,7 +58,7 @@
5858
"@ethersproject/providers": "^5.7.0",
5959
"@metamask/account-tree-controller": "^7.5.0",
6060
"@metamask/accounts-controller": "^38.1.2",
61-
"@metamask/assets-controllers": "^108.2.0",
61+
"@metamask/assets-controllers": "^108.3.0",
6262
"@metamask/base-controller": "^9.1.0",
6363
"@metamask/client-controller": "^1.0.1",
6464
"@metamask/controller-utils": "^12.1.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+
## [108.3.0]
11+
1012
### Added
1113

1214
- Add `fetchRwas` to fetch real-world asset tokens from the Token API ([#8931](https://github.com/MetaMask/core/pull/8931))
@@ -3128,7 +3130,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
31283130
31293131
- Use Ethers for AssetsContractController ([#845](https://github.com/MetaMask/core/pull/845))
31303132
3131-
[Unreleased]: https://github.com/MetaMask/core/compare/@metamask/assets-controllers@108.2.0...HEAD
3133+
[Unreleased]: https://github.com/MetaMask/core/compare/@metamask/assets-controllers@108.3.0...HEAD
3134+
[108.3.0]: https://github.com/MetaMask/core/compare/@metamask/assets-controllers@108.2.0...@metamask/assets-controllers@108.3.0
31323135
[108.2.0]: https://github.com/MetaMask/core/compare/@metamask/assets-controllers@108.1.0...@metamask/assets-controllers@108.2.0
31333136
[108.1.0]: https://github.com/MetaMask/core/compare/@metamask/assets-controllers@108.0.0...@metamask/assets-controllers@108.1.0
31343137
[108.0.0]: https://github.com/MetaMask/core/compare/@metamask/assets-controllers@107.0.0...@metamask/assets-controllers@108.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": "108.2.0",
3+
"version": "108.3.0",
44
"description": "Controllers which manage interactions involving ERC-20, ERC-721, and ERC-1155 tokens (including NFTs)",
55
"keywords": [
66
"Ethereum",

packages/bridge-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/assets-controllers` from `^108.2.0` to `^108.3.0` ([#8941](https://github.com/MetaMask/core/pull/8941))
13+
1014
## [73.2.0]
1115

1216
### Added

packages/bridge-controller/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -59,7 +59,7 @@
5959
"@ethersproject/providers": "^5.7.0",
6060
"@metamask/accounts-controller": "^38.1.2",
6161
"@metamask/assets-controller": "^8.1.0",
62-
"@metamask/assets-controllers": "^108.2.0",
62+
"@metamask/assets-controllers": "^108.3.0",
6363
"@metamask/base-controller": "^9.1.0",
6464
"@metamask/controller-utils": "^12.1.0",
6565
"@metamask/gas-fee-controller": "^26.2.2",

packages/transaction-pay-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/assets-controllers` from `^108.2.0` to `^108.3.0` ([#8941](https://github.com/MetaMask/core/pull/8941))
13+
1014
## [22.8.0]
1115

1216
### Added

packages/transaction-pay-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/assets-controller": "^8.1.0",
61-
"@metamask/assets-controllers": "^108.2.0",
61+
"@metamask/assets-controllers": "^108.3.0",
6262
"@metamask/base-controller": "^9.1.0",
6363
"@metamask/bridge-controller": "^73.2.0",
6464
"@metamask/bridge-status-controller": "^72.0.0",

yarn.lock

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -2780,7 +2780,7 @@ __metadata:
27802780
"@ethersproject/providers": "npm:^5.7.0"
27812781
"@metamask/account-tree-controller": "npm:^7.5.0"
27822782
"@metamask/accounts-controller": "npm:^38.1.2"
2783-
"@metamask/assets-controllers": "npm:^108.2.0"
2783+
"@metamask/assets-controllers": "npm:^108.3.0"
27842784
"@metamask/auto-changelog": "npm:^6.1.0"
27852785
"@metamask/base-controller": "npm:^9.1.0"
27862786
"@metamask/client-controller": "npm:^1.0.1"
@@ -2818,7 +2818,7 @@ __metadata:
28182818
languageName: unknown
28192819
linkType: soft
28202820

2821-
"@metamask/assets-controllers@npm:^108.2.0, @metamask/assets-controllers@workspace:packages/assets-controllers":
2821+
"@metamask/assets-controllers@npm:^108.3.0, @metamask/assets-controllers@workspace:packages/assets-controllers":
28222822
version: 0.0.0-use.local
28232823
resolution: "@metamask/assets-controllers@workspace:packages/assets-controllers"
28242824
dependencies:
@@ -3029,7 +3029,7 @@ __metadata:
30293029
"@ethersproject/providers": "npm:^5.7.0"
30303030
"@metamask/accounts-controller": "npm:^38.1.2"
30313031
"@metamask/assets-controller": "npm:^8.1.0"
3032-
"@metamask/assets-controllers": "npm:^108.2.0"
3032+
"@metamask/assets-controllers": "npm:^108.3.0"
30333033
"@metamask/auto-changelog": "npm:^6.1.0"
30343034
"@metamask/base-controller": "npm:^9.1.0"
30353035
"@metamask/controller-utils": "npm:^12.1.0"
@@ -5776,7 +5776,7 @@ __metadata:
57765776
"@ethersproject/contracts": "npm:^5.7.0"
57775777
"@ethersproject/providers": "npm:^5.7.0"
57785778
"@metamask/assets-controller": "npm:^8.1.0"
5779-
"@metamask/assets-controllers": "npm:^108.2.0"
5779+
"@metamask/assets-controllers": "npm:^108.3.0"
57805780
"@metamask/auto-changelog": "npm:^6.1.0"
57815781
"@metamask/base-controller": "npm:^9.1.0"
57825782
"@metamask/bridge-controller": "npm:^73.2.0"

0 commit comments

Comments
 (0)