Skip to content

Commit 1e14fed

Browse files
authored
Release/406.0.0 (#5845)
## 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 aims to release latest `transaction-controller` 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 --> ## 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 - [ ] 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
1 parent 7a55ad3 commit 1e14fed

File tree

9 files changed

+17
-14
lines changed

9 files changed

+17
-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": "405.0.0",
3+
"version": "406.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
@@ -90,7 +90,7 @@
9090
"@metamask/providers": "^21.0.0",
9191
"@metamask/snaps-controllers": "^11.2.1",
9292
"@metamask/snaps-sdk": "^6.22.0",
93-
"@metamask/transaction-controller": "^56.1.0",
93+
"@metamask/transaction-controller": "^56.2.0",
9494
"@types/jest": "^27.4.1",
9595
"@types/lodash": "^4.14.191",
9696
"@types/node": "^16.18.54",

packages/bridge-controller/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -72,7 +72,7 @@
7272
"@metamask/remote-feature-flag-controller": "^1.6.0",
7373
"@metamask/snaps-controllers": "^11.2.1",
7474
"@metamask/superstruct": "^3.1.0",
75-
"@metamask/transaction-controller": "^56.1.0",
75+
"@metamask/transaction-controller": "^56.2.0",
7676
"@types/jest": "^27.4.1",
7777
"deepmerge": "^4.2.2",
7878
"jest": "^27.5.1",

packages/bridge-status-controller/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -65,7 +65,7 @@
6565
"@metamask/multichain-transactions-controller": "^1.0.0",
6666
"@metamask/network-controller": "^23.5.0",
6767
"@metamask/snaps-controllers": "^11.2.1",
68-
"@metamask/transaction-controller": "^56.1.0",
68+
"@metamask/transaction-controller": "^56.2.0",
6969
"@types/jest": "^27.4.1",
7070
"deepmerge": "^4.2.2",
7171
"jest": "^27.5.1",

packages/earn-controller/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -56,7 +56,7 @@
5656
"@metamask/accounts-controller": "^29.0.0",
5757
"@metamask/auto-changelog": "^3.4.4",
5858
"@metamask/network-controller": "^23.5.0",
59-
"@metamask/transaction-controller": "^56.1.0",
59+
"@metamask/transaction-controller": "^56.2.0",
6060
"@types/jest": "^27.4.1",
6161
"deepmerge": "^4.2.2",
6262
"jest": "^27.5.1",

packages/transaction-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+
## [56.2.0]
11+
1012
### Added
1113

1214
- Add sequential batch support when `publishBatchHook` is not defined ([#5762](https://github.com/MetaMask/core/pull/5762))
@@ -1611,7 +1613,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
16111613
16121614
All changes listed after this point were applied to this package following the monorepo conversion.
16131615
1614-
[Unreleased]: https://github.com/MetaMask/core/compare/@metamask/[email protected]
1616+
[Unreleased]: https://github.com/MetaMask/core/compare/@metamask/[email protected]
1617+
[56.2.0]: https://github.com/MetaMask/core/compare/@metamask/[email protected]...@metamask/[email protected]
16151618
[56.1.0]: https://github.com/MetaMask/core/compare/@metamask/[email protected]...@metamask/[email protected]
16161619
[56.0.0]: https://github.com/MetaMask/core/compare/@metamask/[email protected]...@metamask/[email protected]
16171620
[55.0.2]: https://github.com/MetaMask/core/compare/@metamask/[email protected]...@metamask/[email protected]

packages/transaction-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/transaction-controller",
3-
"version": "56.1.0",
3+
"version": "56.2.0",
44
"description": "Stores transactions alongside their periodically updated statuses and manages interactions such as approval and cancellation",
55
"keywords": [
66
"MetaMask",

packages/user-operation-controller/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -67,7 +67,7 @@
6767
"@metamask/gas-fee-controller": "^23.0.0",
6868
"@metamask/keyring-controller": "^22.0.0",
6969
"@metamask/network-controller": "^23.5.0",
70-
"@metamask/transaction-controller": "^56.1.0",
70+
"@metamask/transaction-controller": "^56.2.0",
7171
"@types/jest": "^27.4.1",
7272
"deepmerge": "^4.2.2",
7373
"jest": "^27.5.1",

yarn.lock

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -2589,7 +2589,7 @@ __metadata:
25892589
"@metamask/snaps-controllers": "npm:^11.2.1"
25902590
"@metamask/snaps-sdk": "npm:^6.22.0"
25912591
"@metamask/snaps-utils": "npm:^9.2.0"
2592-
"@metamask/transaction-controller": "npm:^56.1.0"
2592+
"@metamask/transaction-controller": "npm:^56.2.0"
25932593
"@metamask/utils": "npm:^11.2.0"
25942594
"@types/bn.js": "npm:^5.1.5"
25952595
"@types/jest": "npm:^27.4.1"
@@ -2713,7 +2713,7 @@ __metadata:
27132713
"@metamask/remote-feature-flag-controller": "npm:^1.6.0"
27142714
"@metamask/snaps-controllers": "npm:^11.2.1"
27152715
"@metamask/superstruct": "npm:^3.1.0"
2716-
"@metamask/transaction-controller": "npm:^56.1.0"
2716+
"@metamask/transaction-controller": "npm:^56.2.0"
27172717
"@metamask/utils": "npm:^11.2.0"
27182718
"@types/jest": "npm:^27.4.1"
27192719
bignumber.js: "npm:^9.1.2"
@@ -2753,7 +2753,7 @@ __metadata:
27532753
"@metamask/polling-controller": "npm:^13.0.0"
27542754
"@metamask/snaps-controllers": "npm:^11.2.1"
27552755
"@metamask/superstruct": "npm:^3.1.0"
2756-
"@metamask/transaction-controller": "npm:^56.1.0"
2756+
"@metamask/transaction-controller": "npm:^56.2.0"
27572757
"@metamask/user-operation-controller": "npm:^35.0.0"
27582758
"@metamask/utils": "npm:^11.2.0"
27592759
"@types/jest": "npm:^27.4.1"
@@ -3005,7 +3005,7 @@ __metadata:
30053005
"@metamask/controller-utils": "npm:^11.9.0"
30063006
"@metamask/network-controller": "npm:^23.5.0"
30073007
"@metamask/stake-sdk": "npm:^1.0.0"
3008-
"@metamask/transaction-controller": "npm:^56.1.0"
3008+
"@metamask/transaction-controller": "npm:^56.2.0"
30093009
"@types/jest": "npm:^27.4.1"
30103010
deepmerge: "npm:^4.2.2"
30113011
jest: "npm:^27.5.1"
@@ -4460,7 +4460,7 @@ __metadata:
44604460
languageName: unknown
44614461
linkType: soft
44624462

4463-
"@metamask/transaction-controller@npm:^56.1.0, @metamask/transaction-controller@workspace:packages/transaction-controller":
4463+
"@metamask/transaction-controller@npm:^56.2.0, @metamask/transaction-controller@workspace:packages/transaction-controller":
44644464
version: 0.0.0-use.local
44654465
resolution: "@metamask/transaction-controller@workspace:packages/transaction-controller"
44664466
dependencies:
@@ -4533,7 +4533,7 @@ __metadata:
45334533
"@metamask/polling-controller": "npm:^13.0.0"
45344534
"@metamask/rpc-errors": "npm:^7.0.2"
45354535
"@metamask/superstruct": "npm:^3.1.0"
4536-
"@metamask/transaction-controller": "npm:^56.1.0"
4536+
"@metamask/transaction-controller": "npm:^56.2.0"
45374537
"@metamask/utils": "npm:^11.2.0"
45384538
"@types/jest": "npm:^27.4.1"
45394539
bn.js: "npm:^5.2.1"

0 commit comments

Comments
 (0)