Skip to content

Commit a86728f

Browse files
authored
Release/628.0.0 (#6895)
## Explanation Releases the bridge-controller and bridge-status-controller packages <!-- 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), highlighting breaking changes as necessary - [ ] I've prepared draft pull requests for clients and consumer packages to resolve any breaking changes <!-- CURSOR_SUMMARY --> --- > [!NOTE] > Release `@metamask/bridge-controller` v53.0.0 (breaking constructor arg, SSE flag update) and `@metamask/bridge-status-controller` v52.0.0 (peer dep bump), plus monorepo version bump. > > - **Bridge Controller (`packages/bridge-controller`) — 53.0.0**: > - BREAKING: Require `clientVersion` in `BridgeController` constructor. > - Update `sseEnabled` feature flag to include `minimumVersion`. > - Bump dev deps: `@metamask/network-controller` and `@metamask/transaction-controller`. > - **Bridge Status Controller (`packages/bridge-status-controller`) — 52.0.0**: > - BREAKING: Update peer dependency `@metamask/bridge-controller` to `^53.0.0`; align devDependency. > - Fixes: Mobile crash after successful tx; unit test initialization. > - **Repo**: > - Bump root `@metamask/core-monorepo` version to `628.0.0`. > - Update lockfile and workspace references for new versions. > > <sup>Written by [Cursor Bugbot](https://cursor.com/dashboard?tab=bugbot) for commit 73793be. This will update automatically on new commits. Configure [here](https://cursor.com/dashboard?tab=bugbot).</sup> <!-- /CURSOR_SUMMARY -->
1 parent 0422656 commit a86728f

File tree

6 files changed

+17
-10
lines changed

6 files changed

+17
-10
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": "627.0.0",
3+
"version": "628.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+
## [53.0.0]
11+
1012
### Changed
1113

1214
- **BREAKING:** Require clientVersion in BridgeController constructor ([#6891](https://github.com/MetaMask/core/pull/6891))
@@ -731,7 +733,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
731733

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

734-
[Unreleased]: https://github.com/MetaMask/core/compare/@metamask/[email protected]
736+
[Unreleased]: https://github.com/MetaMask/core/compare/@metamask/[email protected]
737+
[53.0.0]: https://github.com/MetaMask/core/compare/@metamask/[email protected]...@metamask/[email protected]
735738
[52.0.0]: https://github.com/MetaMask/core/compare/@metamask/[email protected]...@metamask/[email protected]
736739
[51.0.0]: https://github.com/MetaMask/core/compare/@metamask/[email protected]...@metamask/[email protected]
737740
[50.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": "52.0.0",
3+
"version": "53.0.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+
## [52.0.0]
11+
1012
### Changed
1113

14+
- **BREAKING:** Bump peer dependency `@metamask/bridge-controller` from `^52.0.0` to `^53.0.0` ([#6895](https://github.com/MetaMask/core/pull/6895))
1215
- Bump `@metamask/network-controller` from `^24.2.2` to `^24.3.0` ([#6883](https://github.com/MetaMask/core/pull/6883))
1316
- Bump `@metamask/transaction-controller` from `^60.7.0` to `^60.8.0` ([#6883](https://github.com/MetaMask/core/pull/6883))
1417

@@ -676,7 +679,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
676679

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

679-
[Unreleased]: https://github.com/MetaMask/core/compare/@metamask/[email protected]
682+
[Unreleased]: https://github.com/MetaMask/core/compare/@metamask/[email protected]
683+
[52.0.0]: https://github.com/MetaMask/core/compare/@metamask/[email protected]...@metamask/[email protected]
680684
[51.0.0]: https://github.com/MetaMask/core/compare/@metamask/[email protected]...@metamask/[email protected]
681685
[50.1.0]: https://github.com/MetaMask/core/compare/@metamask/[email protected]...@metamask/[email protected]
682686
[50.0.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": "51.0.0",
3+
"version": "52.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.1",
6060
"@metamask/auto-changelog": "^3.4.4",
61-
"@metamask/bridge-controller": "^52.0.0",
61+
"@metamask/bridge-controller": "^53.0.0",
6262
"@metamask/gas-fee-controller": "^24.1.0",
6363
"@metamask/network-controller": "^24.3.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": "^52.0.0",
79+
"@metamask/bridge-controller": "^53.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: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -2888,7 +2888,7 @@ __metadata:
28882888
languageName: unknown
28892889
linkType: soft
28902890

2891-
"@metamask/bridge-controller@npm:^52.0.0, @metamask/bridge-controller@workspace:packages/bridge-controller":
2891+
"@metamask/bridge-controller@npm:^53.0.0, @metamask/bridge-controller@workspace:packages/bridge-controller":
28922892
version: 0.0.0-use.local
28932893
resolution: "@metamask/bridge-controller@workspace:packages/bridge-controller"
28942894
dependencies:
@@ -2945,7 +2945,7 @@ __metadata:
29452945
"@metamask/accounts-controller": "npm:^33.1.1"
29462946
"@metamask/auto-changelog": "npm:^3.4.4"
29472947
"@metamask/base-controller": "npm:^8.4.1"
2948-
"@metamask/bridge-controller": "npm:^52.0.0"
2948+
"@metamask/bridge-controller": "npm:^53.0.0"
29492949
"@metamask/controller-utils": "npm:^11.14.1"
29502950
"@metamask/gas-fee-controller": "npm:^24.1.0"
29512951
"@metamask/network-controller": "npm:^24.3.0"
@@ -2968,7 +2968,7 @@ __metadata:
29682968
uuid: "npm:^8.3.2"
29692969
peerDependencies:
29702970
"@metamask/accounts-controller": ^33.0.0
2971-
"@metamask/bridge-controller": ^52.0.0
2971+
"@metamask/bridge-controller": ^53.0.0
29722972
"@metamask/gas-fee-controller": ^24.0.0
29732973
"@metamask/network-controller": ^24.0.0
29742974
"@metamask/snaps-controllers": ^14.0.0

0 commit comments

Comments
 (0)