Skip to content

Commit 292bd2f

Browse files
authored
Release/764.0.0 (#7722)
## 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] > - **Release 764.0.0** with `@metamask/[email protected]` > - Adds dynamic fetching of supported networks and new token price service methods; integrates `TokenRatesController` with `NetworkEnablementController` for native asset identifiers (**breaking**) > - Removes swaps token fetching from `TokenSearchDiscoveryDataController` (breaking) > - **Dependency bumps** > - `@metamask/bridge-controller` to `64.8.2` and propagate in `bridge-status-controller` and `transaction-pay-controller` (also bumps to `assets-controllers@^97.0.0`) > - Updates `yarn.lock` accordingly > > <sup>Written by [Cursor Bugbot](https://cursor.com/dashboard?tab=bugbot) for commit 525fa31. This will update automatically on new commits. Configure [here](https://cursor.com/dashboard?tab=bugbot).</sup> <!-- /CURSOR_SUMMARY -->
1 parent 3fd4d69 commit 292bd2f

File tree

10 files changed

+37
-19
lines changed

10 files changed

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

packages/assets-controllers/CHANGELOG.md

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

88
## [Unreleased]
99

10+
## [97.0.0]
11+
1012
### Added
1113

1214
- Add dynamic fetching of supported networks from `/v2/supportedNetworks` API endpoint with fallback to hardcoded list ([#7716](https://github.com/MetaMask/core/pull/7716))
1315
- Add `fetchSupportedNetworks()`, `getSupportedNetworks()`, and `resetSupportedNetworksCache()` exports from token-prices-service
1416
- Add `setNativeAssetIdentifiers()` method to `CodefiTokenPricesServiceV2` for CAIP-19 native token lookups
1517
- Add `updateSupportedNetworks()` method to `CodefiTokenPricesServiceV2`
1618
- Add `NativeAssetIdentifiersMap` type export from token-prices-service
17-
- Integrate `TokenRatesController` with `NetworkEnablementController` to use native asset identifiers for token price lookups ([#7716](https://github.com/MetaMask/core/pull/7716))
1819

1920
### Changed
2021

22+
- **BREAKING:** Integrate `TokenRatesController` with `NetworkEnablementController` to use native asset identifiers for token price lookups ([#7716](https://github.com/MetaMask/core/pull/7716))
2123
- Bump `@metamask/keyring-controller` from `^25.0.0` to `^25.1.0` ([#7713](https://github.com/MetaMask/core/pull/7713))
2224
- Add `@metamask/network-enablement-controller` as a dependency ([#7716](https://github.com/MetaMask/core/pull/7716))
2325

@@ -2569,7 +2571,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
25692571
25702572
- Use Ethers for AssetsContractController ([#845](https://github.com/MetaMask/core/pull/845))
25712573
2572-
[Unreleased]: https://github.com/MetaMask/core/compare/@metamask/[email protected]
2574+
[Unreleased]: https://github.com/MetaMask/core/compare/@metamask/[email protected]
2575+
[97.0.0]: https://github.com/MetaMask/core/compare/@metamask/[email protected]...@metamask/[email protected]
25732576
[96.0.0]: https://github.com/MetaMask/core/compare/@metamask/[email protected]...@metamask/[email protected]
25742577
[95.3.0]: https://github.com/MetaMask/core/compare/@metamask/[email protected]...@metamask/[email protected]
25752578
[95.2.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": "96.0.0",
3+
"version": "97.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 & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,9 +7,11 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
77

88
## [Unreleased]
99

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

12-
- Updated s3 link in mock ([#7710](https://github.com/MetaMask/core/pull/7710))
14+
- Bump `@metamask/assets-controllers` from `^96.0.0` to `^97.0.0` ([#7722](https://github.com/MetaMask/core/pull/7722))
1315

1416
## [64.8.1]
1517

@@ -1044,7 +1046,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
10441046

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

1047-
[Unreleased]: https://github.com/MetaMask/core/compare/@metamask/[email protected]
1049+
[Unreleased]: https://github.com/MetaMask/core/compare/@metamask/[email protected]
1050+
[64.8.2]: https://github.com/MetaMask/core/compare/@metamask/[email protected]...@metamask/[email protected]
10481051
[64.8.1]: https://github.com/MetaMask/core/compare/@metamask/[email protected]...@metamask/[email protected]
10491052
[64.8.0]: https://github.com/MetaMask/core/compare/@metamask/[email protected]...@metamask/[email protected]
10501053
[64.7.0]: 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": "64.8.1",
3+
"version": "64.8.2",
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": "^96.0.0",
57+
"@metamask/assets-controllers": "^97.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: 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 `^64.8.1` to `^64.8.2` ([#7722](https://github.com/MetaMask/core/pull/7722))
13+
1014
### Fixed
1115

1216
- Fix transaction failure tracking for pre-submission failures by using `actionId` as a temporary history key ([#7696](https://github.com/MetaMask/core/pull/7696))

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": "^64.8.1",
53+
"@metamask/bridge-controller": "^64.8.2",
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: 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+
## [11.1.1]
11+
12+
### Changed
13+
14+
- Bump `@metamask/assets-controllers` from `^96.0.0` to `^97.0.0` ([#7722](https://github.com/MetaMask/core/pull/7722))
15+
- Bump `@metamask/bridge-controller` from `^64.8.1` to `^64.8.2` ([#7722](https://github.com/MetaMask/core/pull/7722))
16+
1017
## [11.1.0]
1118

1219
### Added
@@ -284,7 +291,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
284291

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

287-
[Unreleased]: https://github.com/MetaMask/core/compare/@metamask/[email protected]
294+
[Unreleased]: https://github.com/MetaMask/core/compare/@metamask/[email protected]
295+
[11.1.1]: https://github.com/MetaMask/core/compare/@metamask/[email protected]...@metamask/[email protected]
288296
[11.1.0]: https://github.com/MetaMask/core/compare/@metamask/[email protected]...@metamask/[email protected]
289297
[11.0.2]: https://github.com/MetaMask/core/compare/@metamask/[email protected]...@metamask/[email protected]
290298
[11.0.1]: 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": "11.1.0",
3+
"version": "11.1.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": "^96.0.0",
54+
"@metamask/assets-controllers": "^97.0.0",
5555
"@metamask/base-controller": "^9.0.0",
56-
"@metamask/bridge-controller": "^64.8.1",
56+
"@metamask/bridge-controller": "^64.8.2",
5757
"@metamask/bridge-status-controller": "^64.4.4",
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:^96.0.0, @metamask/assets-controllers@workspace:packages/assets-controllers":
2676+
"@metamask/assets-controllers@npm:^97.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:
@@ -2835,7 +2835,7 @@ __metadata:
28352835
languageName: unknown
28362836
linkType: soft
28372837

2838-
"@metamask/bridge-controller@npm:^64.8.1, @metamask/bridge-controller@workspace:packages/bridge-controller":
2838+
"@metamask/bridge-controller@npm:^64.8.2, @metamask/bridge-controller@workspace:packages/bridge-controller":
28392839
version: 0.0.0-use.local
28402840
resolution: "@metamask/bridge-controller@workspace:packages/bridge-controller"
28412841
dependencies:
@@ -2845,7 +2845,7 @@ __metadata:
28452845
"@ethersproject/contracts": "npm:^5.7.0"
28462846
"@ethersproject/providers": "npm:^5.7.0"
28472847
"@metamask/accounts-controller": "npm:^35.0.2"
2848-
"@metamask/assets-controllers": "npm:^96.0.0"
2848+
"@metamask/assets-controllers": "npm:^97.0.0"
28492849
"@metamask/auto-changelog": "npm:^3.4.4"
28502850
"@metamask/base-controller": "npm:^9.0.0"
28512851
"@metamask/controller-utils": "npm:^11.18.0"
@@ -2886,7 +2886,7 @@ __metadata:
28862886
"@metamask/accounts-controller": "npm:^35.0.2"
28872887
"@metamask/auto-changelog": "npm:^3.4.4"
28882888
"@metamask/base-controller": "npm:^9.0.0"
2889-
"@metamask/bridge-controller": "npm:^64.8.1"
2889+
"@metamask/bridge-controller": "npm:^64.8.2"
28902890
"@metamask/controller-utils": "npm:^11.18.0"
28912891
"@metamask/gas-fee-controller": "npm:^26.0.2"
28922892
"@metamask/network-controller": "npm:^29.0.0"
@@ -5181,10 +5181,10 @@ __metadata:
51815181
dependencies:
51825182
"@ethersproject/abi": "npm:^5.7.0"
51835183
"@ethersproject/contracts": "npm:^5.7.0"
5184-
"@metamask/assets-controllers": "npm:^96.0.0"
5184+
"@metamask/assets-controllers": "npm:^97.0.0"
51855185
"@metamask/auto-changelog": "npm:^3.4.4"
51865186
"@metamask/base-controller": "npm:^9.0.0"
5187-
"@metamask/bridge-controller": "npm:^64.8.1"
5187+
"@metamask/bridge-controller": "npm:^64.8.2"
51885188
"@metamask/bridge-status-controller": "npm:^64.4.4"
51895189
"@metamask/controller-utils": "npm:^11.18.0"
51905190
"@metamask/gas-fee-controller": "npm:^26.0.2"

0 commit comments

Comments
 (0)