Skip to content

Commit b66ca79

Browse files
authored
Release/717.0.0 (#7437)
Patch release of the `multichain-account-service` to harden the EVM account discovery. <!-- CURSOR_SUMMARY --> --- > [!NOTE] > Publishes `@metamask/multichain-account-service` 4.0.1 with EVM discovery hardening and bumps dependents to use it. > > - **Services**: > - `@metamask/[email protected]` > - Harden EVM discovery against bad RPC responses. > - Update changelog and package version. > - **Controllers (dependents)**: > - `@metamask/account-tree-controller`: bump `@metamask/multichain-account-service` to `^4.0.1` and update changelog. > - `@metamask/assets-controllers`: bump `@metamask/multichain-account-service` to `^4.0.1` and update changelog. > - **Repo**: > - Bump root version to `717.0.0`. > - Refresh `yarn.lock`. > > <sup>Written by [Cursor Bugbot](https://cursor.com/dashboard?tab=bugbot) for commit f4ea7ed. This will update automatically on new commits. Configure [here](https://cursor.com/dashboard?tab=bugbot).</sup> <!-- /CURSOR_SUMMARY -->
1 parent 60229aa commit b66ca79

File tree

8 files changed

+13
-8
lines changed

8 files changed

+13
-8
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": "716.0.0",
3+
"version": "717.0.0",
44
"private": true,
55
"description": "Monorepo for packages shared between MetaMask clients",
66
"repository": {

packages/account-tree-controller/CHANGELOG.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -19,6 +19,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
1919
- In clients, it is now possible for multiple versions of these packages to exist in the dependency tree.
2020
- 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.
2121
- 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.
22+
- Bump `@metamask/multichain-account-service` from `^4.0.0` to `^4.0.1` ([#7437](https://github.com/MetaMask/core/pull/7437)
2223

2324
## [4.0.0]
2425

packages/account-tree-controller/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -52,7 +52,7 @@
5252
"@metamask/base-controller": "^9.0.0",
5353
"@metamask/keyring-controller": "^25.0.0",
5454
"@metamask/messenger": "^0.3.0",
55-
"@metamask/multichain-account-service": "^4.0.0",
55+
"@metamask/multichain-account-service": "^4.0.1",
5656
"@metamask/profile-sync-controller": "^27.0.0",
5757
"@metamask/snaps-controllers": "^14.0.1",
5858
"@metamask/snaps-sdk": "^9.0.0",

packages/assets-controllers/CHANGELOG.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -17,6 +17,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
1717
- Reduce severity of ERC721 metadata interface log from `console.error` to `console.warn` ([#7412](https://github.com/MetaMask/core/pull/7412))
1818
- Fixes [#24988](https://github.com/MetaMask/metamask-extension/issues/24988)
1919
- Bump `@metamask/transaction-controller` from `^62.4.0` to `^62.6.0` ([#7325](https://github.com/MetaMask/core/pull/7325), [#7430](https://github.com/MetaMask/core/pull/7430))
20+
- Bump `@metamask/multichain-account-service` from `^4.0.0` to `^4.0.1` ([#7437](https://github.com/MetaMask/core/pull/7437)
2021

2122
### Fixed
2223

packages/assets-controllers/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -67,7 +67,7 @@
6767
"@metamask/keyring-controller": "^25.0.0",
6868
"@metamask/messenger": "^0.3.0",
6969
"@metamask/metamask-eth-abis": "^3.1.1",
70-
"@metamask/multichain-account-service": "^4.0.0",
70+
"@metamask/multichain-account-service": "^4.0.1",
7171
"@metamask/network-controller": "^27.0.0",
7272
"@metamask/permission-controller": "^12.1.1",
7373
"@metamask/phishing-controller": "^16.1.0",

packages/multichain-account-service/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+
## [4.0.1]
11+
1012
### Changed
1113

1214
- Move peer dependencies for controller and service packages to direct dependencies ([#7209](https://github.com/MetaMask/core/pull/7209))
@@ -299,7 +301,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
299301
- Add `MultichainAccountService` ([#6141](https://github.com/MetaMask/core/pull/6141)), ([#6165](https://github.com/MetaMask/core/pull/6165))
300302
- This service manages multichain accounts/wallets.
301303

302-
[Unreleased]: https://github.com/MetaMask/core/compare/@metamask/[email protected]
304+
[Unreleased]: https://github.com/MetaMask/core/compare/@metamask/[email protected]
305+
[4.0.1]: https://github.com/MetaMask/core/compare/@metamask/[email protected]...@metamask/[email protected]
303306
[4.0.0]: https://github.com/MetaMask/core/compare/@metamask/[email protected]...@metamask/[email protected]
304307
[3.0.0]: https://github.com/MetaMask/core/compare/@metamask/[email protected]...@metamask/[email protected]
305308
[2.1.0]: https://github.com/MetaMask/core/compare/@metamask/[email protected]...@metamask/[email protected]

packages/multichain-account-service/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@metamask/multichain-account-service",
3-
"version": "4.0.0",
3+
"version": "4.0.1",
44
"description": "Service to manage multichain accounts",
55
"keywords": [
66
"MetaMask",

yarn.lock

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -2427,7 +2427,7 @@ __metadata:
24272427
"@metamask/keyring-api": "npm:^21.0.0"
24282428
"@metamask/keyring-controller": "npm:^25.0.0"
24292429
"@metamask/messenger": "npm:^0.3.0"
2430-
"@metamask/multichain-account-service": "npm:^4.0.0"
2430+
"@metamask/multichain-account-service": "npm:^4.0.1"
24312431
"@metamask/profile-sync-controller": "npm:^27.0.0"
24322432
"@metamask/providers": "npm:^22.1.0"
24332433
"@metamask/snaps-controllers": "npm:^14.0.1"
@@ -2651,7 +2651,7 @@ __metadata:
26512651
"@metamask/keyring-snap-client": "npm:^8.0.0"
26522652
"@metamask/messenger": "npm:^0.3.0"
26532653
"@metamask/metamask-eth-abis": "npm:^3.1.1"
2654-
"@metamask/multichain-account-service": "npm:^4.0.0"
2654+
"@metamask/multichain-account-service": "npm:^4.0.1"
26552655
"@metamask/network-controller": "npm:^27.0.0"
26562656
"@metamask/permission-controller": "npm:^12.1.1"
26572657
"@metamask/phishing-controller": "npm:^16.1.0"
@@ -4024,7 +4024,7 @@ __metadata:
40244024
languageName: node
40254025
linkType: hard
40264026

4027-
"@metamask/multichain-account-service@npm:^4.0.0, @metamask/multichain-account-service@workspace:packages/multichain-account-service":
4027+
"@metamask/multichain-account-service@npm:^4.0.1, @metamask/multichain-account-service@workspace:packages/multichain-account-service":
40284028
version: 0.0.0-use.local
40294029
resolution: "@metamask/multichain-account-service@workspace:packages/multichain-account-service"
40304030
dependencies:

0 commit comments

Comments
 (0)