Skip to content

Commit 74c4d24

Browse files
Release/622.0.0 (#6841)
## Explanation Release `@metamask/[email protected]`. <!-- 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/[email protected] (adds `txMeta` to `GetSimulationConfig`) and update all dependent packages; bump monorepo version to 622.0.0. > > - **Release** > - Bump monorepo version to `622.0.0`. > - **`@metamask/transaction-controller`** > - Version `60.7.0`; changelog entry adds `txMeta` to `GetSimulationConfig` and updates compare links. > - **Dependents updated to `^60.7.0`** > - `@metamask/assets-controllers`, `bridge-controller`, `bridge-status-controller`, `earn-controller`, `eip-5792-middleware`, `network-enablement-controller`, `phishing-controller`, `shield-controller`, `user-operation-controller` (deps/devDeps). > - **Lockfile** > - `yarn.lock` updated accordingly. > > <sup>Written by [Cursor Bugbot](https://cursor.com/dashboard?tab=bugbot) for commit ef0a09e. This will update automatically on new commits. Configure [here](https://cursor.com/dashboard?tab=bugbot).</sup> <!-- /CURSOR_SUMMARY -->
1 parent ba91843 commit 74c4d24

File tree

14 files changed

+29
-22
lines changed

14 files changed

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

packages/assets-controllers/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -96,7 +96,7 @@
9696
"@metamask/preferences-controller": "^20.0.2",
9797
"@metamask/providers": "^22.1.0",
9898
"@metamask/snaps-controllers": "^14.0.1",
99-
"@metamask/transaction-controller": "^60.6.1",
99+
"@metamask/transaction-controller": "^60.7.0",
100100
"@types/jest": "^27.4.1",
101101
"@types/lodash": "^4.14.191",
102102
"@types/node": "^16.18.54",

packages/bridge-controller/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -74,7 +74,7 @@
7474
"@metamask/remote-feature-flag-controller": "^1.9.0",
7575
"@metamask/snaps-controllers": "^14.0.1",
7676
"@metamask/superstruct": "^3.1.0",
77-
"@metamask/transaction-controller": "^60.6.1",
77+
"@metamask/transaction-controller": "^60.7.0",
7878
"@types/jest": "^27.4.1",
7979
"deepmerge": "^4.2.2",
8080
"jest": "^27.5.1",

packages/bridge-status-controller/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -62,7 +62,7 @@
6262
"@metamask/gas-fee-controller": "^24.1.0",
6363
"@metamask/network-controller": "^24.2.1",
6464
"@metamask/snaps-controllers": "^14.0.1",
65-
"@metamask/transaction-controller": "^60.6.1",
65+
"@metamask/transaction-controller": "^60.7.0",
6666
"@types/jest": "^27.4.1",
6767
"deepmerge": "^4.2.2",
6868
"jest": "^27.5.1",

packages/earn-controller/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -59,7 +59,7 @@
5959
"@metamask/account-tree-controller": "^1.5.0",
6060
"@metamask/auto-changelog": "^3.4.4",
6161
"@metamask/network-controller": "^24.2.1",
62-
"@metamask/transaction-controller": "^60.6.1",
62+
"@metamask/transaction-controller": "^60.7.0",
6363
"@types/jest": "^27.4.1",
6464
"deepmerge": "^4.2.2",
6565
"jest": "^27.5.1",

packages/eip-5792-middleware/CHANGELOG.md

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

88
## [Unreleased]
99

10+
### Changed
11+
12+
- Bump `@metamask/transaction-controller` from `^60.6.1` to `^60.7.0` ([#6841](https://github.com/MetaMask/core/pull/6841))
13+
1014
## [1.2.2]
1115

1216
### Changed

packages/eip-5792-middleware/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -48,7 +48,7 @@
4848
},
4949
"dependencies": {
5050
"@metamask/superstruct": "^3.1.0",
51-
"@metamask/transaction-controller": "^60.6.1",
51+
"@metamask/transaction-controller": "^60.7.0",
5252
"@metamask/utils": "^11.8.1",
5353
"lodash": "^4.17.21",
5454
"uuid": "^8.3.2"

packages/network-enablement-controller/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -50,7 +50,7 @@
5050
"@metamask/auto-changelog": "^3.4.4",
5151
"@metamask/multichain-network-controller": "^1.0.1",
5252
"@metamask/network-controller": "^24.2.1",
53-
"@metamask/transaction-controller": "^60.6.1",
53+
"@metamask/transaction-controller": "^60.7.0",
5454
"@types/jest": "^27.4.1",
5555
"deepmerge": "^4.2.2",
5656
"jest": "^27.5.1",

packages/phishing-controller/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -57,7 +57,7 @@
5757
},
5858
"devDependencies": {
5959
"@metamask/auto-changelog": "^3.4.4",
60-
"@metamask/transaction-controller": "^60.6.1",
60+
"@metamask/transaction-controller": "^60.7.0",
6161
"@types/jest": "^27.4.1",
6262
"deepmerge": "^4.2.2",
6363
"jest": "^27.5.1",

packages/shield-controller/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -56,7 +56,7 @@
5656
"@lavamoat/preinstall-always-fail": "^2.1.0",
5757
"@metamask/auto-changelog": "^3.4.4",
5858
"@metamask/signature-controller": "^34.0.1",
59-
"@metamask/transaction-controller": "^60.6.1",
59+
"@metamask/transaction-controller": "^60.7.0",
6060
"@ts-bridge/cli": "^0.6.1",
6161
"@types/jest": "^27.4.1",
6262
"deepmerge": "^4.2.2",

0 commit comments

Comments
 (0)