Skip to content

Commit 9e773c7

Browse files
authored
Release 697.0.0 (#7253)
## Explanation extension PR: MetaMask/metamask-extension#38359 Mobile PR: MetaMask/metamask-mobile#23367 <!-- 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/contributing.md#updating-changelogs) - [ ] I've introduced [breaking changes](https://github.com/MetaMask/core/tree/main/docs/breaking-changes.md) in this PR and have prepared draft pull requests for clients and consumer packages to resolve them <!-- CURSOR_SUMMARY --> --- > [!NOTE] > Releases 697.0.0, publishing @metamask/assets-controllers 92.0.0 and updating dependent packages (bridge/transaction-pay), plus a chain ID fix in bridge-controller. > > - **Release** > - Bump monorepo version to `697.0.0`. > - **Packages** > - **`@metamask/[email protected]`** > - Changelog: optional JWT auth for multi‑chain accounts API; optional market data in `searchTokens`. > - **`@metamask/bridge-controller`** > - Dependency: bump `@metamask/assets-controllers` to `^92.0.0`. > - Fix: add missing MON and SEI to integer chain IDs. > - **`@metamask/transaction-pay-controller`** > - Dependencies: bump `@metamask/assets-controllers` to `^92.0.0`, `@metamask/bridge-controller` to `^63.2.0`, `@metamask/bridge-status-controller` to `^63.1.0`, `@metamask/transaction-controller` to `^62.3.0`. > - **Dependencies** > - Update `yarn.lock` accordingly. > > <sup>Written by [Cursor Bugbot](https://cursor.com/dashboard?tab=bugbot) for commit d89e71d. This will update automatically on new commits. Configure [here](https://cursor.com/dashboard?tab=bugbot).</sup> <!-- /CURSOR_SUMMARY -->
1 parent 890b2d3 commit 9e773c7

File tree

8 files changed

+16
-8
lines changed

8 files changed

+16
-8
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": "696.0.0",
3+
"version": "697.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+
## [92.0.0]
11+
1012
### Added
1113

1214
- Support for optionally fetching market data when calling searchTokens ([#7226](https://github.com/MetaMask/core/pull/7226))
@@ -2353,7 +2355,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
23532355
23542356
- Use Ethers for AssetsContractController ([#845](https://github.com/MetaMask/core/pull/845))
23552357
2356-
[Unreleased]: https://github.com/MetaMask/core/compare/@metamask/[email protected]
2358+
[Unreleased]: https://github.com/MetaMask/core/compare/@metamask/[email protected]
2359+
[92.0.0]: https://github.com/MetaMask/core/compare/@metamask/[email protected]...@metamask/[email protected]
23572360
[91.0.0]: https://github.com/MetaMask/core/compare/@metamask/[email protected]...@metamask/[email protected]
23582361
[90.0.0]: https://github.com/MetaMask/core/compare/@metamask/[email protected]...@metamask/[email protected]
23592362
[89.0.1]: 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": "91.0.0",
3+
"version": "92.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: 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 `^91.0.0` to `^92.0.0` ([#7253](https://github.com/MetaMask/core/pull/7253))
13+
1014
### Fixed
1115

1216
- Add missing MON (Monad) and SEI (Sei) to integer chain IDs ([#7252](https://github.com/MetaMask/core/pull/7252))

packages/bridge-controller/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -54,7 +54,7 @@
5454
"@ethersproject/contracts": "^5.7.0",
5555
"@ethersproject/providers": "^5.7.0",
5656
"@metamask/accounts-controller": "^35.0.0",
57-
"@metamask/assets-controllers": "^91.0.0",
57+
"@metamask/assets-controllers": "^92.0.0",
5858
"@metamask/base-controller": "^9.0.0",
5959
"@metamask/controller-utils": "^11.16.0",
6060
"@metamask/gas-fee-controller": "^26.0.0",

packages/transaction-pay-controller/CHANGELOG.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -13,6 +13,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
1313

1414
### Changed
1515

16+
- Bump `@metamask/assets-controllers` from `^91.0.0` to `^92.0.0` ([#7253](https://github.com/MetaMask/core/pull/7253))
1617
- Bump `@metamask/bridge-status-controller` from `^63.0.0` to `^63.1.0` ([#7245](https://github.com/MetaMask/core/pull/7245))
1718
- Bump `@metamask/transaction-controller` from `^62.2.0` to `^62.3.0` ([#7236](https://github.com/MetaMask/core/pull/7236))
1819
- Bump `@metamask/bridge-controller` from `^63.0.0` to `^63.2.0` ([#7238](https://github.com/MetaMask/core/pull/7238), [#7245](https://github.com/MetaMask/core/pull/7245))

packages/transaction-pay-controller/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -51,7 +51,7 @@
5151
"dependencies": {
5252
"@ethersproject/abi": "^5.7.0",
5353
"@ethersproject/contracts": "^5.7.0",
54-
"@metamask/assets-controllers": "^91.0.0",
54+
"@metamask/assets-controllers": "^92.0.0",
5555
"@metamask/base-controller": "^9.0.0",
5656
"@metamask/bridge-controller": "^63.2.0",
5757
"@metamask/bridge-status-controller": "^63.1.0",

yarn.lock

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -2622,7 +2622,7 @@ __metadata:
26222622
languageName: unknown
26232623
linkType: soft
26242624

2625-
"@metamask/assets-controllers@npm:^91.0.0, @metamask/assets-controllers@workspace:packages/assets-controllers":
2625+
"@metamask/assets-controllers@npm:^92.0.0, @metamask/assets-controllers@workspace:packages/assets-controllers":
26262626
version: 0.0.0-use.local
26272627
resolution: "@metamask/assets-controllers@workspace:packages/assets-controllers"
26282628
dependencies:
@@ -2804,7 +2804,7 @@ __metadata:
28042804
"@ethersproject/contracts": "npm:^5.7.0"
28052805
"@ethersproject/providers": "npm:^5.7.0"
28062806
"@metamask/accounts-controller": "npm:^35.0.0"
2807-
"@metamask/assets-controllers": "npm:^91.0.0"
2807+
"@metamask/assets-controllers": "npm:^92.0.0"
28082808
"@metamask/auto-changelog": "npm:^3.4.4"
28092809
"@metamask/base-controller": "npm:^9.0.0"
28102810
"@metamask/controller-utils": "npm:^11.16.0"
@@ -5052,7 +5052,7 @@ __metadata:
50525052
dependencies:
50535053
"@ethersproject/abi": "npm:^5.7.0"
50545054
"@ethersproject/contracts": "npm:^5.7.0"
5055-
"@metamask/assets-controllers": "npm:^91.0.0"
5055+
"@metamask/assets-controllers": "npm:^92.0.0"
50565056
"@metamask/auto-changelog": "npm:^3.4.4"
50575057
"@metamask/base-controller": "npm:^9.0.0"
50585058
"@metamask/bridge-controller": "npm:^63.2.0"

0 commit comments

Comments
 (0)