Skip to content

Commit 8b9ad85

Browse files
Release/831.0.0 (#8024)
## 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 `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 - [x] 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 - [x] 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** > Release/version and dependency-range updates only; no runtime logic changes beyond pulling in the already-defined `bridge-controller@67.2.0` release. > > **Overview** > Publishes **`@metamask/bridge-controller@67.2.0`** by bumping its package version and promoting its recent changes into a new changelog entry (with updated compare links). > > Updates consumers to pick up the new release by bumping `@metamask/bridge-controller` dependency ranges in `@metamask/bridge-status-controller` and `@metamask/transaction-pay-controller`, and refreshes `yarn.lock` accordingly. Also bumps the root monorepo version to `831.0.0`. > > <sup>Written by [Cursor Bugbot](https://cursor.com/dashboard?tab=bugbot) for commit 6ea323b. 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 bb2d9b8 commit 8b9ad85

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": "830.0.0",
3+
"version": "831.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.2.0]
11+
1012
### Changed
1113

1214
- Bump `@metamask/transaction-controller` from `^62.17.1` to `^62.18.0` ([#8005](https://github.com/MetaMask/core/pull/8005))
@@ -1185,7 +1187,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
11851187

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

1188-
[Unreleased]: https://github.com/MetaMask/core/compare/@metamask/bridge-controller@67.1.1...HEAD
1190+
[Unreleased]: https://github.com/MetaMask/core/compare/@metamask/bridge-controller@67.2.0...HEAD
1191+
[67.2.0]: https://github.com/MetaMask/core/compare/@metamask/bridge-controller@67.1.1...@metamask/bridge-controller@67.2.0
11891192
[67.1.1]: https://github.com/MetaMask/core/compare/@metamask/bridge-controller@67.1.0...@metamask/bridge-controller@67.1.1
11901193
[67.1.0]: https://github.com/MetaMask/core/compare/@metamask/bridge-controller@67.0.0...@metamask/bridge-controller@67.1.0
11911194
[67.0.0]: https://github.com/MetaMask/core/compare/@metamask/bridge-controller@66.2.0...@metamask/bridge-controller@67.0.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.1.1",
3+
"version": "67.2.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 & 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.1.1` to `^67.2.0` ([#8024](https://github.com/MetaMask/core/pull/8024))
1213
- Bump `@metamask/transaction-controller` from `^62.17.1` to `^62.18.0` ([#8005](https://github.com/MetaMask/core/pull/8005))
1314

1415
## [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.1.1",
52+
"@metamask/bridge-controller": "^67.2.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: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -11,6 +11,10 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
1111

1212
- Add ordered strategy fallback mechanism for quote retrieval ([#7868](https://github.com/MetaMask/core/pull/7868))
1313

14+
### Changed
15+
16+
- Bump `@metamask/bridge-controller` from `^67.1.1` to `^67.2.0` ([#8024](https://github.com/MetaMask/core/pull/8024))
17+
1418
## [16.0.0]
1519

1620
### Added

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.2",
5555
"@metamask/base-controller": "^9.0.0",
56-
"@metamask/bridge-controller": "^67.1.1",
56+
"@metamask/bridge-controller": "^67.2.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
@@ -2714,7 +2714,7 @@ __metadata:
27142714
languageName: unknown
27152715
linkType: soft
27162716

2717-
"@metamask/bridge-controller@npm:^67.1.1, @metamask/bridge-controller@workspace:packages/bridge-controller":
2717+
"@metamask/bridge-controller@npm:^67.2.0, @metamask/bridge-controller@workspace:packages/bridge-controller":
27182718
version: 0.0.0-use.local
27192719
resolution: "@metamask/bridge-controller@workspace:packages/bridge-controller"
27202720
dependencies:
@@ -2766,7 +2766,7 @@ __metadata:
27662766
"@metamask/accounts-controller": "npm:^36.0.1"
27672767
"@metamask/auto-changelog": "npm:^3.4.4"
27682768
"@metamask/base-controller": "npm:^9.0.0"
2769-
"@metamask/bridge-controller": "npm:^67.1.1"
2769+
"@metamask/bridge-controller": "npm:^67.2.0"
27702770
"@metamask/controller-utils": "npm:^11.19.0"
27712771
"@metamask/gas-fee-controller": "npm:^26.0.3"
27722772
"@metamask/network-controller": "npm:^30.0.0"
@@ -5086,7 +5086,7 @@ __metadata:
50865086
"@metamask/assets-controllers": "npm:^100.0.2"
50875087
"@metamask/auto-changelog": "npm:^3.4.4"
50885088
"@metamask/base-controller": "npm:^9.0.0"
5089-
"@metamask/bridge-controller": "npm:^67.1.1"
5089+
"@metamask/bridge-controller": "npm:^67.2.0"
50905090
"@metamask/bridge-status-controller": "npm:^67.0.1"
50915091
"@metamask/controller-utils": "npm:^11.19.0"
50925092
"@metamask/gas-fee-controller": "npm:^26.0.3"

0 commit comments

Comments
 (0)