Skip to content

Commit 1577c9b

Browse files
authored
Release 641.0.0 (#6940)
## Explanation Patch releases of most packages for the `base-controller` dependency update, and a few features and bug fixes. ## 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 - [x] I've updated the test suite for new or updated code as appropriate - [x] I've updated documentation (JSDoc, Markdown, etc.) for new or updated code as appropriate - [x] 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 - [x] I've prepared draft pull requests for clients and consumer packages to resolve any breaking changes <!-- CURSOR_SUMMARY --> --- > [!NOTE] > Release 641.0.0 bumps many packages (notably network, polling, permission, preferences) and adds small features to Transaction, Keyring, and Accounts controllers. > > - **Release**: `641.0.0` > - **Features**: > - `@metamask/[email protected]`: add actions `emulateNewTransaction` and `emulateTransactionUpdate`. > - `@metamask/[email protected]`: add actions for `createNewVaultAndKeychain` and `createNewVaultAndRestore`. > - `@metamask/[email protected]`: add `getAccounts` action. > - **Dependency updates (broad)**: > - Upgrade many packages to `@metamask/base-controller@^8.4.2`. > - Bump `@metamask/network-controller` to `24.3.1` and `@metamask/polling-controller` to `14.0.2` across dependents. > - Patch bumps for `@metamask/[email protected]`, `@metamask/[email protected]`, `@metamask/[email protected]`, `@metamask/[email protected]`, and others. > - **Changelogs**: Update package changelogs to reflect new versions and dependency bumps. > > <sup>Written by [Cursor Bugbot](https://cursor.com/dashboard?tab=bugbot) for commit 6a7580d. This will update automatically on new commits. Configure [here](https://cursor.com/dashboard?tab=bugbot).</sup> <!-- /CURSOR_SUMMARY -->
1 parent 0867eae commit 1577c9b

File tree

97 files changed

+448
-295
lines changed

Some content is hidden

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

97 files changed

+448
-295
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": "640.0.0",
3+
"version": "641.0.0",
44
"private": true,
55
"description": "Monorepo for packages shared between MetaMask clients",
66
"repository": {

packages/account-tree-controller/package.json

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -57,12 +57,12 @@
5757
},
5858
"devDependencies": {
5959
"@metamask/account-api": "^0.12.0",
60-
"@metamask/accounts-controller": "^33.1.1",
60+
"@metamask/accounts-controller": "^33.2.0",
6161
"@metamask/auto-changelog": "^3.4.4",
6262
"@metamask/keyring-api": "^21.0.0",
63-
"@metamask/keyring-controller": "^23.1.1",
64-
"@metamask/multichain-account-service": "^1.6.1",
65-
"@metamask/profile-sync-controller": "^25.1.1",
63+
"@metamask/keyring-controller": "^23.2.0",
64+
"@metamask/multichain-account-service": "^1.6.2",
65+
"@metamask/profile-sync-controller": "^25.1.2",
6666
"@metamask/providers": "^22.1.0",
6767
"@metamask/snaps-controllers": "^14.0.1",
6868
"@types/jest": "^27.4.1",

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

1214
- Add a `getAccounts` method (and its associated action) that is the plural version of `getAccount` ([#6927](https://github.com/MetaMask/core/pull/6927))
@@ -636,7 +638,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
636638

637639
- Initial release ([#1637](https://github.com/MetaMask/core/pull/1637))
638640

639-
[Unreleased]: https://github.com/MetaMask/core/compare/@metamask/[email protected]
641+
[Unreleased]: https://github.com/MetaMask/core/compare/@metamask/[email protected]
642+
[33.2.0]: https://github.com/MetaMask/core/compare/@metamask/[email protected]...@metamask/[email protected]
640643
[33.1.1]: https://github.com/MetaMask/core/compare/@metamask/[email protected]...@metamask/[email protected]
641644
[33.1.0]: https://github.com/MetaMask/core/compare/@metamask/[email protected]...@metamask/[email protected]
642645
[33.0.0]: https://github.com/MetaMask/core/compare/@metamask/[email protected]...@metamask/[email protected]

packages/accounts-controller/package.json

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@metamask/accounts-controller",
3-
"version": "33.1.1",
3+
"version": "33.2.0",
44
"description": "Manages internal accounts",
55
"keywords": [
66
"MetaMask",
@@ -66,8 +66,8 @@
6666
"devDependencies": {
6767
"@metamask/auto-changelog": "^3.4.4",
6868
"@metamask/controller-utils": "^11.14.1",
69-
"@metamask/keyring-controller": "^23.1.1",
70-
"@metamask/network-controller": "^24.3.0",
69+
"@metamask/keyring-controller": "^23.2.0",
70+
"@metamask/network-controller": "^24.3.1",
7171
"@metamask/providers": "^22.1.0",
7272
"@metamask/snaps-controllers": "^14.0.1",
7373
"@types/jest": "^27.4.1",

packages/address-book-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+
## [6.2.1]
11+
1012
### Changed
1113

1214
- Bump `@metamask/base-controller` from `^8.4.1` to `^8.4.2` ([#6917](https://github.com/MetaMask/core/pull/6917))
@@ -246,7 +248,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
246248

247249
All changes listed after this point were applied to this package following the monorepo conversion.
248250

249-
[Unreleased]: https://github.com/MetaMask/core/compare/@metamask/[email protected]
251+
[Unreleased]: https://github.com/MetaMask/core/compare/@metamask/[email protected]
252+
[6.2.1]: https://github.com/MetaMask/core/compare/@metamask/[email protected]...@metamask/[email protected]
250253
[6.2.0]: https://github.com/MetaMask/core/compare/@metamask/[email protected]...@metamask/[email protected]
251254
[6.1.1]: https://github.com/MetaMask/core/compare/@metamask/[email protected]...@metamask/[email protected]
252255
[6.1.0]: https://github.com/MetaMask/core/compare/@metamask/[email protected]...@metamask/[email protected]

packages/address-book-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/address-book-controller",
3-
"version": "6.2.0",
3+
"version": "6.2.1",
44
"description": "Manages a list of recipient addresses associated with nicknames",
55
"keywords": [
66
"MetaMask",

packages/announcement-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+
## [7.1.1]
11+
1012
### Changed
1113

1214
- Bump `@metamask/base-controller` from `^8.4.1` to `^8.4.2` ([#6917](https://github.com/MetaMask/core/pull/6917))
@@ -190,7 +192,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
190192

191193
All changes listed after this point were applied to this package following the monorepo conversion.
192194

193-
[Unreleased]: https://github.com/MetaMask/core/compare/@metamask/[email protected]
195+
[Unreleased]: https://github.com/MetaMask/core/compare/@metamask/[email protected]
196+
[7.1.1]: https://github.com/MetaMask/core/compare/@metamask/[email protected]...@metamask/[email protected]
194197
[7.1.0]: https://github.com/MetaMask/core/compare/@metamask/[email protected]...@metamask/[email protected]
195198
[7.0.3]: https://github.com/MetaMask/core/compare/@metamask/[email protected]...@metamask/[email protected]
196199
[7.0.2]: https://github.com/MetaMask/core/compare/@metamask/[email protected]...@metamask/[email protected]

packages/announcement-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/announcement-controller",
3-
"version": "7.1.0",
3+
"version": "7.1.1",
44
"description": "Manages in-app announcements",
55
"keywords": [
66
"MetaMask",

packages/app-metadata-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+
## [1.1.1]
11+
1012
### Changed
1113

1214
- Bump `@metamask/base-controller` from `^8.4.1` to `^8.4.2` ([#6917](https://github.com/MetaMask/core/pull/6917))
@@ -27,6 +29,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
2729

2830
- Initial release ([#5577](https://github.com/MetaMask/core/pull/5577))
2931

30-
[Unreleased]: https://github.com/MetaMask/core/compare/@metamask/[email protected]
32+
[Unreleased]: https://github.com/MetaMask/core/compare/@metamask/[email protected]
33+
[1.1.1]: https://github.com/MetaMask/core/compare/@metamask/[email protected]...@metamask/[email protected]
3134
[1.1.0]: https://github.com/MetaMask/core/compare/@metamask/[email protected]...@metamask/[email protected]
3235
[1.0.0]: https://github.com/MetaMask/core/releases/tag/@metamask/[email protected]

packages/app-metadata-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/app-metadata-controller",
3-
"version": "1.1.0",
3+
"version": "1.1.1",
44
"description": "Manages requests that for app metadata",
55
"keywords": [
66
"MetaMask",

0 commit comments

Comments
 (0)