Skip to content

Commit 4b5ac13

Browse files
authored
Release/297.0.0 (#5305)
## 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? --> Major core release affecting all packages. This release delivers the latest version of BaseController, incorporating two significant breaking changes: the removal of `BaseControllerV1` and the removal of old `Messenger` aliases. ## 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 --> ## Changelog <!-- If you're making any consumer-facing changes, list those changes here as if you were updating a changelog, using the template below as a guide. (CATEGORY is one of BREAKING, ADDED, CHANGED, DEPRECATED, REMOVED, or FIXED. For security-related issues, follow the Security Advisory process.) Please take care to name the exact pieces of the API you've added or changed (e.g. types, interfaces, functions, or methods). If there are any breaking changes, make sure to offer a solution for consumers to follow once they upgrade to the changes. Finally, if you're only making changes to development scripts or tests, you may replace the template below with "None". --> ## 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 highlighted breaking changes using the "BREAKING" category above as appropriate - [x] I've prepared draft pull requests for clients and consumer packages to resolve any breaking changes
1 parent 8339f49 commit 4b5ac13

File tree

71 files changed

+515
-251
lines changed

Some content is hidden

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

71 files changed

+515
-251
lines changed

examples/example-controllers/package.json

Lines changed: 1 addition & 1 deletion
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": "^7.1.1",
50+
"@metamask/base-controller": "^8.0.0",
5151
"@metamask/utils": "^11.1.0"
5252
},
5353
"devDependencies": {

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

packages/accounts-controller/CHANGELOG.md

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

88
## [Unreleased]
99

10+
## [23.0.1]
11+
12+
### Changed
13+
14+
- Bump `@metamask/base-controller` from `^7.1.1` to `^8.0.0` ([#5305](https://github.com/MetaMask/core/pull/5305))
15+
1016
## [23.0.0]
1117

1218
### Changed
@@ -432,7 +438,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
432438

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

435-
[Unreleased]: https://github.com/MetaMask/core/compare/@metamask/[email protected]
441+
[Unreleased]: https://github.com/MetaMask/core/compare/@metamask/[email protected]
442+
[23.0.1]: https://github.com/MetaMask/core/compare/@metamask/[email protected]...@metamask/[email protected]
436443
[23.0.0]: https://github.com/MetaMask/core/compare/@metamask/[email protected]...@metamask/[email protected]
437444
[22.0.0]: https://github.com/MetaMask/core/compare/@metamask/[email protected]...@metamask/[email protected]
438445
[21.0.2]: 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": "23.0.0",
3+
"version": "23.0.1",
44
"description": "Manages internal accounts",
55
"keywords": [
66
"MetaMask",
@@ -48,7 +48,7 @@
4848
},
4949
"dependencies": {
5050
"@ethereumjs/util": "^8.1.0",
51-
"@metamask/base-controller": "^7.1.1",
51+
"@metamask/base-controller": "^8.0.0",
5252
"@metamask/eth-snap-keyring": "^10.0.0",
5353
"@metamask/keyring-api": "^17.0.0",
5454
"@metamask/keyring-internal-api": "^4.0.1",
@@ -62,7 +62,7 @@
6262
},
6363
"devDependencies": {
6464
"@metamask/auto-changelog": "^3.4.4",
65-
"@metamask/keyring-controller": "^19.0.6",
65+
"@metamask/keyring-controller": "^19.0.7",
6666
"@metamask/providers": "^18.1.1",
6767
"@metamask/snaps-controllers": "^9.19.0",
6868
"@types/jest": "^27.4.1",

packages/address-book-controller/CHANGELOG.md

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

88
## [Unreleased]
99

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

12-
- Bump `@metamask/base-controller` from `^7.0.0` to `^7.1.0` ([#5079](https://github.com/MetaMask/core/pull/5079))
14+
- Bump `@metamask/base-controller` from `^7.0.2` to `^8.0.0` ([#5079](https://github.com/MetaMask/core/pull/5079)), ([#5135](https://github.com/MetaMask/core/pull/5135)), ([#5305](https://github.com/MetaMask/core/pull/5305))
15+
- Bump `@metamask/controller-utils` from `^11.4.4` to `^11.5.0` ([#5135](https://github.com/MetaMask/core/pull/5135)), ([#5272](https://github.com/MetaMask/core/pull/5272))
16+
- Bump `@metamask/rpc-errors` from `^7.0.1` to `^7.0.2` ([#5080](https://github.com/MetaMask/core/pull/5080))
17+
- Bump `@metamask/utils` from `^10.0.0` to `^11.1.0` ([#5080](https://github.com/MetaMask/core/pull/5080)), ([#5223](https://github.com/MetaMask/core/pull/5223))
1318

1419
## [6.0.2]
1520

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

199204
All changes listed after this point were applied to this package following the monorepo conversion.
200205

201-
[Unreleased]: https://github.com/MetaMask/core/compare/@metamask/[email protected]
206+
[Unreleased]: https://github.com/MetaMask/core/compare/@metamask/[email protected]
207+
[6.0.3]: https://github.com/MetaMask/core/compare/@metamask/[email protected]...@metamask/[email protected]
202208
[6.0.2]: https://github.com/MetaMask/core/compare/@metamask/[email protected]...@metamask/[email protected]
203209
[6.0.1]: https://github.com/MetaMask/core/compare/@metamask/[email protected]...@metamask/[email protected]
204210
[6.0.0]: https://github.com/MetaMask/core/compare/@metamask/[email protected]...@metamask/[email protected]

packages/address-book-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/address-book-controller",
3-
"version": "6.0.2",
3+
"version": "6.0.3",
44
"description": "Manages a list of recipient addresses associated with nicknames",
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": "^7.1.1",
50+
"@metamask/base-controller": "^8.0.0",
5151
"@metamask/controller-utils": "^11.5.0",
5252
"@metamask/utils": "^11.1.0"
5353
},

packages/announcement-controller/CHANGELOG.md

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

88
## [Unreleased]
99

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

12-
- Bump `@metamask/base-controller` from `^7.0.0` to `^7.1.0` ([#5079](https://github.com/MetaMask/core/pull/5079))
14+
- Bump `@metamask/base-controller` from `^7.0.2` to `^8.0.0` ([#5079](https://github.com/MetaMask/core/pull/5079)), ([#5135](https://github.com/MetaMask/core/pull/5135)), ([#5305](https://github.com/MetaMask/core/pull/5305))
1315

1416
## [7.0.2]
1517

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

175177
All changes listed after this point were applied to this package following the monorepo conversion.
176178

177-
[Unreleased]: https://github.com/MetaMask/core/compare/@metamask/[email protected]
179+
[Unreleased]: https://github.com/MetaMask/core/compare/@metamask/[email protected]
180+
[7.0.3]: https://github.com/MetaMask/core/compare/@metamask/[email protected]...@metamask/[email protected]
178181
[7.0.2]: https://github.com/MetaMask/core/compare/@metamask/[email protected]...@metamask/[email protected]
179182
[7.0.1]: https://github.com/MetaMask/core/compare/@metamask/[email protected]...@metamask/[email protected]
180183
[7.0.0]: https://github.com/MetaMask/core/compare/@metamask/[email protected]...@metamask/[email protected]

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.2",
3+
"version": "7.0.3",
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": "^7.1.1"
50+
"@metamask/base-controller": "^8.0.0"
5151
},
5252
"devDependencies": {
5353
"@metamask/auto-changelog": "^3.4.4",

packages/approval-controller/CHANGELOG.md

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

88
## [Unreleased]
99

10+
## [7.1.3]
11+
12+
### Changed
13+
14+
- Bump `@metamask/base-controller` from `^7.1.0` to `^8.0.0` ([#5135](https://github.com/MetaMask/core/pull/5135)), ([#5305](https://github.com/MetaMask/core/pull/5305))
15+
- Bump `@metamask/utils` from `^11.0.1` to `^11.1.0` ([#5223](https://github.com/MetaMask/core/pull/5223))
16+
1017
## [7.1.2]
1118

1219
### Changed
@@ -262,7 +269,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
262269

263270
All changes listed after this point were applied to this package following the monorepo conversion.
264271

265-
[Unreleased]: https://github.com/MetaMask/core/compare/@metamask/[email protected]
272+
[Unreleased]: https://github.com/MetaMask/core/compare/@metamask/[email protected]
273+
[7.1.3]: https://github.com/MetaMask/core/compare/@metamask/[email protected]...@metamask/[email protected]
266274
[7.1.2]: https://github.com/MetaMask/core/compare/@metamask/[email protected]...@metamask/[email protected]
267275
[7.1.1]: https://github.com/MetaMask/core/compare/@metamask/[email protected]...@metamask/[email protected]
268276
[7.1.0]: https://github.com/MetaMask/core/compare/@metamask/[email protected]...@metamask/[email protected]

packages/approval-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/approval-controller",
3-
"version": "7.1.2",
3+
"version": "7.1.3",
44
"description": "Manages requests that require user approval",
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": "^7.1.1",
50+
"@metamask/base-controller": "^8.0.0",
5151
"@metamask/rpc-errors": "^7.0.2",
5252
"@metamask/utils": "^11.1.0",
5353
"nanoid": "^3.3.8"

0 commit comments

Comments
 (0)