Skip to content

Commit 0f069b6

Browse files
Release/474.0.0 (#6167)
## 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` 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 - [ ] 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
1 parent dee56dc commit 0f069b6

File tree

6 files changed

+14
-8
lines changed

6 files changed

+14
-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": "473.0.0",
3+
"version": "474.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+
## [36.2.0]
11+
1012
### Changed
1113

1214
- Bump `@metamask/keyring-api` from `^18.0.0` to `^19.0.0` ([#6146](https://github.com/MetaMask/core/pull/6146))
@@ -432,7 +434,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
432434

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

435-
[Unreleased]: https://github.com/MetaMask/core/compare/@metamask/bridge-controller@36.1.0...HEAD
437+
[Unreleased]: https://github.com/MetaMask/core/compare/@metamask/bridge-controller@36.2.0...HEAD
438+
[36.2.0]: https://github.com/MetaMask/core/compare/@metamask/bridge-controller@36.1.0...@metamask/bridge-controller@36.2.0
436439
[36.1.0]: https://github.com/MetaMask/core/compare/@metamask/bridge-controller@36.0.0...@metamask/bridge-controller@36.1.0
437440
[36.0.0]: https://github.com/MetaMask/core/compare/@metamask/bridge-controller@35.0.0...@metamask/bridge-controller@36.0.0
438441
[35.0.0]: https://github.com/MetaMask/core/compare/@metamask/bridge-controller@34.0.0...@metamask/bridge-controller@35.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": "36.1.0",
3+
"version": "36.2.0",
44
"description": "Manages bridge-related quote fetching functionality for MetaMask",
55
"keywords": [
66
"MetaMask",

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

1214
- Add `restartPollingForFailedAttempts` action to restart polling for txs that are not in a final state but have too many failed attempts ([#6149](https://github.com/MetaMask/core/pull/6149))
@@ -423,7 +425,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
423425

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

426-
[Unreleased]: https://github.com/MetaMask/core/compare/@metamask/bridge-status-controller@36.0.0...HEAD
428+
[Unreleased]: https://github.com/MetaMask/core/compare/@metamask/bridge-status-controller@36.1.0...HEAD
429+
[36.1.0]: https://github.com/MetaMask/core/compare/@metamask/bridge-status-controller@36.0.0...@metamask/bridge-status-controller@36.1.0
427430
[36.0.0]: https://github.com/MetaMask/core/compare/@metamask/bridge-status-controller@35.0.0...@metamask/bridge-status-controller@36.0.0
428431
[35.0.0]: https://github.com/MetaMask/core/compare/@metamask/bridge-status-controller@34.0.0...@metamask/bridge-status-controller@35.0.0
429432
[34.0.0]: https://github.com/MetaMask/core/compare/@metamask/bridge-status-controller@33.0.0...@metamask/bridge-status-controller@34.0.0

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": "36.0.0",
3+
"version": "36.1.0",
44
"description": "Manages bridge-related status fetching functionality for MetaMask",
55
"keywords": [
66
"MetaMask",
@@ -59,7 +59,7 @@
5959
"devDependencies": {
6060
"@metamask/accounts-controller": "^31.0.0",
6161
"@metamask/auto-changelog": "^3.4.4",
62-
"@metamask/bridge-controller": "^36.1.0",
62+
"@metamask/bridge-controller": "^36.2.0",
6363
"@metamask/gas-fee-controller": "^24.0.0",
6464
"@metamask/network-controller": "^24.0.1",
6565
"@metamask/snaps-controllers": "^14.0.1",

yarn.lock

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2770,7 +2770,7 @@ __metadata:
27702770
languageName: unknown
27712771
linkType: soft
27722772

2773-
"@metamask/bridge-controller@npm:^36.1.0, @metamask/bridge-controller@workspace:packages/bridge-controller":
2773+
"@metamask/bridge-controller@npm:^36.2.0, @metamask/bridge-controller@workspace:packages/bridge-controller":
27742774
version: 0.0.0-use.local
27752775
resolution: "@metamask/bridge-controller@workspace:packages/bridge-controller"
27762776
dependencies:
@@ -2826,7 +2826,7 @@ __metadata:
28262826
"@metamask/accounts-controller": "npm:^31.0.0"
28272827
"@metamask/auto-changelog": "npm:^3.4.4"
28282828
"@metamask/base-controller": "npm:^8.0.1"
2829-
"@metamask/bridge-controller": "npm:^36.1.0"
2829+
"@metamask/bridge-controller": "npm:^36.2.0"
28302830
"@metamask/controller-utils": "npm:^11.11.0"
28312831
"@metamask/gas-fee-controller": "npm:^24.0.0"
28322832
"@metamask/keyring-api": "npm:^19.0.0"

0 commit comments

Comments
 (0)