Skip to content

Commit 567e202

Browse files
authored
Release/564.0.0 (#6653)
Minor releases of both the `account-tree-controller` and `multichain-account-services` which includes: - Solana discovery timeout and retry mechanism - Custom account provider configurations - Prevent single backup & sync enqueues during full-sync - Prevent temporary EVM account creation during EVM discovery
1 parent 6af673b commit 567e202

File tree

8 files changed

+21
-15
lines changed

8 files changed

+21
-15
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": "563.0.0",
3+
"version": "564.0.0",
44
"private": true,
55
"description": "Monorepo for packages shared between MetaMask clients",
66
"repository": {

packages/account-tree-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+
## [0.17.0]
11+
1012
### Changed
1113

1214
- Single group sync events will not get enqueued anymore if a full sync is in progress ([#6651](https://github.com/MetaMask/core/pull/6651))
@@ -261,7 +263,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
261263
- Initial release ([#5847](https://github.com/MetaMask/core/pull/5847))
262264
- Grouping accounts into 3 main categories: Entropy source, Snap ID, keyring types.
263265

264-
[Unreleased]: https://github.com/MetaMask/core/compare/@metamask/account-tree-controller@0.16.1...HEAD
266+
[Unreleased]: https://github.com/MetaMask/core/compare/@metamask/account-tree-controller@0.17.0...HEAD
267+
[0.17.0]: https://github.com/MetaMask/core/compare/@metamask/account-tree-controller@0.16.1...@metamask/account-tree-controller@0.17.0
265268
[0.16.1]: https://github.com/MetaMask/core/compare/@metamask/account-tree-controller@0.16.0...@metamask/account-tree-controller@0.16.1
266269
[0.16.0]: https://github.com/MetaMask/core/compare/@metamask/account-tree-controller@0.15.1...@metamask/account-tree-controller@0.16.0
267270
[0.15.1]: https://github.com/MetaMask/core/compare/@metamask/account-tree-controller@0.15.0...@metamask/account-tree-controller@0.15.1

packages/account-tree-controller/package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@metamask/account-tree-controller",
3-
"version": "0.16.1",
3+
"version": "0.17.0",
44
"description": "Controller to group account together based on some pre-defined rules",
55
"keywords": [
66
"MetaMask",
@@ -61,7 +61,7 @@
6161
"@metamask/auto-changelog": "^3.4.4",
6262
"@metamask/keyring-api": "^21.0.0",
6363
"@metamask/keyring-controller": "^23.1.0",
64-
"@metamask/multichain-account-service": "^0.9.0",
64+
"@metamask/multichain-account-service": "^0.10.0",
6565
"@metamask/profile-sync-controller": "^25.0.0",
6666
"@metamask/providers": "^22.1.0",
6767
"@metamask/snaps-controllers": "^14.0.1",

packages/assets-controllers/package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -80,15 +80,15 @@
8080
"devDependencies": {
8181
"@babel/runtime": "^7.23.9",
8282
"@metamask/account-api": "^0.12.0",
83-
"@metamask/account-tree-controller": "^0.16.1",
83+
"@metamask/account-tree-controller": "^0.17.0",
8484
"@metamask/accounts-controller": "^33.1.0",
8585
"@metamask/approval-controller": "^7.1.3",
8686
"@metamask/auto-changelog": "^3.4.4",
8787
"@metamask/ethjs-provider-http": "^0.3.0",
8888
"@metamask/keyring-controller": "^23.1.0",
8989
"@metamask/keyring-internal-api": "^9.0.0",
9090
"@metamask/keyring-snap-client": "^8.0.0",
91-
"@metamask/multichain-account-service": "^0.9.0",
91+
"@metamask/multichain-account-service": "^0.10.0",
9292
"@metamask/network-controller": "^24.1.0",
9393
"@metamask/permission-controller": "^11.0.6",
9494
"@metamask/phishing-controller": "^13.1.0",

packages/earn-controller/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -56,7 +56,7 @@
5656
"reselect": "^5.1.1"
5757
},
5858
"devDependencies": {
59-
"@metamask/account-tree-controller": "^0.16.1",
59+
"@metamask/account-tree-controller": "^0.17.0",
6060
"@metamask/auto-changelog": "^3.4.4",
6161
"@metamask/network-controller": "^24.1.0",
6262
"@metamask/transaction-controller": "^60.4.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+
## [0.10.0]
11+
1012
### Added
1113

1214
- Add timeout and retry mechanism to Solana discovery ([#6624](https://github.com/MetaMask/core/pull/6624))
@@ -162,7 +164,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
162164
- Add `MultichainAccountService` ([#6141](https://github.com/MetaMask/core/pull/6141)), ([#6165](https://github.com/MetaMask/core/pull/6165))
163165
- This service manages multichain accounts/wallets.
164166

165-
[Unreleased]: https://github.com/MetaMask/core/compare/@metamask/multichain-account-service@0.9.0...HEAD
167+
[Unreleased]: https://github.com/MetaMask/core/compare/@metamask/multichain-account-service@0.10.0...HEAD
168+
[0.10.0]: https://github.com/MetaMask/core/compare/@metamask/multichain-account-service@0.9.0...@metamask/multichain-account-service@0.10.0
166169
[0.9.0]: https://github.com/MetaMask/core/compare/@metamask/multichain-account-service@0.8.0...@metamask/multichain-account-service@0.9.0
167170
[0.8.0]: https://github.com/MetaMask/core/compare/@metamask/multichain-account-service@0.7.0...@metamask/multichain-account-service@0.8.0
168171
[0.7.0]: https://github.com/MetaMask/core/compare/@metamask/multichain-account-service@0.6.0...@metamask/multichain-account-service@0.7.0

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": "0.9.0",
3+
"version": "0.10.0",
44
"description": "Service to manage multichain accounts",
55
"keywords": [
66
"MetaMask",

yarn.lock

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -2403,7 +2403,7 @@ __metadata:
24032403
languageName: node
24042404
linkType: hard
24052405

2406-
"@metamask/account-tree-controller@npm:^0.16.1, @metamask/account-tree-controller@workspace:packages/account-tree-controller":
2406+
"@metamask/account-tree-controller@npm:^0.17.0, @metamask/account-tree-controller@workspace:packages/account-tree-controller":
24072407
version: 0.0.0-use.local
24082408
resolution: "@metamask/account-tree-controller@workspace:packages/account-tree-controller"
24092409
dependencies:
@@ -2413,7 +2413,7 @@ __metadata:
24132413
"@metamask/base-controller": "npm:^8.4.0"
24142414
"@metamask/keyring-api": "npm:^21.0.0"
24152415
"@metamask/keyring-controller": "npm:^23.1.0"
2416-
"@metamask/multichain-account-service": "npm:^0.9.0"
2416+
"@metamask/multichain-account-service": "npm:^0.10.0"
24172417
"@metamask/profile-sync-controller": "npm:^25.0.0"
24182418
"@metamask/providers": "npm:^22.1.0"
24192419
"@metamask/snaps-controllers": "npm:^14.0.1"
@@ -2587,7 +2587,7 @@ __metadata:
25872587
"@ethersproject/providers": "npm:^5.7.0"
25882588
"@metamask/abi-utils": "npm:^2.0.3"
25892589
"@metamask/account-api": "npm:^0.12.0"
2590-
"@metamask/account-tree-controller": "npm:^0.16.1"
2590+
"@metamask/account-tree-controller": "npm:^0.17.0"
25912591
"@metamask/accounts-controller": "npm:^33.1.0"
25922592
"@metamask/approval-controller": "npm:^7.1.3"
25932593
"@metamask/auto-changelog": "npm:^3.4.4"
@@ -2601,7 +2601,7 @@ __metadata:
26012601
"@metamask/keyring-internal-api": "npm:^9.0.0"
26022602
"@metamask/keyring-snap-client": "npm:^8.0.0"
26032603
"@metamask/metamask-eth-abis": "npm:^3.1.1"
2604-
"@metamask/multichain-account-service": "npm:^0.9.0"
2604+
"@metamask/multichain-account-service": "npm:^0.10.0"
26052605
"@metamask/network-controller": "npm:^24.1.0"
26062606
"@metamask/permission-controller": "npm:^11.0.6"
26072607
"@metamask/phishing-controller": "npm:^13.1.0"
@@ -3051,7 +3051,7 @@ __metadata:
30513051
dependencies:
30523052
"@ethersproject/bignumber": "npm:^5.7.0"
30533053
"@ethersproject/providers": "npm:^5.7.0"
3054-
"@metamask/account-tree-controller": "npm:^0.16.1"
3054+
"@metamask/account-tree-controller": "npm:^0.17.0"
30553055
"@metamask/auto-changelog": "npm:^3.4.4"
30563056
"@metamask/base-controller": "npm:^8.4.0"
30573057
"@metamask/controller-utils": "npm:^11.14.0"
@@ -3833,7 +3833,7 @@ __metadata:
38333833
languageName: node
38343834
linkType: hard
38353835

3836-
"@metamask/multichain-account-service@npm:^0.9.0, @metamask/multichain-account-service@workspace:packages/multichain-account-service":
3836+
"@metamask/multichain-account-service@npm:^0.10.0, @metamask/multichain-account-service@workspace:packages/multichain-account-service":
38373837
version: 0.0.0-use.local
38383838
resolution: "@metamask/multichain-account-service@workspace:packages/multichain-account-service"
38393839
dependencies:

0 commit comments

Comments
 (0)