Skip to content

Commit 6410b13

Browse files
authored
Release/724.0.0 (#7494)
## 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? --> ## 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 724.0.0, adding `requestId` to transaction meta (transaction-controller 62.7.0) and updating dependent packages; also releases `@metamask/eip-5792-middleware` 2.1.0 and minor assets export. > > - **Transaction Controller (`@metamask/transaction-controller@62.7.0`)** > - Add `requestId` to transaction meta; update changelog/links. > - **Package updates to `^62.7.0`** > - `@metamask/assets-controllers`, `@metamask/bridge-controller`, `@metamask/bridge-status-controller`, `@metamask/eip-5792-middleware`, `@metamask/gator-permissions-controller`, `@metamask/network-enablement-controller`, `@metamask/phishing-controller`, `@metamask/shield-controller`, `@metamask/subscription-controller`, `@metamask/transaction-pay-controller`, `@metamask/user-operation-controller`, `@metamask/earn-controller` (dev), and monorepo `yarn.lock`. > - **`@metamask/eip-5792-middleware@2.1.0`** > - Pass JSON‑RPC request id into batched transactions; bump to `^62.7.0`. > - **Assets Controllers** > - Export `selectAllAssets`; bump `transaction-controller` to `^62.7.0`. > - **Repo** > - Bump root version to `724.0.0`. > > <sup>Written by [Cursor Bugbot](https://cursor.com/dashboard?tab=bugbot) for commit a9996d2. This will update automatically on new commits. Configure [here](https://cursor.com/dashboard?tab=bugbot).</sup> <!-- /CURSOR_SUMMARY -->
1 parent e1f8e9c commit 6410b13

File tree

27 files changed

+53
-41
lines changed

27 files changed

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

packages/assets-controllers/CHANGELOG.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -20,6 +20,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
2020
- `KeyringController:unlock` event now only updates lock state without triggering immediate refresh
2121
- `KeyringController:lock` event sets controller to inactive state
2222
- `AccountTrackerController` now only refreshes balances for the newly added network on `NetworkController:networkAdded` event instead of all networks ([#7492](https://github.com/MetaMask/core/pull/7492))
23+
- Bump `@metamask/transaction-controller` from `^62.5.0` to `^62.7.0` ([#7494](https://github.com/MetaMask/core/pull/7494))
2324

2425
## [94.1.0]
2526

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.6.0",
81+
"@metamask/transaction-controller": "^62.7.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: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
1010
### Changed
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))
13-
- Bump `@metamask/transaction-controller` from `^62.5.0` to `^62.6.0` ([#7430](https://github.com/MetaMask/core/pull/7430))
13+
- 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))
1414

1515
## [64.1.0]
1616

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": "^3.0.0",
6868
"@metamask/snaps-controllers": "^14.0.1",
69-
"@metamask/transaction-controller": "^62.6.0",
69+
"@metamask/transaction-controller": "^62.7.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: 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 `^62.5.0` to `^62.6.0` ([#7430](https://github.com/MetaMask/core/pull/7430))
12+
- 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))
1313

1414
## [64.1.0]
1515

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.6.0",
60+
"@metamask/transaction-controller": "^62.7.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.6.0",
64+
"@metamask/transaction-controller": "^62.7.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: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,13 +7,15 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
77

88
## [Unreleased]
99

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

1214
- Id of JSON RPC request is passed to functions to create batched transaction, id is thus added to transaction meta ([#7415](https://github.com/MetaMask/core/pull/7415))
1315

1416
### Changed
1517

16-
- Bump `@metamask/transaction-controller` from `^61.3.0` to `^62.6.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), [#7236](https://github.com/MetaMask/core/pull/7236), [#7257](https://github.com/MetaMask/core/pull/7257), [#7289](https://github.com/MetaMask/core/pull/7289), [#7325](https://github.com/MetaMask/core/pull/7325), [#7430](https://github.com/MetaMask/core/pull/7430))
18+
- Bump `@metamask/transaction-controller` from `^61.3.0` to `^62.7.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), [#7236](https://github.com/MetaMask/core/pull/7236), [#7257](https://github.com/MetaMask/core/pull/7257), [#7289](https://github.com/MetaMask/core/pull/7289), [#7325](https://github.com/MetaMask/core/pull/7325), [#7430](https://github.com/MetaMask/core/pull/7430), [#7494](https://github.com/MetaMask/core/pull/7494))
1719

1820
## [2.0.0]
1921

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

7173
- Initial release ([#6458](https://github.com/MetaMask/core/pull/6458))
7274

73-
[Unreleased]: https://github.com/MetaMask/core/compare/@metamask/eip-5792-middleware@2.0.0...HEAD
75+
[Unreleased]: https://github.com/MetaMask/core/compare/@metamask/eip-5792-middleware@2.1.0...HEAD
76+
[2.1.0]: https://github.com/MetaMask/core/compare/@metamask/eip-5792-middleware@2.0.0...@metamask/eip-5792-middleware@2.1.0
7477
[2.0.0]: https://github.com/MetaMask/core/compare/@metamask/eip-5792-middleware@1.2.4...@metamask/eip-5792-middleware@2.0.0
7578
[1.2.4]: https://github.com/MetaMask/core/compare/@metamask/eip-5792-middleware@1.2.3...@metamask/eip-5792-middleware@1.2.4
7679
[1.2.3]: https://github.com/MetaMask/core/compare/@metamask/eip-5792-middleware@1.2.2...@metamask/eip-5792-middleware@1.2.3

packages/eip-5792-middleware/package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@metamask/eip-5792-middleware",
3-
"version": "2.0.0",
3+
"version": "2.1.0",
44
"description": "Implements the JSON-RPC methods for sending multiple calls from the user's wallet, and checking their status, as referenced in EIP-5792",
55
"keywords": [
66
"MetaMask",
@@ -50,7 +50,7 @@
5050
"dependencies": {
5151
"@metamask/messenger": "^0.3.0",
5252
"@metamask/superstruct": "^3.1.0",
53-
"@metamask/transaction-controller": "^62.6.0",
53+
"@metamask/transaction-controller": "^62.7.0",
5454
"@metamask/utils": "^11.8.1",
5555
"lodash": "^4.17.21",
5656
"uuid": "^8.3.2"

0 commit comments

Comments
 (0)