Skip to content

Commit e8ff5b7

Browse files
authored
Release/915.0.0 (#8472)
## 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/processes/updating-changelogs.md) - [ ] I've introduced [breaking changes](https://github.com/MetaMask/core/tree/main/docs/processes/breaking-changes.md) in this PR and have prepared draft pull requests for clients and consumer packages to resolve them <!-- CURSOR_SUMMARY --> --- > [!NOTE] > **Low Risk** > Primarily version/changelog updates and dependency bumps; no runtime logic changes in this diff beyond consuming the new `@metamask/account-tree-controller` version. > > **Overview** > Bumps the monorepo release version to `915.0.0` and publishes `@metamask/account-tree-controller` `7.1.0` (with updated changelog entries/links). > > Updates dependent packages (`@metamask/assets-controller`, `@metamask/assets-controllers`, `@metamask/earn-controller`, and `@metamask/perps-controller`) to require `@metamask/account-tree-controller@^7.1.0`, and refreshes `yarn.lock` accordingly. > > <sup>Reviewed by [Cursor Bugbot](https://cursor.com/bugbot) for commit 3d8ec06. Bugbot is set up for automated code reviews on this repo. Configure [here](https://www.cursor.com/dashboard/bugbot).</sup> <!-- /CURSOR_SUMMARY -->
1 parent fa4d7d7 commit e8ff5b7

File tree

11 files changed

+28
-13
lines changed

11 files changed

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

packages/account-tree-controller/CHANGELOG.md

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

88
## [Unreleased]
99

10+
## [7.1.0]
11+
1012
### Changed
1113

1214
- Always fire `:selectedAccountGroupChange` during `init` call ([#8427](https://github.com/MetaMask/core/pull/8427))
1315
- Many controllers were actually relying on this behavior when this used to be dynamic, so we re-introduce this behavior.
1416
- Now persist `accounTree` ([#8437](https://github.com/MetaMask/core/pull/8437))
1517
- The tree is not persisted and can be used before `init` is called.
1618
- This allow consumers (like the assets controllers) to rely on the selected group's accounts right away.
17-
- Remove dynamic identifiers (wallet IDs, group IDs) from backup and sync thrown error messages to improve Sentry error grouping ([#8349](https://github.com/MetaMask/core/pull/8349))
1819
- Bump `@metamask/accounts-controller` from `^37.1.1` to `^37.2.0` ([#8363](https://github.com/MetaMask/core/pull/8363))
1920
- Bump `@metamask/keyring-controller` from `^25.1.1` to `^25.2.0` ([#8363](https://github.com/MetaMask/core/pull/8363))
2021
- Bump `@metamask/messenger` from `^1.0.0` to `^1.1.1` ([#8364](https://github.com/MetaMask/core/pull/8364), [#8373](https://github.com/MetaMask/core/pull/8373))
2122
- Bump `@metamask/base-controller` from `^9.0.1` to `^9.1.0` ([#8457](https://github.com/MetaMask/core/pull/8457))
2223

24+
### Removed
25+
26+
- Remove dynamic identifiers (wallet IDs, group IDs) from backup and sync thrown error messages to improve Sentry error grouping ([#8349](https://github.com/MetaMask/core/pull/8349))
27+
2328
## [7.0.0]
2429

2530
### Changed
@@ -524,7 +529,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
524529
- Initial release ([#5847](https://github.com/MetaMask/core/pull/5847))
525530
- Grouping accounts into 3 main categories: Entropy source, Snap ID, keyring types.
526531

527-
[Unreleased]: https://github.com/MetaMask/core/compare/@metamask/account-tree-controller@7.0.0...HEAD
532+
[Unreleased]: https://github.com/MetaMask/core/compare/@metamask/account-tree-controller@7.1.0...HEAD
533+
[7.1.0]: https://github.com/MetaMask/core/compare/@metamask/account-tree-controller@7.0.0...@metamask/account-tree-controller@7.1.0
528534
[7.0.0]: https://github.com/MetaMask/core/compare/@metamask/account-tree-controller@6.0.0...@metamask/account-tree-controller@7.0.0
529535
[6.0.0]: https://github.com/MetaMask/core/compare/@metamask/account-tree-controller@5.0.1...@metamask/account-tree-controller@6.0.0
530536
[5.0.1]: https://github.com/MetaMask/core/compare/@metamask/account-tree-controller@5.0.0...@metamask/account-tree-controller@5.0.1

packages/account-tree-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/account-tree-controller",
3-
"version": "7.0.0",
3+
"version": "7.1.0",
44
"description": "Controller to group account together based on some pre-defined rules",
55
"keywords": [
66
"Ethereum",

packages/assets-controller/CHANGELOG.md

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

88
## [Unreleased]
99

10+
### Changed
11+
12+
- Bump `@metamask/account-tree-controller` from `^7.0.0` to `^7.1.0` ([#8472](https://github.com/MetaMask/core/pull/8472))
13+
1014
## [5.0.1]
1115

1216
### Changed

packages/assets-controller/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -56,7 +56,7 @@
5656
"@ethereumjs/util": "^9.1.0",
5757
"@ethersproject/abi": "^5.7.0",
5858
"@ethersproject/providers": "^5.7.0",
59-
"@metamask/account-tree-controller": "^7.0.0",
59+
"@metamask/account-tree-controller": "^7.1.0",
6060
"@metamask/assets-controllers": "^104.0.0",
6161
"@metamask/base-controller": "^9.1.0",
6262
"@metamask/client-controller": "^1.0.1",

packages/assets-controllers/CHANGELOG.md

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

88
## [Unreleased]
99

10+
### Changed
11+
12+
- Bump `@metamask/account-tree-controller` from `^7.0.0` to `^7.1.0` ([#8472](https://github.com/MetaMask/core/pull/8472))
13+
1014
## [104.0.0]
1115

1216
### Changed

packages/assets-controllers/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -60,7 +60,7 @@
6060
"@ethersproject/contracts": "^5.7.0",
6161
"@ethersproject/providers": "^5.7.0",
6262
"@metamask/abi-utils": "^2.0.3",
63-
"@metamask/account-tree-controller": "^7.0.0",
63+
"@metamask/account-tree-controller": "^7.1.0",
6464
"@metamask/accounts-controller": "^37.2.0",
6565
"@metamask/approval-controller": "^9.0.1",
6666
"@metamask/base-controller": "^9.1.0",

packages/earn-controller/CHANGELOG.md

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

1212
- Bump `@metamask/base-controller` from `^9.0.1` to `^9.1.0` ([#8457](https://github.com/MetaMask/core/pull/8457))
13+
- Bump `@metamask/account-tree-controller` from `^7.0.0` to `^7.1.0` ([#8472](https://github.com/MetaMask/core/pull/8472))
1314

1415
## [12.0.0]
1516

packages/earn-controller/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -55,7 +55,7 @@
5555
"dependencies": {
5656
"@ethersproject/bignumber": "^5.7.0",
5757
"@ethersproject/providers": "^5.7.0",
58-
"@metamask/account-tree-controller": "^7.0.0",
58+
"@metamask/account-tree-controller": "^7.1.0",
5959
"@metamask/base-controller": "^9.1.0",
6060
"@metamask/controller-utils": "^11.20.0",
6161
"@metamask/keyring-api": "^21.6.0",

packages/perps-controller/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -67,7 +67,7 @@
6767
"uuid": "^8.3.2"
6868
},
6969
"devDependencies": {
70-
"@metamask/account-tree-controller": "^7.0.0",
70+
"@metamask/account-tree-controller": "^7.1.0",
7171
"@metamask/auto-changelog": "^6.0.0",
7272
"@metamask/geolocation-controller": "^0.1.2",
7373
"@metamask/keyring-controller": "^25.2.0",

0 commit comments

Comments
 (0)