Skip to content

Commit a06dd96

Browse files
authored
Release 460.0.0 (#6071)
## Explanation This is a RC for v460.0.0. See changelogs for more details - `@metamask/notification-services-controller@13.0.0` - `@metamask/profile-sync-controller@20.0.0` ## 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 <!-- THIS SECTION IS NO LONGER NEEDED. The process for updating changelogs has changed. Please consult the "Updating changelogs" section of the Contributing doc for more. --> ## 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
1 parent 159eae4 commit a06dd96

File tree

6 files changed

+22
-12
lines changed

6 files changed

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

packages/notification-services-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+
## [13.0.0]
11+
12+
### Changed
13+
14+
- **BREAKING:** Bump peer dependency `@metamask/profile-sync-controller` to `^20.0.0` ([#6071](https://github.com/MetaMask/core/pull/6071))
15+
1016
## [12.0.1]
1117

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

482488
- Initial release
483489

484-
[Unreleased]: https://github.com/MetaMask/core/compare/@metamask/notification-services-controller@12.0.1...HEAD
490+
[Unreleased]: https://github.com/MetaMask/core/compare/@metamask/notification-services-controller@13.0.0...HEAD
491+
[13.0.0]: https://github.com/MetaMask/core/compare/@metamask/notification-services-controller@12.0.1...@metamask/notification-services-controller@13.0.0
485492
[12.0.1]: https://github.com/MetaMask/core/compare/@metamask/notification-services-controller@12.0.0...@metamask/notification-services-controller@12.0.1
486493
[12.0.0]: https://github.com/MetaMask/core/compare/@metamask/notification-services-controller@11.0.0...@metamask/notification-services-controller@12.0.0
487494
[11.0.0]: https://github.com/MetaMask/core/compare/@metamask/notification-services-controller@10.0.0...@metamask/notification-services-controller@11.0.0

packages/notification-services-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/notification-services-controller",
3-
"version": "12.0.1",
3+
"version": "13.0.0",
44
"description": "Manages New MetaMask decentralized Notification system",
55
"keywords": [
66
"MetaMask",
@@ -123,7 +123,7 @@
123123
"@lavamoat/preinstall-always-fail": "^2.1.0",
124124
"@metamask/auto-changelog": "^3.4.4",
125125
"@metamask/keyring-controller": "^22.1.0",
126-
"@metamask/profile-sync-controller": "^19.0.0",
126+
"@metamask/profile-sync-controller": "^20.0.0",
127127
"@types/jest": "^27.4.1",
128128
"@types/readable-stream": "^2.3.0",
129129
"contentful": "^10.15.0",
@@ -138,7 +138,7 @@
138138
},
139139
"peerDependencies": {
140140
"@metamask/keyring-controller": "^22.0.0",
141-
"@metamask/profile-sync-controller": "^19.0.0"
141+
"@metamask/profile-sync-controller": "^20.0.0"
142142
},
143143
"engines": {
144144
"node": "^18.18 || >=20"

packages/profile-sync-controller/CHANGELOG.md

Lines changed: 6 additions & 3 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+
## [20.0.0]
11+
1012
### Added
1113

12-
- Add new `AuthenticationController:getUserProfileMetaMetrics` method
13-
- This fetches data containing all MetaMetrics sessions related to the currently authenticated user, in the form of `UserProfileMetaMetrics`
14+
- Add new `AuthenticationController:getUserProfileMetaMetrics` method ([#6068](https://github.com/MetaMask/core/pull/6068))
15+
- This method fetches data using the Authentication API, returning all MetaMetrics sessions related to the currently authenticated user, in the form of `typeof UserProfileMetaMetrics`
1416

1517
### Changed
1618

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

650652
- Initial release
651653

652-
[Unreleased]: https://github.com/MetaMask/core/compare/@metamask/profile-sync-controller@19.0.0...HEAD
654+
[Unreleased]: https://github.com/MetaMask/core/compare/@metamask/profile-sync-controller@20.0.0...HEAD
655+
[20.0.0]: https://github.com/MetaMask/core/compare/@metamask/profile-sync-controller@19.0.0...@metamask/profile-sync-controller@20.0.0
653656
[19.0.0]: https://github.com/MetaMask/core/compare/@metamask/profile-sync-controller@18.0.0...@metamask/profile-sync-controller@19.0.0
654657
[18.0.0]: https://github.com/MetaMask/core/compare/@metamask/profile-sync-controller@17.1.0...@metamask/profile-sync-controller@18.0.0
655658
[17.1.0]: https://github.com/MetaMask/core/compare/@metamask/profile-sync-controller@17.0.0...@metamask/profile-sync-controller@17.1.0

packages/profile-sync-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/profile-sync-controller",
3-
"version": "19.0.0",
3+
"version": "20.0.0",
44
"description": "The profile sync helps developers synchronize data across multiple clients and devices in a privacy-preserving way. All data saved in the user storage database is encrypted client-side to preserve privacy. The user storage provides a modular design, giving developers the flexibility to construct and manage their storage spaces in a way that best suits their needs",
55
"keywords": [
66
"MetaMask",

yarn.lock

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -3959,7 +3959,7 @@ __metadata:
39593959
"@metamask/base-controller": "npm:^8.0.1"
39603960
"@metamask/controller-utils": "npm:^11.11.0"
39613961
"@metamask/keyring-controller": "npm:^22.1.0"
3962-
"@metamask/profile-sync-controller": "npm:^19.0.0"
3962+
"@metamask/profile-sync-controller": "npm:^20.0.0"
39633963
"@metamask/utils": "npm:^11.4.2"
39643964
"@types/jest": "npm:^27.4.1"
39653965
"@types/readable-stream": "npm:^2.3.0"
@@ -3978,7 +3978,7 @@ __metadata:
39783978
uuid: "npm:^8.3.2"
39793979
peerDependencies:
39803980
"@metamask/keyring-controller": ^22.0.0
3981-
"@metamask/profile-sync-controller": ^19.0.0
3981+
"@metamask/profile-sync-controller": ^20.0.0
39823982
languageName: unknown
39833983
linkType: soft
39843984

@@ -4141,7 +4141,7 @@ __metadata:
41414141
languageName: unknown
41424142
linkType: soft
41434143

4144-
"@metamask/profile-sync-controller@npm:^19.0.0, @metamask/profile-sync-controller@workspace:packages/profile-sync-controller":
4144+
"@metamask/profile-sync-controller@npm:^20.0.0, @metamask/profile-sync-controller@workspace:packages/profile-sync-controller":
41454145
version: 0.0.0-use.local
41464146
resolution: "@metamask/profile-sync-controller@workspace:packages/profile-sync-controller"
41474147
dependencies:

0 commit comments

Comments
 (0)