@metamask-previews/notification-services-controller 7.0.0-preview-5cc6dab9 → 8.0.0-preview-f5bd9ba5
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/CHANGELOG.md +6 -1
- package/package.json +5 -5
package/CHANGELOG.md
CHANGED
|
@@ -7,8 +7,12 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
|
|
|
7
7
|
|
|
8
8
|
## [Unreleased]
|
|
9
9
|
|
|
10
|
+
## [8.0.0]
|
|
11
|
+
|
|
10
12
|
### Changed
|
|
11
13
|
|
|
14
|
+
- **BREAKING:** bump `@metamask/keyring-controller` peer dependency to `^22.0.0` ([#5802](https://github.com/MetaMask/core/pull/5802))
|
|
15
|
+
- **BREAKING:** bump `@metamask/profile-sync-controller` peer dependency to `^15.0.0` ([#5802](https://github.com/MetaMask/core/pull/5802))
|
|
12
16
|
- Bump peer dependency `@metamask/profile-sync-controller` to `^14.0.0` ([#5789](https://github.com/MetaMask/core/pull/5789))
|
|
13
17
|
- While `@metamask/profile-sync-controller@14.0.0` contains breaking changes for clients, they are not breaking as a peer dependency here as the changes do not impact `@metamask/notification-services-controller`
|
|
14
18
|
- replaced `KeyringController:withKeyring` with `KeyringController:getState` to get the first HD keyring for notifications ([#5764](https://github.com/MetaMask/core/pull/5764))
|
|
@@ -416,7 +420,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
|
|
|
416
420
|
|
|
417
421
|
- Initial release
|
|
418
422
|
|
|
419
|
-
[Unreleased]: https://github.com/MetaMask/core/compare/@metamask/notification-services-controller@
|
|
423
|
+
[Unreleased]: https://github.com/MetaMask/core/compare/@metamask/notification-services-controller@8.0.0...HEAD
|
|
424
|
+
[8.0.0]: https://github.com/MetaMask/core/compare/@metamask/notification-services-controller@7.0.0...@metamask/notification-services-controller@8.0.0
|
|
420
425
|
[7.0.0]: https://github.com/MetaMask/core/compare/@metamask/notification-services-controller@6.0.1...@metamask/notification-services-controller@7.0.0
|
|
421
426
|
[6.0.1]: https://github.com/MetaMask/core/compare/@metamask/notification-services-controller@6.0.0...@metamask/notification-services-controller@6.0.1
|
|
422
427
|
[6.0.0]: https://github.com/MetaMask/core/compare/@metamask/notification-services-controller@5.0.1...@metamask/notification-services-controller@6.0.0
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@metamask-previews/notification-services-controller",
|
|
3
|
-
"version": "
|
|
3
|
+
"version": "8.0.0-preview-f5bd9ba5",
|
|
4
4
|
"description": "Manages New MetaMask decentralized Notification system",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"MetaMask",
|
|
@@ -122,8 +122,8 @@
|
|
|
122
122
|
"@lavamoat/allow-scripts": "^3.0.4",
|
|
123
123
|
"@lavamoat/preinstall-always-fail": "^2.1.0",
|
|
124
124
|
"@metamask/auto-changelog": "^3.4.4",
|
|
125
|
-
"@metamask/keyring-controller": "^
|
|
126
|
-
"@metamask/profile-sync-controller": "^
|
|
125
|
+
"@metamask/keyring-controller": "^22.0.0",
|
|
126
|
+
"@metamask/profile-sync-controller": "^15.0.0",
|
|
127
127
|
"@types/jest": "^27.4.1",
|
|
128
128
|
"@types/readable-stream": "^2.3.0",
|
|
129
129
|
"contentful": "^10.15.0",
|
|
@@ -137,8 +137,8 @@
|
|
|
137
137
|
"typescript": "~5.2.2"
|
|
138
138
|
},
|
|
139
139
|
"peerDependencies": {
|
|
140
|
-
"@metamask/keyring-controller": "^
|
|
141
|
-
"@metamask/profile-sync-controller": "^
|
|
140
|
+
"@metamask/keyring-controller": "^22.0.0",
|
|
141
|
+
"@metamask/profile-sync-controller": "^15.0.0"
|
|
142
142
|
},
|
|
143
143
|
"engines": {
|
|
144
144
|
"node": "^18.18 || >=20"
|