Skip to content

Commit cc42c42

Browse files
Release/609.0.0 (#6807)
## Explanation Minor/patch releases of anything with unreleased changes prior to this PR (i.e. at least one change entry) ## References ## 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] > Publishes 609.0.0 and bumps versions across the monorepo (notably `@metamask/base-controller` → 8.4.1, `@metamask/controller-utils` → 11.14.1, `@metamask/json-rpc-engine` → 10.1.1, network/gas/polling/eth-json-rpc-provider, and many dependent packages). > > - **Release 609.0.0** > - **Dependencies/Infra**: > - Core bumps: `@metamask/base-controller` → `8.4.1`, `@metamask/controller-utils` → `11.14.1`, `@metamask/json-rpc-engine` → `10.1.1`, `@metamask/eth-json-rpc-provider` → `5.0.1`, `@metamask/polling-controller` → `14.0.1`, `@metamask/gas-fee-controller` → `24.1.0`, `@metamask/network-controller` → `24.2.1`. > - Propagates version bumps across many controllers/services (e.g., `accounts-controller`, `approval-controller`, `keyring-controller`, `multichain-*`, `permission-controller`, `selected-network-controller`, `notification-services-controller`, `signature-controller`, etc.). > - Updates workspace root versions and `yarn.lock` accordingly. > > <sup>Written by [Cursor Bugbot](https://cursor.com/dashboard?tab=bugbot) for commit fc9f14d. This will update automatically on new commits. Configure [here](https://cursor.com/dashboard?tab=bugbot).</sup> <!-- /CURSOR_SUMMARY --> --------- Co-authored-by: cryptodev-2s <109512101+cryptodev-2s@users.noreply.github.com>
1 parent 34f185f commit cc42c42

File tree

110 files changed

+681
-460
lines changed

Some content is hidden

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

110 files changed

+681
-460
lines changed

package.json

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@metamask/core-monorepo",
3-
"version": "608.0.0",
3+
"version": "609.0.0",
44
"private": true,
55
"description": "Monorepo for packages shared between MetaMask clients",
66
"repository": {
@@ -61,8 +61,8 @@
6161
"@metamask/eslint-config-nodejs": "^14.0.0",
6262
"@metamask/eslint-config-typescript": "^14.0.0",
6363
"@metamask/eth-block-tracker": "^12.0.1",
64-
"@metamask/eth-json-rpc-provider": "^5.0.0",
65-
"@metamask/json-rpc-engine": "^10.1.0",
64+
"@metamask/eth-json-rpc-provider": "^5.0.1",
65+
"@metamask/json-rpc-engine": "^10.1.1",
6666
"@metamask/utils": "^11.8.1",
6767
"@ts-bridge/cli": "^0.6.1",
6868
"@types/jest": "^27.4.1",

packages/account-tree-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/base-controller` from `^8.4.0` to `^8.4.1` ([#6807](https://github.com/MetaMask/core/pull/6807))
13+
1014
## [1.4.0]
1115

1216
### Changed

packages/account-tree-controller/package.json

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -47,7 +47,7 @@
4747
"test:watch": "NODE_OPTIONS=--experimental-vm-modules jest --watch"
4848
},
4949
"dependencies": {
50-
"@metamask/base-controller": "^8.4.0",
50+
"@metamask/base-controller": "^8.4.1",
5151
"@metamask/snaps-sdk": "^9.0.0",
5252
"@metamask/snaps-utils": "^11.0.0",
5353
"@metamask/superstruct": "^3.1.0",
@@ -57,10 +57,10 @@
5757
},
5858
"devDependencies": {
5959
"@metamask/account-api": "^0.12.0",
60-
"@metamask/accounts-controller": "^33.1.0",
60+
"@metamask/accounts-controller": "^33.1.1",
6161
"@metamask/auto-changelog": "^3.4.4",
6262
"@metamask/keyring-api": "^21.0.0",
63-
"@metamask/keyring-controller": "^23.1.0",
63+
"@metamask/keyring-controller": "^23.1.1",
6464
"@metamask/multichain-account-service": "^1.6.0",
6565
"@metamask/profile-sync-controller": "^25.1.0",
6666
"@metamask/providers": "^22.1.0",

packages/accounts-controller/CHANGELOG.md

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

88
## [Unreleased]
99

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

1214
- 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))
13-
- Bump `@metamask/base-controller` from `^8.3.0` to `^8.4.0` ([#6632](https://github.com/MetaMask/core/pull/6632))
15+
- 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))
1416

1517
## [33.1.0]
1618

@@ -624,7 +626,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
624626

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

627-
[Unreleased]: https://github.com/MetaMask/core/compare/@metamask/accounts-controller@33.1.0...HEAD
629+
[Unreleased]: https://github.com/MetaMask/core/compare/@metamask/accounts-controller@33.1.1...HEAD
630+
[33.1.1]: https://github.com/MetaMask/core/compare/@metamask/accounts-controller@33.1.0...@metamask/accounts-controller@33.1.1
628631
[33.1.0]: https://github.com/MetaMask/core/compare/@metamask/accounts-controller@33.0.0...@metamask/accounts-controller@33.1.0
629632
[33.0.0]: https://github.com/MetaMask/core/compare/@metamask/accounts-controller@32.0.2...@metamask/accounts-controller@33.0.0
630633
[32.0.2]: https://github.com/MetaMask/core/compare/@metamask/accounts-controller@32.0.1...@metamask/accounts-controller@32.0.2

packages/accounts-controller/package.json

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@metamask/accounts-controller",
3-
"version": "33.1.0",
3+
"version": "33.1.1",
44
"description": "Manages internal accounts",
55
"keywords": [
66
"MetaMask",
@@ -48,7 +48,7 @@
4848
},
4949
"dependencies": {
5050
"@ethereumjs/util": "^9.1.0",
51-
"@metamask/base-controller": "^8.4.0",
51+
"@metamask/base-controller": "^8.4.1",
5252
"@metamask/eth-snap-keyring": "^17.0.0",
5353
"@metamask/keyring-api": "^21.0.0",
5454
"@metamask/keyring-internal-api": "^9.0.0",
@@ -65,9 +65,9 @@
6565
},
6666
"devDependencies": {
6767
"@metamask/auto-changelog": "^3.4.4",
68-
"@metamask/controller-utils": "^11.14.0",
69-
"@metamask/keyring-controller": "^23.1.0",
70-
"@metamask/network-controller": "^24.2.0",
68+
"@metamask/controller-utils": "^11.14.1",
69+
"@metamask/keyring-controller": "^23.1.1",
70+
"@metamask/network-controller": "^24.2.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: 6 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -7,14 +7,16 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
77

88
## [Unreleased]
99

10+
## [6.2.0]
11+
1012
### Added
1113

1214
- Add two new controller state metadata properties: `includeInStateLogs` and `usedInUi` ([#6473](https://github.com/MetaMask/core/pull/6473))
1315

1416
### Changed
1517

16-
- Bump `@metamask/base-controller` from `^8.0.1` to `^8.4.0` ([#6284](https://github.com/MetaMask/core/pull/6284), [#6355](https://github.com/MetaMask/core/pull/6355), [#6465](https://github.com/MetaMask/core/pull/6465), [#6632](https://github.com/MetaMask/core/pull/6632))
17-
- Bump `@metamask/controller-utils` from `^11.11.0` to `^11.14.0` ([#6303](https://github.com/MetaMask/core/pull/6303), [#6620](https://github.com/MetaMask/core/pull/6620), [#6629](https://github.com/MetaMask/core/pull/6629))
18+
- Bump `@metamask/base-controller` from `^8.0.1` to `^8.4.1` ([#6284](https://github.com/MetaMask/core/pull/6284), [#6355](https://github.com/MetaMask/core/pull/6355), [#6465](https://github.com/MetaMask/core/pull/6465), [#6632](https://github.com/MetaMask/core/pull/6632), [#6807](https://github.com/MetaMask/core/pull/6807))
19+
- Bump `@metamask/controller-utils` from `^11.11.0` to `^11.14.1` ([#6303](https://github.com/MetaMask/core/pull/6303), [#6620](https://github.com/MetaMask/core/pull/6620), [#6629](https://github.com/MetaMask/core/pull/6629), [#6807](https://github.com/MetaMask/core/pull/6807))
1820
- 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))
1921

2022
## [6.1.1]
@@ -240,7 +242,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
240242

241243
All changes listed after this point were applied to this package following the monorepo conversion.
242244

243-
[Unreleased]: https://github.com/MetaMask/core/compare/@metamask/address-book-controller@6.1.1...HEAD
245+
[Unreleased]: https://github.com/MetaMask/core/compare/@metamask/address-book-controller@6.2.0...HEAD
246+
[6.2.0]: https://github.com/MetaMask/core/compare/@metamask/address-book-controller@6.1.1...@metamask/address-book-controller@6.2.0
244247
[6.1.1]: https://github.com/MetaMask/core/compare/@metamask/address-book-controller@6.1.0...@metamask/address-book-controller@6.1.1
245248
[6.1.0]: https://github.com/MetaMask/core/compare/@metamask/address-book-controller@6.0.3...@metamask/address-book-controller@6.1.0
246249
[6.0.3]: https://github.com/MetaMask/core/compare/@metamask/address-book-controller@6.0.2...@metamask/address-book-controller@6.0.3

packages/address-book-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/address-book-controller",
3-
"version": "6.1.1",
3+
"version": "6.2.0",
44
"description": "Manages a list of recipient addresses associated with nicknames",
55
"keywords": [
66
"MetaMask",
@@ -47,8 +47,8 @@
4747
"test:watch": "NODE_OPTIONS=--experimental-vm-modules jest --watch"
4848
},
4949
"dependencies": {
50-
"@metamask/base-controller": "^8.4.0",
51-
"@metamask/controller-utils": "^11.14.0",
50+
"@metamask/base-controller": "^8.4.1",
51+
"@metamask/controller-utils": "^11.14.1",
5252
"@metamask/utils": "^11.8.1"
5353
},
5454
"devDependencies": {

packages/announcement-controller/CHANGELOG.md

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

88
## [Unreleased]
99

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

1214
- Add two new controller state metadata properties: `includeInStateLogs` and `usedInUi` ([#6524](https://github.com/MetaMask/core/pull/6524))
1315

1416
### Changed
1517

16-
- Bump `@metamask/base-controller` from `^8.0.0` to `^8.4.0` ([#5722](https://github.com/MetaMask/core/pull/5722), [#6284](https://github.com/MetaMask/core/pull/6284), [#6355](https://github.com/MetaMask/core/pull/6355), [#6465](https://github.com/MetaMask/core/pull/6465), [#6632](https://github.com/MetaMask/core/pull/6632))
18+
- Bump `@metamask/base-controller` from `^8.0.0` to `^8.4.1` ([#5722](https://github.com/MetaMask/core/pull/5722), [#6284](https://github.com/MetaMask/core/pull/6284), [#6355](https://github.com/MetaMask/core/pull/6355), [#6465](https://github.com/MetaMask/core/pull/6465), [#6632](https://github.com/MetaMask/core/pull/6632), [#6807](https://github.com/MetaMask/core/pull/6807))
1719

1820
## [7.0.3]
1921

@@ -184,7 +186,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
184186

185187
All changes listed after this point were applied to this package following the monorepo conversion.
186188

187-
[Unreleased]: https://github.com/MetaMask/core/compare/@metamask/announcement-controller@7.0.3...HEAD
189+
[Unreleased]: https://github.com/MetaMask/core/compare/@metamask/announcement-controller@7.1.0...HEAD
190+
[7.1.0]: https://github.com/MetaMask/core/compare/@metamask/announcement-controller@7.0.3...@metamask/announcement-controller@7.1.0
188191
[7.0.3]: https://github.com/MetaMask/core/compare/@metamask/announcement-controller@7.0.2...@metamask/announcement-controller@7.0.3
189192
[7.0.2]: https://github.com/MetaMask/core/compare/@metamask/announcement-controller@7.0.1...@metamask/announcement-controller@7.0.2
190193
[7.0.1]: https://github.com/MetaMask/core/compare/@metamask/announcement-controller@7.0.0...@metamask/announcement-controller@7.0.1

packages/announcement-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/announcement-controller",
3-
"version": "7.0.3",
3+
"version": "7.1.0",
44
"description": "Manages in-app announcements",
55
"keywords": [
66
"MetaMask",
@@ -47,7 +47,7 @@
4747
"test:watch": "NODE_OPTIONS=--experimental-vm-modules jest --watch"
4848
},
4949
"dependencies": {
50-
"@metamask/base-controller": "^8.4.0"
50+
"@metamask/base-controller": "^8.4.1"
5151
},
5252
"devDependencies": {
5353
"@metamask/auto-changelog": "^3.4.4",

packages/app-metadata-controller/CHANGELOG.md

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

88
## [Unreleased]
99

10+
## [1.1.0]
11+
1012
### Added
1113

1214
- Add two new controller state metadata properties: `includeInStateLogs` and `usedInUi` ([#6576](https://github.com/MetaMask/core/pull/6576))
1315

1416
### Changed
1517

16-
- Bump `@metamask/base-controller` from `^8.0.0` to `^8.4.0` ([#5722](https://github.com/MetaMask/core/pull/5722), [#6284](https://github.com/MetaMask/core/pull/6284), [#6355](https://github.com/MetaMask/core/pull/6355), [#6465](https://github.com/MetaMask/core/pull/6465), [#6632](https://github.com/MetaMask/core/pull/6632))
18+
- Bump `@metamask/base-controller` from `^8.0.0` to `^8.4.1` ([#5722](https://github.com/MetaMask/core/pull/5722), [#6284](https://github.com/MetaMask/core/pull/6284), [#6355](https://github.com/MetaMask/core/pull/6355), [#6465](https://github.com/MetaMask/core/pull/6465), [#6632](https://github.com/MetaMask/core/pull/6632), [#6807](https://github.com/MetaMask/core/pull/6807))
1719

1820
## [1.0.0]
1921

2022
### Added
2123

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

24-
[Unreleased]: https://github.com/MetaMask/core/compare/@metamask/app-metadata-controller@1.0.0...HEAD
26+
[Unreleased]: https://github.com/MetaMask/core/compare/@metamask/app-metadata-controller@1.1.0...HEAD
27+
[1.1.0]: https://github.com/MetaMask/core/compare/@metamask/app-metadata-controller@1.0.0...@metamask/app-metadata-controller@1.1.0
2528
[1.0.0]: https://github.com/MetaMask/core/releases/tag/@metamask/app-metadata-controller@1.0.0

0 commit comments

Comments
 (0)