Skip to content

Commit 1cb03b9

Browse files
authored
Release 625.0.0 (#6883)
## Explanation This is the release candidate for version `625.0.0`. ## 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 625.0.0: upgrades eth-block-tracker to v14, eth-json-rpc-middleware to v21, network-controller to v24.3, and transaction-controller to v60.8 with feature additions; propagates related version bumps across packages. > > - **Release 625.0.0** > - **Dependency upgrades**: > - `@metamask/eth-block-tracker` → `^14.0.0` (BREAKING: Node >= 18.18) > - `@metamask/eth-json-rpc-middleware` → `^21.0.0` > - `@metamask/network-controller` → `24.3.0` (bumps to middleware `^21` and block-tracker `^14`) > - `@metamask/transaction-controller` → `60.8.0` > - Adds EIP-7702 conversion on publish when `batchTransactions` set > - Adds `MONAD` network support > - Updates deps (incl. block-tracker `^14`) > - `@metamask/user-operation-controller` → `39.2.0` (bumps block-tracker `^14`, network-controller `^24.3`, transaction-controller `^60.8`) > - **Propagated bumps**: Update many packages to use `@metamask/network-controller@^24.3.0` and `@metamask/transaction-controller@^60.8.0`. > - **Changelogs**: Reflect new versions and updated comparison links across affected packages. > > <sup>Written by [Cursor Bugbot](https://cursor.com/dashboard?tab=bugbot) for commit 71a847c. This will update automatically on new commits. Configure [here](https://cursor.com/dashboard?tab=bugbot).</sup> <!-- /CURSOR_SUMMARY -->
1 parent 04ef362 commit 1cb03b9

File tree

48 files changed

+179
-88
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

48 files changed

+179
-88
lines changed

package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@metamask/core-monorepo",
3-
"version": "624.0.0",
3+
"version": "625.0.0",
44
"private": true,
55
"description": "Monorepo for packages shared between MetaMask clients",
66
"repository": {
@@ -60,7 +60,7 @@
6060
"@metamask/eslint-config-jest": "^14.0.0",
6161
"@metamask/eslint-config-nodejs": "^14.0.0",
6262
"@metamask/eslint-config-typescript": "^14.0.0",
63-
"@metamask/eth-block-tracker": "^13.0.0",
63+
"@metamask/eth-block-tracker": "^14.0.0",
6464
"@metamask/eth-json-rpc-provider": "^5.0.1",
6565
"@metamask/json-rpc-engine": "^10.1.1",
6666
"@metamask/utils": "^11.8.1",

packages/accounts-controller/CHANGELOG.md

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

1414
- Bump `@metamask/utils` from `^11.4.2` to `^11.8.1` ([#6588](https://github.com/MetaMask/core/pull/6588), [#6708](https://github.com/MetaMask/core/pull/6708))
1515
- Bump `@metamask/base-controller` from `^8.3.0` to `^8.4.1` ([#6632](https://github.com/MetaMask/core/pull/6632), [#6807](https://github.com/MetaMask/core/pull/6807))
16+
- Bump `@metamask/network-controller` from `^24.2.2` to `^24.3.0` ([#6883](https://github.com/MetaMask/core/pull/6883))
1617

1718
## [33.1.0]
1819

packages/accounts-controller/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -67,7 +67,7 @@
6767
"@metamask/auto-changelog": "^3.4.4",
6868
"@metamask/controller-utils": "^11.14.1",
6969
"@metamask/keyring-controller": "^23.1.1",
70-
"@metamask/network-controller": "^24.2.2",
70+
"@metamask/network-controller": "^24.3.0",
7171
"@metamask/providers": "^22.1.0",
7272
"@metamask/snaps-controllers": "^14.0.1",
7373
"@types/jest": "^27.4.1",

packages/assets-controllers/CHANGELOG.md

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

88
## [Unreleased]
99

10+
### Changed
11+
12+
- Bump `@metamask/network-controller` from `^24.2.2` to `^24.3.0` ([#6883](https://github.com/MetaMask/core/pull/6883))
13+
- Bump `@metamask/transaction-controller` from `^60.7.0` to `^60.8.0` ([#6883](https://github.com/MetaMask/core/pull/6883))
14+
1015
### Fixed
1116

1217
- Fix filter for staked Ethereum balances in `AccountTrackerController` ([#6846](https://github.com/MetaMask/core/pull/6846))

packages/assets-controllers/package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -90,13 +90,13 @@
9090
"@metamask/keyring-internal-api": "^9.0.0",
9191
"@metamask/keyring-snap-client": "^8.0.0",
9292
"@metamask/multichain-account-service": "^1.6.1",
93-
"@metamask/network-controller": "^24.2.2",
93+
"@metamask/network-controller": "^24.3.0",
9494
"@metamask/permission-controller": "^11.1.0",
9595
"@metamask/phishing-controller": "^14.1.2",
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.7.0",
99+
"@metamask/transaction-controller": "^60.8.0",
100100
"@types/jest": "^27.4.1",
101101
"@types/lodash": "^4.14.191",
102102
"@types/node": "^16.18.54",

packages/bridge-controller/CHANGELOG.md

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

88
## [Unreleased]
99

10+
### Changed
11+
12+
- Bump `@metamask/network-controller` from `^24.2.2` to `^24.3.0` ([#6883](https://github.com/MetaMask/core/pull/6883))
13+
- Bump `@metamask/transaction-controller` from `^60.7.0` to `^60.8.0` ([#6883](https://github.com/MetaMask/core/pull/6883))
14+
1015
## [52.0.0]
1116

1217
### Changed

packages/bridge-controller/package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -70,11 +70,11 @@
7070
"@metamask/assets-controllers": "^81.0.0",
7171
"@metamask/auto-changelog": "^3.4.4",
7272
"@metamask/eth-json-rpc-provider": "^5.0.1",
73-
"@metamask/network-controller": "^24.2.2",
73+
"@metamask/network-controller": "^24.3.0",
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.7.0",
77+
"@metamask/transaction-controller": "^60.8.0",
7878
"@types/jest": "^27.4.1",
7979
"deepmerge": "^4.2.2",
8080
"jest": "^27.5.1",

packages/bridge-status-controller/CHANGELOG.md

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

88
## [Unreleased]
99

10+
### Changed
11+
12+
- Bump `@metamask/network-controller` from `^24.2.2` to `^24.3.0` ([#6883](https://github.com/MetaMask/core/pull/6883))
13+
- Bump `@metamask/transaction-controller` from `^60.7.0` to `^60.8.0` ([#6883](https://github.com/MetaMask/core/pull/6883))
14+
1015
## [51.0.0]
1116

1217
### Changed

packages/bridge-status-controller/package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -60,9 +60,9 @@
6060
"@metamask/auto-changelog": "^3.4.4",
6161
"@metamask/bridge-controller": "^52.0.0",
6262
"@metamask/gas-fee-controller": "^24.1.0",
63-
"@metamask/network-controller": "^24.2.2",
63+
"@metamask/network-controller": "^24.3.0",
6464
"@metamask/snaps-controllers": "^14.0.1",
65-
"@metamask/transaction-controller": "^60.7.0",
65+
"@metamask/transaction-controller": "^60.8.0",
6666
"@types/jest": "^27.4.1",
6767
"deepmerge": "^4.2.2",
6868
"jest": "^27.5.1",

packages/chain-agnostic-permission/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/network-controller` from `^24.2.1` to `^24.2.1` ([#6845](https://github.com/MetaMask/core/pull/6845))
12+
- Bump `@metamask/network-controller` from `^24.2.1` to `^24.3.0` ([#6845](https://github.com/MetaMask/core/pull/6845), [#6883](https://github.com/MetaMask/core/pull/6883))
1313

1414
## [1.2.0]
1515

0 commit comments

Comments
 (0)