Skip to content

Commit 48097e2

Browse files
authored
Release/762.0.0 (#7704)
## 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] > Prepares the 762.0.0 monorepo release with coordinated package updates and changelog entries. > > - **assets-controllers 96.0.0**: dynamic supported currency fetching, fixes selector crash, and **BREAKING** removal of deprecated `getNFTContractInfo`; minor dependency updates > - **bridge-controller 64.8.1 / bridge-status-controller 64.4.4**: bump to consume `@metamask/assets-controllers@^96.0.0` and latest bridge peer > - **transaction-pay-controller 11.1.0**: adds `slippageTokens` feature-flag support; bumps assets/bridge dependencies > - Update root `package.json` to 762.0.0 and refresh `yarn.lock` > > <sup>Written by [Cursor Bugbot](https://cursor.com/dashboard?tab=bugbot) for commit f41e40c. This will update automatically on new commits. Configure [here](https://cursor.com/dashboard?tab=bugbot).</sup> <!-- /CURSOR_SUMMARY -->
1 parent 54ac5ea commit 48097e2

File tree

10 files changed

+45
-27
lines changed

10 files changed

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

packages/assets-controllers/CHANGELOG.md

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

88
## [Unreleased]
99

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

1214
- Add dynamic fetching of supported currencies from `/v1/supportedVsCurrencies` API endpoint with fallback to hardcoded list ([#7699](https://github.com/MetaMask/core/pull/7699))
1315

1416
### Changed
1517

1618
- Removed call to NFT collections endpoint ([#7687](https://github.com/MetaMask/core/pull/7687))
19+
- Bump `@metamask/multichain-account-service` from `^5.0.0` to `^5.1.0` ([#7678](https://github.com/MetaMask/core/pull/7678))
20+
- Set zero address for native token of Henesys/MSU ([#7666](https://github.com/MetaMask/core/pull/7666))
1721

1822
### Removed
1923

20-
- Remove unused deprecated `getNFTContractInfo` function from NftController ([#7703](https://github.com/MetaMask/core/pull/7703))
24+
- **BREAKING:** Remove unused deprecated `getNFTContractInfo` function from NftController ([#7703](https://github.com/MetaMask/core/pull/7703))
2125

2226
### Fixed
2327

2428
- Fix crash in `selectAllMultichainAssets` selector when asset metadata is missing `units` property ([#7702](https://github.com/MetaMask/core/pull/7702))
25-
- Bump `@metamask/multichain-account-service` from `^5.0.0` to `^5.1.0` ([#7678](https://github.com/MetaMask/core/pull/7678))
26-
- Set zero address for native token of Henesys/MSU ([#7666](https://github.com/MetaMask/core/pull/7666))
2729

2830
## [95.3.0]
2931

@@ -2546,7 +2548,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
25462548
25472549
- Use Ethers for AssetsContractController ([#845](https://github.com/MetaMask/core/pull/845))
25482550
2549-
[Unreleased]: https://github.com/MetaMask/core/compare/@metamask/[email protected]
2551+
[Unreleased]: https://github.com/MetaMask/core/compare/@metamask/[email protected]
2552+
[96.0.0]: https://github.com/MetaMask/core/compare/@metamask/[email protected]...@metamask/[email protected]
25502553
[95.3.0]: https://github.com/MetaMask/core/compare/@metamask/[email protected]...@metamask/[email protected]
25512554
[95.2.0]: https://github.com/MetaMask/core/compare/@metamask/[email protected]...@metamask/[email protected]
25522555
[95.1.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": "95.3.0",
3+
"version": "96.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: 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+
## [64.8.1]
11+
12+
### Changed
13+
14+
- Bump `@metamask/assets-controllers` from `^95.3.0` to `^96.0.0` ([#7704](https://github.com/MetaMask/core/pull/7704))
15+
1016
## [64.8.0]
1117

1218
### Changed
@@ -1034,7 +1040,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
10341040

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

1037-
[Unreleased]: https://github.com/MetaMask/core/compare/@metamask/[email protected]
1043+
[Unreleased]: https://github.com/MetaMask/core/compare/@metamask/[email protected]
1044+
[64.8.1]: https://github.com/MetaMask/core/compare/@metamask/[email protected]...@metamask/[email protected]
10381045
[64.8.0]: https://github.com/MetaMask/core/compare/@metamask/[email protected]...@metamask/[email protected]
10391046
[64.7.0]: https://github.com/MetaMask/core/compare/@metamask/[email protected]...@metamask/[email protected]
10401047
[64.6.1]: 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.0",
3+
"version": "64.8.1",
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": "^95.3.0",
57+
"@metamask/assets-controllers": "^96.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: 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.4.4]
11+
1012
### Changed
1113

12-
- Bump `@metamask/bridge-controller` from `^64.5.1` to `^64.8.0` ([#7667](https://github.com/MetaMask/core/pull/7667), [#7672](https://github.com/MetaMask/core/pull/7672), [#7694](https://github.com/MetaMask/core/pull/7694), [#7700](https://github.com/MetaMask/core/pull/7700))
14+
- Bump `@metamask/bridge-controller` from `^64.5.1` to `^64.8.1` ([#7667](https://github.com/MetaMask/core/pull/7667), [#7672](https://github.com/MetaMask/core/pull/7672), [#7694](https://github.com/MetaMask/core/pull/7694), [#7700](https://github.com/MetaMask/core/pull/7700), [#7704](https://github.com/MetaMask/core/pull/7704))
1315

1416
## [64.4.3]
1517

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

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

888-
[Unreleased]: https://github.com/MetaMask/core/compare/@metamask/[email protected]
890+
[Unreleased]: https://github.com/MetaMask/core/compare/@metamask/[email protected]
891+
[64.4.4]: https://github.com/MetaMask/core/compare/@metamask/[email protected]...@metamask/[email protected]
889892
[64.4.3]: https://github.com/MetaMask/core/compare/@metamask/[email protected]...@metamask/[email protected]
890893
[64.4.2]: https://github.com/MetaMask/core/compare/@metamask/[email protected]...@metamask/[email protected]
891894
[64.4.1]: https://github.com/MetaMask/core/compare/@metamask/[email protected]...@metamask/[email protected]

packages/bridge-status-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-status-controller",
3-
"version": "64.4.3",
3+
"version": "64.4.4",
44
"description": "Manages bridge-related status fetching functionality for MetaMask",
55
"keywords": [
66
"MetaMask",
@@ -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.0",
53+
"@metamask/bridge-controller": "^64.8.1",
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: 7 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,13 +7,17 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
77

88
## [Unreleased]
99

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

1214
- Add `slippageTokens` feature flag support for token-specific slippage configuration ([#7673](https://github.com/MetaMask/core/pull/7673))
1315

1416
### Changed
1517

16-
- Bump `@metamask/bridge-controller` from `^64.5.1` to `^64.7.0` ([#7667](https://github.com/MetaMask/core/pull/7667), [#7672](https://github.com/MetaMask/core/pull/7672), [#7694](https://github.com/MetaMask/core/pull/7694), [#7700](https://github.com/MetaMask/core/pull/7700))
18+
- Bump `@metamask/bridge-controller` from `^64.5.1` to `^64.8.1` ([#7667](https://github.com/MetaMask/core/pull/7667), [#7672](https://github.com/MetaMask/core/pull/7672), [#7694](https://github.com/MetaMask/core/pull/7694), [#7700](https://github.com/MetaMask/core/pull/7700), [#7704](https://github.com/MetaMask/core/pull/7704))
19+
- Bump `@metamask/assets-controllers` from `^95.3.0` to `^96.0.0` ([#7704](https://github.com/MetaMask/core/pull/7704))
20+
- Bump `@metamask/bridge-status-controller` from `^64.4.3` to `^64.4.4` ([#7704](https://github.com/MetaMask/core/pull/7704))
1721

1822
## [11.0.2]
1923

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

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

283-
[Unreleased]: https://github.com/MetaMask/core/compare/@metamask/[email protected]
287+
[Unreleased]: https://github.com/MetaMask/core/compare/@metamask/[email protected]
288+
[11.1.0]: https://github.com/MetaMask/core/compare/@metamask/[email protected]...@metamask/[email protected]
284289
[11.0.2]: https://github.com/MetaMask/core/compare/@metamask/[email protected]...@metamask/[email protected]
285290
[11.0.1]: https://github.com/MetaMask/core/compare/@metamask/[email protected]...@metamask/[email protected]
286291
[11.0.0]: https://github.com/MetaMask/core/compare/@metamask/[email protected]...@metamask/[email protected]

packages/transaction-pay-controller/package.json

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@metamask/transaction-pay-controller",
3-
"version": "11.0.2",
3+
"version": "11.1.0",
44
"description": "Manages alternate payment strategies to provide required funds for transactions in MetaMask",
55
"keywords": [
66
"MetaMask",
@@ -51,10 +51,10 @@
5151
"dependencies": {
5252
"@ethersproject/abi": "^5.7.0",
5353
"@ethersproject/contracts": "^5.7.0",
54-
"@metamask/assets-controllers": "^95.3.0",
54+
"@metamask/assets-controllers": "^96.0.0",
5555
"@metamask/base-controller": "^9.0.0",
56-
"@metamask/bridge-controller": "^64.8.0",
57-
"@metamask/bridge-status-controller": "^64.4.3",
56+
"@metamask/bridge-controller": "^64.8.1",
57+
"@metamask/bridge-status-controller": "^64.4.4",
5858
"@metamask/controller-utils": "^11.18.0",
5959
"@metamask/gas-fee-controller": "^26.0.2",
6060
"@metamask/messenger": "^0.3.0",

yarn.lock

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -2670,7 +2670,7 @@ __metadata:
26702670
languageName: unknown
26712671
linkType: soft
26722672

2673-
"@metamask/assets-controllers@npm:^95.3.0, @metamask/assets-controllers@workspace:packages/assets-controllers":
2673+
"@metamask/assets-controllers@npm:^96.0.0, @metamask/assets-controllers@workspace:packages/assets-controllers":
26742674
version: 0.0.0-use.local
26752675
resolution: "@metamask/assets-controllers@workspace:packages/assets-controllers"
26762676
dependencies:
@@ -2831,7 +2831,7 @@ __metadata:
28312831
languageName: unknown
28322832
linkType: soft
28332833

2834-
"@metamask/bridge-controller@npm:^64.8.0, @metamask/bridge-controller@workspace:packages/bridge-controller":
2834+
"@metamask/bridge-controller@npm:^64.8.1, @metamask/bridge-controller@workspace:packages/bridge-controller":
28352835
version: 0.0.0-use.local
28362836
resolution: "@metamask/bridge-controller@workspace:packages/bridge-controller"
28372837
dependencies:
@@ -2841,7 +2841,7 @@ __metadata:
28412841
"@ethersproject/contracts": "npm:^5.7.0"
28422842
"@ethersproject/providers": "npm:^5.7.0"
28432843
"@metamask/accounts-controller": "npm:^35.0.2"
2844-
"@metamask/assets-controllers": "npm:^95.3.0"
2844+
"@metamask/assets-controllers": "npm:^96.0.0"
28452845
"@metamask/auto-changelog": "npm:^3.4.4"
28462846
"@metamask/base-controller": "npm:^9.0.0"
28472847
"@metamask/controller-utils": "npm:^11.18.0"
@@ -2875,14 +2875,14 @@ __metadata:
28752875
languageName: unknown
28762876
linkType: soft
28772877

2878-
"@metamask/bridge-status-controller@npm:^64.4.3, @metamask/bridge-status-controller@workspace:packages/bridge-status-controller":
2878+
"@metamask/bridge-status-controller@npm:^64.4.4, @metamask/bridge-status-controller@workspace:packages/bridge-status-controller":
28792879
version: 0.0.0-use.local
28802880
resolution: "@metamask/bridge-status-controller@workspace:packages/bridge-status-controller"
28812881
dependencies:
28822882
"@metamask/accounts-controller": "npm:^35.0.2"
28832883
"@metamask/auto-changelog": "npm:^3.4.4"
28842884
"@metamask/base-controller": "npm:^9.0.0"
2885-
"@metamask/bridge-controller": "npm:^64.8.0"
2885+
"@metamask/bridge-controller": "npm:^64.8.1"
28862886
"@metamask/controller-utils": "npm:^11.18.0"
28872887
"@metamask/gas-fee-controller": "npm:^26.0.2"
28882888
"@metamask/network-controller": "npm:^29.0.0"
@@ -5176,11 +5176,11 @@ __metadata:
51765176
dependencies:
51775177
"@ethersproject/abi": "npm:^5.7.0"
51785178
"@ethersproject/contracts": "npm:^5.7.0"
5179-
"@metamask/assets-controllers": "npm:^95.3.0"
5179+
"@metamask/assets-controllers": "npm:^96.0.0"
51805180
"@metamask/auto-changelog": "npm:^3.4.4"
51815181
"@metamask/base-controller": "npm:^9.0.0"
5182-
"@metamask/bridge-controller": "npm:^64.8.0"
5183-
"@metamask/bridge-status-controller": "npm:^64.4.3"
5182+
"@metamask/bridge-controller": "npm:^64.8.1"
5183+
"@metamask/bridge-status-controller": "npm:^64.4.4"
51845184
"@metamask/controller-utils": "npm:^11.18.0"
51855185
"@metamask/gas-fee-controller": "npm:^26.0.2"
51865186
"@metamask/messenger": "npm:^0.3.0"

0 commit comments

Comments
 (0)