Skip to content

Commit 583ed6a

Browse files
bfullamFrederikBoldingGeorgeGkasGudahtt
authored
Release/725.0.0 (#7509)
## 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? --> Minor bridge-controller bump for Tron fee calculation changes ## 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) - [ ] I've introduced [breaking changes](https://github.com/MetaMask/core/tree/main/docs/breaking-changes.md) in this PR and have prepared draft pull requests for clients and consumer packages to resolve them <!-- CURSOR_SUMMARY --> --- > [!NOTE] > Bumps `@metamask/bridge-controller` to `64.2.0` (adds Tron fee limit passthrough) and propagates dependency/version updates to dependent packages and monorepo. > > - **Release** > - Bump monorepo `version` to `725.0.0` in `package.json`. > - **Bridge Controller (`@metamask/bridge-controller`)** > - Version `64.2.0` with Tron snap fee limit passthrough. > - Dependency bumps: `@metamask/assets-controllers@^94.1.0`, `@metamask/transaction-controller@^62.7.0`. > - Update `CHANGELOG.md` links/entries. > - **Bridge Status Controller (`@metamask/bridge-status-controller`)** > - Version `64.2.0`; depend on `@metamask/bridge-controller@^64.2.0` and `@metamask/transaction-controller@^62.7.0`. > - Update `CHANGELOG.md` links/entries. > - **Transaction Pay Controller (`@metamask/transaction-pay-controller`)** > - Update deps to `@metamask/bridge-controller@^64.2.0` and `@metamask/bridge-status-controller@^64.2.0`. > - Update `CHANGELOG.md` (Unreleased) to reflect bumps. > - **Tooling** > - Refresh `yarn.lock` to new controller versions. > > <sup>Written by [Cursor Bugbot](https://cursor.com/dashboard?tab=bugbot) for commit fa239dc. This will update automatically on new commits. Configure [here](https://cursor.com/dashboard?tab=bugbot).</sup> <!-- /CURSOR_SUMMARY --> --------- Co-authored-by: Frederik Bolding <[email protected]> Co-authored-by: George Gkasdrogkas <[email protected]> Co-authored-by: Mark Stacey <[email protected]>
1 parent 8f621ec commit 583ed6a

File tree

8 files changed

+22
-14
lines changed

8 files changed

+22
-14
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": "724.0.0",
3+
"version": "725.0.0",
44
"private": true,
55
"description": "Monorepo for packages shared between MetaMask clients",
66
"repository": {

packages/bridge-controller/CHANGELOG.md

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,10 +7,13 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
77

88
## [Unreleased]
99

10+
## [64.2.0]
11+
1012
### Changed
1113

1214
- Bump `@metamask/assets-controllers` from `^93.1.0` to `^94.1.0` ([#7444](https://github.com/MetaMask/core/pull/7444), [#7488](https://github.com/MetaMask/core/pull/7488))
1315
- Bump `@metamask/transaction-controller` from `^62.5.0` to `^62.7.0` ([#7430](https://github.com/MetaMask/core/pull/7430), [#7494](https://github.com/MetaMask/core/pull/7494))
16+
- Add fee limit passthrough for Tron snap fee computation ([#7426](https://github.com/MetaMask/core/pull/7426))
1417

1518
## [64.1.0]
1619

@@ -19,7 +22,6 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
1922
- Bump `@metamask/assets-controllers` from `^93.0.0` to `^93.1.0` ([#7309](https://github.com/MetaMask/core/pull/7309))
2023
- Bump `@metamask/remote-feature-flag-controller` from `^2.0.1` to `^3.0.0` ([#7309](https://github.com/MetaMask/core/pull/7309))
2124
- Bump `@metamask/transaction-controller` from `^62.4.0` to `^62.5.0` ([#7325](https://github.com/MetaMask/core/pull/7325))
22-
- Add fee limit passthrough for Tron snap fee computation ([#7426](https://github.com/MetaMask/core/pull/7426))
2325

2426
### Fixed
2527

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

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

949-
[Unreleased]: https://github.com/MetaMask/core/compare/@metamask/[email protected]
951+
[Unreleased]: https://github.com/MetaMask/core/compare/@metamask/[email protected]
952+
[64.2.0]: https://github.com/MetaMask/core/compare/@metamask/[email protected]...@metamask/[email protected]
950953
[64.1.0]: https://github.com/MetaMask/core/compare/@metamask/[email protected]...@metamask/[email protected]
951954
[64.0.0]: https://github.com/MetaMask/core/compare/@metamask/[email protected]...@metamask/[email protected]
952955
[63.2.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": "64.1.0",
3+
"version": "64.2.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,9 +7,12 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
77

88
## [Unreleased]
99

10+
## [64.2.0]
11+
1012
### Changed
1113

1214
- Bump `@metamask/transaction-controller` from `^62.5.0` to `^62.7.0` ([#7430](https://github.com/MetaMask/core/pull/7430), [#7494](https://github.com/MetaMask/core/pull/7494))
15+
- Bump `@metamask/bridge-controller` from `^64.1.0` to `^64.2.0` ([#7509](https://github.com/MetaMask/core/pull/7509))
1316

1417
## [64.1.0]
1518

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

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

829-
[Unreleased]: https://github.com/MetaMask/core/compare/@metamask/[email protected]
832+
[Unreleased]: https://github.com/MetaMask/core/compare/@metamask/[email protected]
833+
[64.2.0]: https://github.com/MetaMask/core/compare/@metamask/[email protected]...@metamask/[email protected]
830834
[64.1.0]: https://github.com/MetaMask/core/compare/@metamask/[email protected]...@metamask/[email protected]
831835
[64.0.1]: https://github.com/MetaMask/core/compare/@metamask/[email protected]...@metamask/[email protected]
832836
[64.0.0]: https://github.com/MetaMask/core/compare/@metamask/[email protected]...@metamask/[email protected]

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": "64.1.0",
3+
"version": "64.2.0",
44
"description": "Manages bridge-related status fetching functionality for MetaMask",
55
"keywords": [
66
"MetaMask",
@@ -50,7 +50,7 @@
5050
"dependencies": {
5151
"@metamask/accounts-controller": "^35.0.0",
5252
"@metamask/base-controller": "^9.0.0",
53-
"@metamask/bridge-controller": "^64.1.0",
53+
"@metamask/bridge-controller": "^64.2.0",
5454
"@metamask/controller-utils": "^11.16.0",
5555
"@metamask/gas-fee-controller": "^26.0.0",
5656
"@metamask/network-controller": "^27.0.0",

packages/transaction-pay-controller/CHANGELOG.md

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

1212
- Bump `@metamask/assets-controllers` from `^93.1.0` to `^94.1.0` ([#7444](https://github.com/MetaMask/core/pull/7444), [#7488](https://github.com/MetaMask/core/pull/7488))
1313
- Bump `@metamask/transaction-controller` from `^62.6.0` to `^62.7.0` ([#7494](https://github.com/MetaMask/core/pull/7494))
14+
- Bump `@metamask/bridge-controller` from `^64.1.0` to `^64.2.0` ([#7509](https://github.com/MetaMask/core/pull/7509))
1415

1516
## [10.5.0]
1617

packages/transaction-pay-controller/package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -53,8 +53,8 @@
5353
"@ethersproject/contracts": "^5.7.0",
5454
"@metamask/assets-controllers": "^94.1.0",
5555
"@metamask/base-controller": "^9.0.0",
56-
"@metamask/bridge-controller": "^64.1.0",
57-
"@metamask/bridge-status-controller": "^64.1.0",
56+
"@metamask/bridge-controller": "^64.2.0",
57+
"@metamask/bridge-status-controller": "^64.2.0",
5858
"@metamask/controller-utils": "^11.16.0",
5959
"@metamask/gas-fee-controller": "^26.0.0",
6060
"@metamask/messenger": "^0.3.0",

yarn.lock

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -2793,7 +2793,7 @@ __metadata:
27932793
languageName: unknown
27942794
linkType: soft
27952795

2796-
"@metamask/bridge-controller@npm:^64.1.0, @metamask/bridge-controller@workspace:packages/bridge-controller":
2796+
"@metamask/bridge-controller@npm:^64.2.0, @metamask/bridge-controller@workspace:packages/bridge-controller":
27972797
version: 0.0.0-use.local
27982798
resolution: "@metamask/bridge-controller@workspace:packages/bridge-controller"
27992799
dependencies:
@@ -2837,14 +2837,14 @@ __metadata:
28372837
languageName: unknown
28382838
linkType: soft
28392839

2840-
"@metamask/bridge-status-controller@npm:^64.1.0, @metamask/bridge-status-controller@workspace:packages/bridge-status-controller":
2840+
"@metamask/bridge-status-controller@npm:^64.2.0, @metamask/bridge-status-controller@workspace:packages/bridge-status-controller":
28412841
version: 0.0.0-use.local
28422842
resolution: "@metamask/bridge-status-controller@workspace:packages/bridge-status-controller"
28432843
dependencies:
28442844
"@metamask/accounts-controller": "npm:^35.0.0"
28452845
"@metamask/auto-changelog": "npm:^3.4.4"
28462846
"@metamask/base-controller": "npm:^9.0.0"
2847-
"@metamask/bridge-controller": "npm:^64.1.0"
2847+
"@metamask/bridge-controller": "npm:^64.2.0"
28482848
"@metamask/controller-utils": "npm:^11.16.0"
28492849
"@metamask/gas-fee-controller": "npm:^26.0.0"
28502850
"@metamask/network-controller": "npm:^27.0.0"
@@ -5100,8 +5100,8 @@ __metadata:
51005100
"@metamask/assets-controllers": "npm:^94.1.0"
51015101
"@metamask/auto-changelog": "npm:^3.4.4"
51025102
"@metamask/base-controller": "npm:^9.0.0"
5103-
"@metamask/bridge-controller": "npm:^64.1.0"
5104-
"@metamask/bridge-status-controller": "npm:^64.1.0"
5103+
"@metamask/bridge-controller": "npm:^64.2.0"
5104+
"@metamask/bridge-status-controller": "npm:^64.2.0"
51055105
"@metamask/controller-utils": "npm:^11.16.0"
51065106
"@metamask/gas-fee-controller": "npm:^26.0.0"
51075107
"@metamask/messenger": "npm:^0.3.0"

0 commit comments

Comments
 (0)