Skip to content

Commit aeed98a

Browse files
authored
Release/691.0.0 (#7220)
## 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 release of @metamask/transaction-controller. Added `musdConversion` transaction type. ## 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] > Releases 691.0.0, publishing @metamask/transaction-controller 62.2.0 (adds `musdConversion` type) and updating all dependents to ^62.2.0 with corresponding changelog entries. > > - **Core** > - Bump monorepo version to `691.0.0`. > - **Transaction Controller** > - Release `@metamask/[email protected]` adding `musdConversion` transaction type. > - **Dependents updated to `^62.2.0`** > - `@metamask/assets-controllers`, `bridge-controller`, `bridge-status-controller`, `eip-5792-middleware`, `gator-permissions-controller`, `network-enablement-controller`, `phishing-controller`, `shield-controller`, `subscription-controller`, `transaction-pay-controller`, `user-operation-controller`, and devDep in `earn-controller`. > - **Changelogs** > - Note dependency bumps and continued migration of peer deps to direct deps (refs `#7209`, `#7220`). > > <sup>Written by [Cursor Bugbot](https://cursor.com/dashboard?tab=bugbot) for commit b7997e5. This will update automatically on new commits. Configure [here](https://cursor.com/dashboard?tab=bugbot).</sup> <!-- /CURSOR_SUMMARY -->
1 parent 0bf6c6c commit aeed98a

File tree

27 files changed

+53
-46
lines changed

27 files changed

+53
-46
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": "690.0.0",
3+
"version": "691.0.0",
44
"private": true,
55
"description": "Monorepo for packages shared between MetaMask clients",
66
"repository": {

packages/assets-controllers/CHANGELOG.md

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

1919
### Changed
2020

21-
- Move peer dependencies for controller and service packages to direct dependencies ([#7209](https://github.com/MetaMask/core/pull/7209))
21+
- Move peer dependencies for controller and service packages to direct dependencies ([#7209](https://github.com/MetaMask/core/pull/7209), [#7220](https://github.com/MetaMask/core/pull/7220))
2222
- The dependencies moved are:
2323
- `@metamask/account-tree-controller` (^4.0.0)
2424
- `@metamask/accounts-controller` (^35.0.0)
@@ -32,7 +32,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
3232
- `@metamask/preferences-controller` (^22.0.0)
3333
- `@metamask/profile-sync-controller` (^27.0.0)
3434
- `@metamask/snaps-controllers` (^14.0.1)
35-
- `@metamask/transaction-controller` (^62.1.0)
35+
- `@metamask/transaction-controller` (^62.2.0)
3636
- In clients, it is now possible for multiple versions of these packages to exist in the dependency tree.
3737
- For example, this scenario would be valid: a client relies on `@metamask/controller-a` 1.0.0 and `@metamask/controller-b` 1.0.0, and `@metamask/controller-b` depends on `@metamask/controller-a` 1.1.0.
3838
- Note, however, that the versions specified in the client's `package.json` always "win", and you are expected to keep them up to date so as not to break controller and service intercommunication.

packages/assets-controllers/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -78,7 +78,7 @@
7878
"@metamask/snaps-controllers": "^14.0.1",
7979
"@metamask/snaps-sdk": "^9.0.0",
8080
"@metamask/snaps-utils": "^11.0.0",
81-
"@metamask/transaction-controller": "^62.1.0",
81+
"@metamask/transaction-controller": "^62.2.0",
8282
"@metamask/utils": "^11.8.1",
8383
"@types/bn.js": "^5.1.5",
8484
"@types/uuid": "^8.3.0",

packages/bridge-controller/CHANGELOG.md

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

1010
### Changed
1111

12-
- Move peer dependencies for controller and service packages to direct dependencies ([#7209](https://github.com/MetaMask/core/pull/7209))
12+
- Move peer dependencies for controller and service packages to direct dependencies ([#7209](https://github.com/MetaMask/core/pull/7209), [#7220](https://github.com/MetaMask/core/pull/7220))
1313
- The dependencies moved are:
1414
- `@metamask/accounts-controller` (^35.0.0)
1515
- `@metamask/assets-controllers` (^91.0.0)
1616
- `@metamask/network-controller` (^26.0.0)
1717
- `@metamask/remote-feature-flag-controller` (^2.0.1)
1818
- `@metamask/snaps-controllers` (^14.0.0)
19-
- `@metamask/transaction-controller` (^62.1.0)
19+
- `@metamask/transaction-controller` (^62.2.0)
2020
- In clients, it is now possible for multiple versions of these packages to exist in the dependency tree.
2121
- For example, this scenario would be valid: a client relies on `@metamask/controller-a` 1.0.0 and `@metamask/controller-b` 1.0.0, and `@metamask/controller-b` depends on `@metamask/controller-a` 1.1.0.
2222
- Note, however, that the versions specified in the client's `package.json` always "win", and you are expected to keep them up to date so as not to break controller and service intercommunication.

packages/bridge-controller/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -66,7 +66,7 @@
6666
"@metamask/polling-controller": "^16.0.0",
6767
"@metamask/remote-feature-flag-controller": "^2.0.1",
6868
"@metamask/snaps-controllers": "^14.0.1",
69-
"@metamask/transaction-controller": "^62.1.0",
69+
"@metamask/transaction-controller": "^62.2.0",
7070
"@metamask/utils": "^11.8.1",
7171
"bignumber.js": "^9.1.2",
7272
"reselect": "^5.1.1",

packages/bridge-status-controller/CHANGELOG.md

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

1010
### Changed
1111

12-
- Move peer dependencies for controller and service packages to direct dependencies ([#7209](https://github.com/MetaMask/core/pull/7209))
12+
- Move peer dependencies for controller and service packages to direct dependencies ([#7209](https://github.com/MetaMask/core/pull/7209), [#7220](https://github.com/MetaMask/core/pull/7220))
1313
- The dependencies moved are:
1414
- `@metamask/accounts-controller` (^35.0.0)
1515
- `@metamask/bridge-controller` (^63.0.0)
1616
- `@metamask/gas-fee-controller` (^26.0.0)
1717
- `@metamask/network-controller` (^26.0.0)
1818
- `@metamask/snaps-controllers` (^14.0.1)
19-
- `@metamask/transaction-controller` (^62.1.0)
19+
- `@metamask/transaction-controller` (^62.2.0)
2020
- In clients, it is now possible for multiple versions of these packages to exist in the dependency tree.
2121
- For example, this scenario would be valid: a client relies on `@metamask/controller-a` 1.0.0 and `@metamask/controller-b` 1.0.0, and `@metamask/controller-b` depends on `@metamask/controller-a` 1.1.0.
2222
- Note, however, that the versions specified in the client's `package.json` always "win", and you are expected to keep them up to date so as not to break controller and service intercommunication.

packages/bridge-status-controller/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -57,7 +57,7 @@
5757
"@metamask/polling-controller": "^16.0.0",
5858
"@metamask/snaps-controllers": "^14.0.1",
5959
"@metamask/superstruct": "^3.1.0",
60-
"@metamask/transaction-controller": "^62.1.0",
60+
"@metamask/transaction-controller": "^62.2.0",
6161
"@metamask/utils": "^11.8.1",
6262
"bignumber.js": "^9.1.2",
6363
"uuid": "^8.3.2"

packages/earn-controller/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -61,7 +61,7 @@
6161
},
6262
"devDependencies": {
6363
"@metamask/auto-changelog": "^3.4.4",
64-
"@metamask/transaction-controller": "^62.1.0",
64+
"@metamask/transaction-controller": "^62.2.0",
6565
"@ts-bridge/cli": "^0.6.4",
6666
"@types/jest": "^27.4.1",
6767
"deepmerge": "^4.2.2",

packages/eip-5792-middleware/CHANGELOG.md

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

1010
### Changed
1111

12-
- Bump `@metamask/transaction-controller` from `^61.3.0` to `^62.1.0` ([#7007](https://github.com/MetaMask/core/pull/7007), [#7126](https://github.com/MetaMask/core/pull/7126), [#7153](https://github.com/MetaMask/core/pull/7153), [#7202](https://github.com/MetaMask/core/pull/7202), [#7215](https://github.com/MetaMask/core/pull/7202))
12+
- Bump `@metamask/transaction-controller` from `^61.3.0` to `^62.2.0` ([#7007](https://github.com/MetaMask/core/pull/7007), [#7126](https://github.com/MetaMask/core/pull/7126), [#7153](https://github.com/MetaMask/core/pull/7153), [#7202](https://github.com/MetaMask/core/pull/7202), [#7215](https://github.com/MetaMask/core/pull/7202), [#7220](https://github.com/MetaMask/core/pull/7220))
1313

1414
## [2.0.0]
1515

packages/eip-5792-middleware/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -50,7 +50,7 @@
5050
"dependencies": {
5151
"@metamask/messenger": "^0.3.0",
5252
"@metamask/superstruct": "^3.1.0",
53-
"@metamask/transaction-controller": "^62.1.0",
53+
"@metamask/transaction-controller": "^62.2.0",
5454
"@metamask/utils": "^11.8.1",
5555
"lodash": "^4.17.21",
5656
"uuid": "^8.3.2"

0 commit comments

Comments
 (0)