Skip to content

Commit 66545ab

Browse files
Release/837.0.0 (#8051)
## 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? --> This PR releases the `BridgeController`. ## 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] > **Low Risk** > Low risk release bookkeeping: version bumps and changelog updates only, with no runtime code changes. Main risk is dependency/version skew if downstream packages aren’t updated together. > > **Overview** > Publishes `@metamask/bridge-controller@67.3.0` and bumps the monorepo version to `837.0.0`. > > Updates dependents (`bridge-status-controller`, `transaction-pay-controller`) to require `@metamask/bridge-controller@^67.3.0`, and refreshes corresponding changelog entries and `yarn.lock` resolutions. > > <sup>Written by [Cursor Bugbot](https://cursor.com/dashboard?tab=bugbot) for commit 32dc56b. This will update automatically on new commits. Configure [here](https://cursor.com/dashboard?tab=bugbot).</sup> <!-- /CURSOR_SUMMARY --> --------- Co-authored-by: cryptodev-2s <109512101+cryptodev-2s@users.noreply.github.com>
1 parent 0353ddd commit 66545ab

File tree

8 files changed

+13
-9
lines changed

8 files changed

+13
-9
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": "836.0.0",
3+
"version": "837.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+
## [67.3.0]
11+
1012
### Added
1113

1214
- Added optional `ab_tests` property to `RequiredEventContextFromClient` and `CrossChainSwapsEventProperties` types for A/B test experiment attribution ([#8007](https://github.com/MetaMask/core/pull/8007))
@@ -1197,7 +1199,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
11971199

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

1200-
[Unreleased]: https://github.com/MetaMask/core/compare/@metamask/bridge-controller@67.2.0...HEAD
1202+
[Unreleased]: https://github.com/MetaMask/core/compare/@metamask/bridge-controller@67.3.0...HEAD
1203+
[67.3.0]: https://github.com/MetaMask/core/compare/@metamask/bridge-controller@67.2.0...@metamask/bridge-controller@67.3.0
12011204
[67.2.0]: https://github.com/MetaMask/core/compare/@metamask/bridge-controller@67.1.1...@metamask/bridge-controller@67.2.0
12021205
[67.1.1]: https://github.com/MetaMask/core/compare/@metamask/bridge-controller@67.1.0...@metamask/bridge-controller@67.1.1
12031206
[67.1.0]: https://github.com/MetaMask/core/compare/@metamask/bridge-controller@67.0.0...@metamask/bridge-controller@67.1.0

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": "67.2.0",
3+
"version": "67.3.0",
44
"description": "Manages bridge-related quote fetching functionality for MetaMask",
55
"keywords": [
66
"MetaMask",

packages/bridge-status-controller/CHANGELOG.md

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

1717
### Changed
1818

19-
- Bump `@metamask/bridge-controller` from `^67.1.1` to `^67.2.0` ([#8024](https://github.com/MetaMask/core/pull/8024))
19+
- Bump `@metamask/bridge-controller` from `^67.1.1` to `^67.3.0` ([#8024](https://github.com/MetaMask/core/pull/8024), [#8051](https://github.com/MetaMask/core/pull/8051))
2020
- Bump `@metamask/transaction-controller` from `^62.17.1` to `^62.19.0` ([#8005](https://github.com/MetaMask/core/pull/8005), [#8031](https://github.com/MetaMask/core/pull/8031))
2121

2222
## [67.0.1]

packages/bridge-status-controller/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -49,7 +49,7 @@
4949
"dependencies": {
5050
"@metamask/accounts-controller": "^36.0.1",
5151
"@metamask/base-controller": "^9.0.0",
52-
"@metamask/bridge-controller": "^67.2.0",
52+
"@metamask/bridge-controller": "^67.3.0",
5353
"@metamask/controller-utils": "^11.19.0",
5454
"@metamask/gas-fee-controller": "^26.0.3",
5555
"@metamask/network-controller": "^30.0.0",

packages/transaction-pay-controller/CHANGELOG.md

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

1010
### Changed
1111

12+
- Bump `@metamask/bridge-controller` from `^67.2.0` to `^67.3.0` ([#8051](https://github.com/MetaMask/core/pull/8051))
1213
- Bump `@metamask/remote-feature-flag-controller` from `^4.0.0` to `^4.1.0` ([#8041](https://github.com/MetaMask/core/pull/8041))
1314

1415
## [16.1.0]

packages/transaction-pay-controller/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -53,7 +53,7 @@
5353
"@ethersproject/providers": "^5.7.0",
5454
"@metamask/assets-controllers": "^100.0.3",
5555
"@metamask/base-controller": "^9.0.0",
56-
"@metamask/bridge-controller": "^67.2.0",
56+
"@metamask/bridge-controller": "^67.3.0",
5757
"@metamask/bridge-status-controller": "^67.0.1",
5858
"@metamask/controller-utils": "^11.19.0",
5959
"@metamask/gas-fee-controller": "^26.0.3",

yarn.lock

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -2732,7 +2732,7 @@ __metadata:
27322732
languageName: unknown
27332733
linkType: soft
27342734

2735-
"@metamask/bridge-controller@npm:^67.2.0, @metamask/bridge-controller@workspace:packages/bridge-controller":
2735+
"@metamask/bridge-controller@npm:^67.3.0, @metamask/bridge-controller@workspace:packages/bridge-controller":
27362736
version: 0.0.0-use.local
27372737
resolution: "@metamask/bridge-controller@workspace:packages/bridge-controller"
27382738
dependencies:
@@ -2784,7 +2784,7 @@ __metadata:
27842784
"@metamask/accounts-controller": "npm:^36.0.1"
27852785
"@metamask/auto-changelog": "npm:^3.4.4"
27862786
"@metamask/base-controller": "npm:^9.0.0"
2787-
"@metamask/bridge-controller": "npm:^67.2.0"
2787+
"@metamask/bridge-controller": "npm:^67.3.0"
27882788
"@metamask/controller-utils": "npm:^11.19.0"
27892789
"@metamask/gas-fee-controller": "npm:^26.0.3"
27902790
"@metamask/network-controller": "npm:^30.0.0"
@@ -5106,7 +5106,7 @@ __metadata:
51065106
"@metamask/assets-controllers": "npm:^100.0.3"
51075107
"@metamask/auto-changelog": "npm:^3.4.4"
51085108
"@metamask/base-controller": "npm:^9.0.0"
5109-
"@metamask/bridge-controller": "npm:^67.2.0"
5109+
"@metamask/bridge-controller": "npm:^67.3.0"
51105110
"@metamask/bridge-status-controller": "npm:^67.0.1"
51115111
"@metamask/controller-utils": "npm:^11.19.0"
51125112
"@metamask/gas-fee-controller": "npm:^26.0.3"

0 commit comments

Comments
 (0)