Skip to content

Commit 4483e68

Browse files
authored
Release/608.0.0 (#6806)
## 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? --> Assets controllers release. Preview PRs for extension MetaMask/metamask-extension#36574 and mobile MetaMask/metamask-mobile#20859. ## 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/contributing.md#updating-changelogs), highlighting breaking changes as necessary - [ ] I've prepared draft pull requests for clients and consumer packages to resolve any breaking changes <!-- CURSOR_SUMMARY --> --- > [!NOTE] > Releases assets-controllers v79 with a breaking token-selector rename, bumps bridge packages to v49 with updated peer deps and adds optional Client-Version header, and updates root/yarn versions. > > - **Packages**: > - **assets-controllers `v79.0.0` (BREAKING)**: > - Rename token-selector field `type` -> `accountType`. > - Update changelog links. > - **bridge-controller `v49.0.0`**: > - Bump peer/dev deps to `@metamask/assets-controllers@^79.0.0` (BREAKING peer update). > - Add optional `Client-Version` header to API requests. > - **bridge-status-controller `v49.0.0`**: > - Bump peer/dev deps to `@metamask/bridge-controller@^49.0.0` (BREAKING peer update). > - **Repo**: > - Bump root version to `608.0.0`; update `yarn.lock`. > > <sup>Written by [Cursor Bugbot](https://cursor.com/dashboard?tab=bugbot) for commit ca75c5f. This will update automatically on new commits. Configure [here](https://cursor.com/dashboard?tab=bugbot).</sup> <!-- /CURSOR_SUMMARY -->
1 parent 7878d3a commit 4483e68

File tree

8 files changed

+31
-17
lines changed

8 files changed

+31
-17
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": "607.0.0",
3+
"version": "608.0.0",
44
"private": true,
55
"description": "Monorepo for packages shared between MetaMask clients",
66
"repository": {

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

1214
- **BREAKING:** Change name of token-selector field from `type` to `accountType` to avoid conflicts with existing types. ([#6804](https://github.com/MetaMask/core/pull/6804))
@@ -2077,7 +2079,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
20772079
20782080
- Use Ethers for AssetsContractController ([#845](https://github.com/MetaMask/core/pull/845))
20792081
2080-
[Unreleased]: https://github.com/MetaMask/core/compare/@metamask/[email protected]
2082+
[Unreleased]: https://github.com/MetaMask/core/compare/@metamask/[email protected]
2083+
[79.0.0]: https://github.com/MetaMask/core/compare/@metamask/[email protected]...@metamask/[email protected]
20812084
[78.0.1]: https://github.com/MetaMask/core/compare/@metamask/[email protected]...@metamask/[email protected]
20822085
[78.0.0]: https://github.com/MetaMask/core/compare/@metamask/[email protected]...@metamask/[email protected]
20832086
[77.0.2]: 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": "78.0.1",
3+
"version": "79.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 & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,8 +7,11 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
77

88
## [Unreleased]
99

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

14+
- **BREAKING:** Bump peer dependency `@metamask/assets-controllers` from `^78.0.0` to `^79.0.0` ([#6806](https://github.com/MetaMask/core/pull/6806))
1215
- Add optional `Client-Version` header to bridge API requests ([#6791](https://github.com/MetaMask/core/pull/6791))
1316

1417
## [48.0.0]
@@ -677,7 +680,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
677680

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

680-
[Unreleased]: https://github.com/MetaMask/core/compare/@metamask/[email protected]
683+
[Unreleased]: https://github.com/MetaMask/core/compare/@metamask/[email protected]
684+
[49.0.0]: https://github.com/MetaMask/core/compare/@metamask/[email protected]...@metamask/[email protected]
681685
[48.0.0]: https://github.com/MetaMask/core/compare/@metamask/[email protected]...@metamask/[email protected]
682686
[47.2.0]: https://github.com/MetaMask/core/compare/@metamask/[email protected]...@metamask/[email protected]
683687
[47.1.0]: https://github.com/MetaMask/core/compare/@metamask/[email protected]...@metamask/[email protected]

packages/bridge-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/bridge-controller",
3-
"version": "48.0.0",
3+
"version": "49.0.0",
44
"description": "Manages bridge-related quote fetching functionality for MetaMask",
55
"keywords": [
66
"MetaMask",
@@ -66,7 +66,7 @@
6666
},
6767
"devDependencies": {
6868
"@metamask/accounts-controller": "^33.1.0",
69-
"@metamask/assets-controllers": "^78.0.1",
69+
"@metamask/assets-controllers": "^79.0.0",
7070
"@metamask/auto-changelog": "^3.4.4",
7171
"@metamask/eth-json-rpc-provider": "^5.0.0",
7272
"@metamask/network-controller": "^24.2.0",
@@ -87,7 +87,7 @@
8787
},
8888
"peerDependencies": {
8989
"@metamask/accounts-controller": "^33.0.0",
90-
"@metamask/assets-controllers": "^78.0.0",
90+
"@metamask/assets-controllers": "^79.0.0",
9191
"@metamask/network-controller": "^24.0.0",
9292
"@metamask/remote-feature-flag-controller": "^1.6.0",
9393
"@metamask/snaps-controllers": "^14.0.0",

packages/bridge-status-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+
## [49.0.0]
11+
12+
### Changed
13+
14+
- **BREAKING:** Bump peer dependency `@metamask/bridge-controller` from `^48.0.0` to `^49.0.0` ([#6806](https://github.com/MetaMask/core/pull/6806))
15+
1016
## [48.0.0]
1117

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

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

637-
[Unreleased]: https://github.com/MetaMask/core/compare/@metamask/[email protected]
643+
[Unreleased]: https://github.com/MetaMask/core/compare/@metamask/[email protected]
644+
[49.0.0]: https://github.com/MetaMask/core/compare/@metamask/[email protected]...@metamask/[email protected]
638645
[48.0.0]: https://github.com/MetaMask/core/compare/@metamask/[email protected]...@metamask/[email protected]
639646
[47.2.0]: https://github.com/MetaMask/core/compare/@metamask/[email protected]...@metamask/[email protected]
640647
[47.1.0]: https://github.com/MetaMask/core/compare/@metamask/[email protected]...@metamask/[email protected]

packages/bridge-status-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/bridge-status-controller",
3-
"version": "48.0.0",
3+
"version": "49.0.0",
44
"description": "Manages bridge-related status fetching functionality for MetaMask",
55
"keywords": [
66
"MetaMask",
@@ -58,7 +58,7 @@
5858
"devDependencies": {
5959
"@metamask/accounts-controller": "^33.1.0",
6060
"@metamask/auto-changelog": "^3.4.4",
61-
"@metamask/bridge-controller": "^48.0.0",
61+
"@metamask/bridge-controller": "^49.0.0",
6262
"@metamask/gas-fee-controller": "^24.0.0",
6363
"@metamask/network-controller": "^24.2.0",
6464
"@metamask/snaps-controllers": "^14.0.1",
@@ -76,7 +76,7 @@
7676
},
7777
"peerDependencies": {
7878
"@metamask/accounts-controller": "^33.0.0",
79-
"@metamask/bridge-controller": "^48.0.0",
79+
"@metamask/bridge-controller": "^49.0.0",
8080
"@metamask/gas-fee-controller": "^24.0.0",
8181
"@metamask/network-controller": "^24.0.0",
8282
"@metamask/snaps-controllers": "^14.0.0",

yarn.lock

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -2574,7 +2574,7 @@ __metadata:
25742574
languageName: unknown
25752575
linkType: soft
25762576

2577-
"@metamask/assets-controllers@npm:^78.0.1, @metamask/assets-controllers@workspace:packages/assets-controllers":
2577+
"@metamask/assets-controllers@npm:^79.0.0, @metamask/assets-controllers@workspace:packages/assets-controllers":
25782578
version: 0.0.0-use.local
25792579
resolution: "@metamask/assets-controllers@workspace:packages/assets-controllers"
25802580
dependencies:
@@ -2723,7 +2723,7 @@ __metadata:
27232723
languageName: unknown
27242724
linkType: soft
27252725

2726-
"@metamask/bridge-controller@npm:^48.0.0, @metamask/bridge-controller@workspace:packages/bridge-controller":
2726+
"@metamask/bridge-controller@npm:^49.0.0, @metamask/bridge-controller@workspace:packages/bridge-controller":
27272727
version: 0.0.0-use.local
27282728
resolution: "@metamask/bridge-controller@workspace:packages/bridge-controller"
27292729
dependencies:
@@ -2733,7 +2733,7 @@ __metadata:
27332733
"@ethersproject/contracts": "npm:^5.7.0"
27342734
"@ethersproject/providers": "npm:^5.7.0"
27352735
"@metamask/accounts-controller": "npm:^33.1.0"
2736-
"@metamask/assets-controllers": "npm:^78.0.1"
2736+
"@metamask/assets-controllers": "npm:^79.0.0"
27372737
"@metamask/auto-changelog": "npm:^3.4.4"
27382738
"@metamask/base-controller": "npm:^8.4.0"
27392739
"@metamask/controller-utils": "npm:^11.14.0"
@@ -2764,7 +2764,7 @@ __metadata:
27642764
uuid: "npm:^8.3.2"
27652765
peerDependencies:
27662766
"@metamask/accounts-controller": ^33.0.0
2767-
"@metamask/assets-controllers": ^78.0.0
2767+
"@metamask/assets-controllers": ^79.0.0
27682768
"@metamask/network-controller": ^24.0.0
27692769
"@metamask/remote-feature-flag-controller": ^1.6.0
27702770
"@metamask/snaps-controllers": ^14.0.0
@@ -2779,7 +2779,7 @@ __metadata:
27792779
"@metamask/accounts-controller": "npm:^33.1.0"
27802780
"@metamask/auto-changelog": "npm:^3.4.4"
27812781
"@metamask/base-controller": "npm:^8.4.0"
2782-
"@metamask/bridge-controller": "npm:^48.0.0"
2782+
"@metamask/bridge-controller": "npm:^49.0.0"
27832783
"@metamask/controller-utils": "npm:^11.14.0"
27842784
"@metamask/gas-fee-controller": "npm:^24.0.0"
27852785
"@metamask/network-controller": "npm:^24.2.0"
@@ -2802,7 +2802,7 @@ __metadata:
28022802
uuid: "npm:^8.3.2"
28032803
peerDependencies:
28042804
"@metamask/accounts-controller": ^33.0.0
2805-
"@metamask/bridge-controller": ^48.0.0
2805+
"@metamask/bridge-controller": ^49.0.0
28062806
"@metamask/gas-fee-controller": ^24.0.0
28072807
"@metamask/network-controller": ^24.0.0
28082808
"@metamask/snaps-controllers": ^14.0.0

0 commit comments

Comments
 (0)