Skip to content

Commit 3db312f

Browse files
authored
Release/695.0.0 (#7245)
## Explanation Releasing this PR: #7242 <!-- 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 - [x] I've updated the test suite for new or updated code as appropriate - [x] I've updated documentation (JSDoc, Markdown, etc.) for new or updated code as appropriate - [x] 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) - [x] 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] > Publishes bridge-controller 63.2.0 (metrics context in stopPollingForQuotes) and bumps dependent packages, updating monorepo to 695.0.0. > > - **Release**: > - Bump monorepo to `695.0.0`. > - **@metamask/bridge-controller (63.2.0)**: > - `stopPollingForQuotes` accepts metrics context; if quotes still loading, publishes `Unified SwapBridge Quotes Received` before cancel. > - **Dependencies/Consumers**: > - `@metamask/bridge-status-controller` → depend on `@metamask/bridge-controller@^63.2.0` and release `63.1.0`. > - `@metamask/transaction-pay-controller` → bump to `@metamask/bridge-controller@^63.2.0` and `@metamask/bridge-status-controller@^63.1.0`. > - Update `yarn.lock` accordingly. > > <sup>Written by [Cursor Bugbot](https://cursor.com/dashboard?tab=bugbot) for commit dae09f3. This will update automatically on new commits. Configure [here](https://cursor.com/dashboard?tab=bugbot).</sup> <!-- /CURSOR_SUMMARY -->
1 parent e50bb63 commit 3db312f

File tree

8 files changed

+22
-14
lines changed

8 files changed

+22
-14
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": "694.0.0",
3+
"version": "695.0.0",
44
"private": true,
55
"description": "Monorepo for packages shared between MetaMask clients",
66
"repository": {

packages/bridge-controller/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+
## [63.2.0]
11+
1012
### Changed
1113

1214
- Update `stopPollingForQuotes` to accept metrics context for the QuotesReceived event. If context is provided and quotes are still loading when the handler is called, the `Unified SwapBridge Quotes Received` is published before the poll is cancelled ([#7242](https://github.com/MetaMask/core/pull/7242))
@@ -900,7 +902,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
900902

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

903-
[Unreleased]: https://github.com/MetaMask/core/compare/@metamask/[email protected]
905+
[Unreleased]: https://github.com/MetaMask/core/compare/@metamask/[email protected]
906+
[63.2.0]: https://github.com/MetaMask/core/compare/@metamask/[email protected]...@metamask/[email protected]
904907
[63.1.0]: https://github.com/MetaMask/core/compare/@metamask/[email protected]...@metamask/[email protected]
905908
[63.0.0]: https://github.com/MetaMask/core/compare/@metamask/[email protected]...@metamask/[email protected]
906909
[62.0.0]: https://github.com/MetaMask/core/compare/@metamask/[email protected]...@metamask/[email protected]

packages/bridge-controller/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@metamask/bridge-controller",
3-
"version": "63.1.0",
3+
"version": "63.2.0",
44
"description": "Manages bridge-related quote fetching functionality for MetaMask",
55
"keywords": [
66
"MetaMask",

packages/bridge-status-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+
## [63.1.0]
11+
1012
### Changed
1113

14+
- Bump `@metamask/bridge-controller` from `^63.1.0` to `^63.2.0` ([#7245](https://github.com/MetaMask/core/pull/7245))
1215
- Move peer dependencies for controller and service packages to direct dependencies ([#7209](https://github.com/MetaMask/core/pull/7209), [#7220](https://github.com/MetaMask/core/pull/7220), [#7236](https://github.com/MetaMask/core/pull/7236))
1316
- The dependencies moved are:
1417
- `@metamask/accounts-controller` (^35.0.0)
@@ -796,7 +799,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
796799

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

799-
[Unreleased]: https://github.com/MetaMask/core/compare/@metamask/[email protected]
802+
[Unreleased]: https://github.com/MetaMask/core/compare/@metamask/[email protected]
803+
[63.1.0]: https://github.com/MetaMask/core/compare/@metamask/[email protected]...@metamask/[email protected]
800804
[63.0.0]: https://github.com/MetaMask/core/compare/@metamask/[email protected]...@metamask/[email protected]
801805
[62.0.0]: https://github.com/MetaMask/core/compare/@metamask/[email protected]...@metamask/[email protected]
802806
[61.0.0]: 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": "63.0.0",
3+
"version": "63.1.0",
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.0",
5252
"@metamask/base-controller": "^9.0.0",
53-
"@metamask/bridge-controller": "^63.1.0",
53+
"@metamask/bridge-controller": "^63.2.0",
5454
"@metamask/controller-utils": "^11.16.0",
5555
"@metamask/gas-fee-controller": "^26.0.0",
5656
"@metamask/network-controller": "^26.0.0",

packages/transaction-pay-controller/CHANGELOG.md

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,8 +9,9 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
99

1010
### Changed
1111

12+
- Bump `@metamask/bridge-status-controller` from `^63.0.0` to `^63.1.0` ([#7245](https://github.com/MetaMask/core/pull/7245))
1213
- Bump `@metamask/transaction-controller` from `^62.2.0` to `^62.3.0` ([#7236](https://github.com/MetaMask/core/pull/7236))
13-
- Bump `@metamask/bridge-controller` from `^63.0.0` to `^63.1.0` ([#7238](https://github.com/MetaMask/core/pull/7238))
14+
- 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))
1415

1516
## [10.1.0]
1617

packages/transaction-pay-controller/package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -53,8 +53,8 @@
5353
"@ethersproject/contracts": "^5.7.0",
5454
"@metamask/assets-controllers": "^91.0.0",
5555
"@metamask/base-controller": "^9.0.0",
56-
"@metamask/bridge-controller": "^63.1.0",
57-
"@metamask/bridge-status-controller": "^63.0.0",
56+
"@metamask/bridge-controller": "^63.2.0",
57+
"@metamask/bridge-status-controller": "^63.1.0",
5858
"@metamask/controller-utils": "^11.16.0",
5959
"@metamask/gas-fee-controller": "^26.0.0",
6060
"@metamask/messenger": "^0.3.0",

yarn.lock

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -2794,7 +2794,7 @@ __metadata:
27942794
languageName: unknown
27952795
linkType: soft
27962796

2797-
"@metamask/bridge-controller@npm:^63.1.0, @metamask/bridge-controller@workspace:packages/bridge-controller":
2797+
"@metamask/bridge-controller@npm:^63.2.0, @metamask/bridge-controller@workspace:packages/bridge-controller":
27982798
version: 0.0.0-use.local
27992799
resolution: "@metamask/bridge-controller@workspace:packages/bridge-controller"
28002800
dependencies:
@@ -2838,14 +2838,14 @@ __metadata:
28382838
languageName: unknown
28392839
linkType: soft
28402840

2841-
"@metamask/bridge-status-controller@npm:^63.0.0, @metamask/bridge-status-controller@workspace:packages/bridge-status-controller":
2841+
"@metamask/bridge-status-controller@npm:^63.1.0, @metamask/bridge-status-controller@workspace:packages/bridge-status-controller":
28422842
version: 0.0.0-use.local
28432843
resolution: "@metamask/bridge-status-controller@workspace:packages/bridge-status-controller"
28442844
dependencies:
28452845
"@metamask/accounts-controller": "npm:^35.0.0"
28462846
"@metamask/auto-changelog": "npm:^3.4.4"
28472847
"@metamask/base-controller": "npm:^9.0.0"
2848-
"@metamask/bridge-controller": "npm:^63.1.0"
2848+
"@metamask/bridge-controller": "npm:^63.2.0"
28492849
"@metamask/controller-utils": "npm:^11.16.0"
28502850
"@metamask/gas-fee-controller": "npm:^26.0.0"
28512851
"@metamask/network-controller": "npm:^26.0.0"
@@ -5054,8 +5054,8 @@ __metadata:
50545054
"@metamask/assets-controllers": "npm:^91.0.0"
50555055
"@metamask/auto-changelog": "npm:^3.4.4"
50565056
"@metamask/base-controller": "npm:^9.0.0"
5057-
"@metamask/bridge-controller": "npm:^63.1.0"
5058-
"@metamask/bridge-status-controller": "npm:^63.0.0"
5057+
"@metamask/bridge-controller": "npm:^63.2.0"
5058+
"@metamask/bridge-status-controller": "npm:^63.1.0"
50595059
"@metamask/controller-utils": "npm:^11.16.0"
50605060
"@metamask/gas-fee-controller": "npm:^26.0.0"
50615061
"@metamask/messenger": "npm:^0.3.0"

0 commit comments

Comments
 (0)