Skip to content

Commit 7a55ad3

Browse files
Release/405.0.0 (MetaMask#5842)
## 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? --> Releasing newest `BridgeController` and `BridgeStatusController` ## 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 --> ## Changelog <!-- THIS SECTION IS NO LONGER NEEDED. The process for updating changelogs has changed. Please consult the "Updating changelogs" section of the Contributing doc for more. --> ## 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), highlighting breaking changes as necessary - [x] I've prepared draft pull requests for clients and consumer packages to resolve any breaking changes --------- Co-authored-by: IF <139582705+infiniteflower@users.noreply.github.com>
1 parent 29c0a6a commit 7a55ad3

6 files changed

Lines changed: 17 additions & 10 deletions

File tree

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": "404.0.0",
3+
"version": "405.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+
## [26.0.0]
11+
1012
### Added
1113

1214
- **BREAKING:** Added a required `minimumVersion` to feature flag response schema ([#5834](https://github.com/MetaMask/core/pull/5834))
@@ -267,7 +269,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
267269

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

270-
[Unreleased]: https://github.com/MetaMask/core/compare/@metamask/bridge-controller@25.1.0...HEAD
272+
[Unreleased]: https://github.com/MetaMask/core/compare/@metamask/bridge-controller@26.0.0...HEAD
273+
[26.0.0]: https://github.com/MetaMask/core/compare/@metamask/bridge-controller@25.1.0...@metamask/bridge-controller@26.0.0
271274
[25.1.0]: https://github.com/MetaMask/core/compare/@metamask/bridge-controller@25.0.1...@metamask/bridge-controller@25.1.0
272275
[25.0.1]: https://github.com/MetaMask/core/compare/@metamask/bridge-controller@25.0.0...@metamask/bridge-controller@25.0.1
273276
[25.0.0]: https://github.com/MetaMask/core/compare/@metamask/bridge-controller@24.0.0...@metamask/bridge-controller@25.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": "25.1.0",
3+
"version": "26.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,12 +7,15 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
77

88
## [Unreleased]
99

10+
## [23.0.0]
11+
1012
### Added
1113

1214
- Subscribe to TransactionController and MultichainTransactionsController tx confirmed and failed events for swaps ([#5829](https://github.com/MetaMask/core/pull/5829))
1315

1416
### Changed
1517

18+
- **BREAKING:** bump `@metamask/bridge-controller` peer dependency to `^26.0.0` ([#5842](https://github.com/MetaMask/core/pull/5842))
1619
- **BREAKING:** Remove the published bridgeTransactionComplete and bridgeTransactionFailed events ([#5829](https://github.com/MetaMask/core/pull/5829))
1720
- Modify events to use `swap` and `swapApproval` TransactionTypes when src and dest chain are the same ([#5829](https://github.com/MetaMask/core/pull/5829))
1821

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

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

256-
[Unreleased]: https://github.com/MetaMask/core/compare/@metamask/bridge-status-controller@22.0.0...HEAD
259+
[Unreleased]: https://github.com/MetaMask/core/compare/@metamask/bridge-status-controller@23.0.0...HEAD
260+
[23.0.0]: https://github.com/MetaMask/core/compare/@metamask/bridge-status-controller@22.0.0...@metamask/bridge-status-controller@23.0.0
257261
[22.0.0]: https://github.com/MetaMask/core/compare/@metamask/bridge-status-controller@21.0.0...@metamask/bridge-status-controller@22.0.0
258262
[21.0.0]: https://github.com/MetaMask/core/compare/@metamask/bridge-status-controller@20.1.0...@metamask/bridge-status-controller@21.0.0
259263
[20.1.0]: https://github.com/MetaMask/core/compare/@metamask/bridge-status-controller@20.0.0...@metamask/bridge-status-controller@20.1.0

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": "22.0.0",
3+
"version": "23.0.0",
44
"description": "Manages bridge-related status fetching functionality for MetaMask",
55
"keywords": [
66
"MetaMask",
@@ -60,7 +60,7 @@
6060
"devDependencies": {
6161
"@metamask/accounts-controller": "^29.0.0",
6262
"@metamask/auto-changelog": "^3.4.4",
63-
"@metamask/bridge-controller": "^25.1.0",
63+
"@metamask/bridge-controller": "^26.0.0",
6464
"@metamask/gas-fee-controller": "^23.0.0",
6565
"@metamask/multichain-transactions-controller": "^1.0.0",
6666
"@metamask/network-controller": "^23.5.0",
@@ -79,7 +79,7 @@
7979
},
8080
"peerDependencies": {
8181
"@metamask/accounts-controller": "^29.0.0",
82-
"@metamask/bridge-controller": "^25.0.0",
82+
"@metamask/bridge-controller": "^26.0.0",
8383
"@metamask/gas-fee-controller": "^23.0.0",
8484
"@metamask/multichain-transactions-controller": "^1.0.0",
8585
"@metamask/network-controller": "^23.0.0",

yarn.lock

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -2689,7 +2689,7 @@ __metadata:
26892689
languageName: unknown
26902690
linkType: soft
26912691

2692-
"@metamask/bridge-controller@npm:^25.1.0, @metamask/bridge-controller@workspace:packages/bridge-controller":
2692+
"@metamask/bridge-controller@npm:^26.0.0, @metamask/bridge-controller@workspace:packages/bridge-controller":
26932693
version: 0.0.0-use.local
26942694
resolution: "@metamask/bridge-controller@workspace:packages/bridge-controller"
26952695
dependencies:
@@ -2744,7 +2744,7 @@ __metadata:
27442744
"@metamask/accounts-controller": "npm:^29.0.0"
27452745
"@metamask/auto-changelog": "npm:^3.4.4"
27462746
"@metamask/base-controller": "npm:^8.0.1"
2747-
"@metamask/bridge-controller": "npm:^25.1.0"
2747+
"@metamask/bridge-controller": "npm:^26.0.0"
27482748
"@metamask/controller-utils": "npm:^11.9.0"
27492749
"@metamask/gas-fee-controller": "npm:^23.0.0"
27502750
"@metamask/keyring-api": "npm:^17.4.0"
@@ -2770,7 +2770,7 @@ __metadata:
27702770
uuid: "npm:^8.3.2"
27712771
peerDependencies:
27722772
"@metamask/accounts-controller": ^29.0.0
2773-
"@metamask/bridge-controller": ^25.0.0
2773+
"@metamask/bridge-controller": ^26.0.0
27742774
"@metamask/gas-fee-controller": ^23.0.0
27752775
"@metamask/multichain-transactions-controller": ^1.0.0
27762776
"@metamask/network-controller": ^23.0.0

0 commit comments

Comments
 (0)