@metamask-previews/notification-services-controller 0.20.1-preview-74b4a89 → 0.21.0-preview-ea165590
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 +13 -1
- package/package.json +3 -3
package/CHANGELOG.md
CHANGED
|
@@ -7,6 +7,17 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
|
|
|
7
7
|
|
|
8
8
|
## [Unreleased]
|
|
9
9
|
|
|
10
|
+
## [0.21.0]
|
|
11
|
+
|
|
12
|
+
### Added
|
|
13
|
+
|
|
14
|
+
- Lock conditional checks when initializing accounts inside the `NotificationServicesController` ([#5323](https://github.com/MetaMask/core/pull/5323))
|
|
15
|
+
- Accounts initialize call when the wallet is unlocked ([#5323](https://github.com/MetaMask/core/pull/5323))
|
|
16
|
+
|
|
17
|
+
### Changed
|
|
18
|
+
|
|
19
|
+
- **BREAKING:** Bump `@metamask/profile-sync-controller` peer dependency from `^7.0.0` to `^8.0.0` ([#5318](https://github.com/MetaMask/core/pull/5318))
|
|
20
|
+
|
|
10
21
|
## [0.20.1]
|
|
11
22
|
|
|
12
23
|
### Changed
|
|
@@ -308,7 +319,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
|
|
|
308
319
|
|
|
309
320
|
- Initial release
|
|
310
321
|
|
|
311
|
-
[Unreleased]: https://github.com/MetaMask/core/compare/@metamask/notification-services-controller@0.
|
|
322
|
+
[Unreleased]: https://github.com/MetaMask/core/compare/@metamask/notification-services-controller@0.21.0...HEAD
|
|
323
|
+
[0.21.0]: https://github.com/MetaMask/core/compare/@metamask/notification-services-controller@0.20.1...@metamask/notification-services-controller@0.21.0
|
|
312
324
|
[0.20.1]: https://github.com/MetaMask/core/compare/@metamask/notification-services-controller@0.20.0...@metamask/notification-services-controller@0.20.1
|
|
313
325
|
[0.20.0]: https://github.com/MetaMask/core/compare/@metamask/notification-services-controller@0.19.0...@metamask/notification-services-controller@0.20.0
|
|
314
326
|
[0.19.0]: https://github.com/MetaMask/core/compare/@metamask/notification-services-controller@0.18.0...@metamask/notification-services-controller@0.19.0
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@metamask-previews/notification-services-controller",
|
|
3
|
-
"version": "0.
|
|
3
|
+
"version": "0.21.0-preview-ea165590",
|
|
4
4
|
"description": "Manages New MetaMask decentralized Notification system",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"MetaMask",
|
|
@@ -113,7 +113,7 @@
|
|
|
113
113
|
"@lavamoat/preinstall-always-fail": "^2.1.0",
|
|
114
114
|
"@metamask/auto-changelog": "^3.4.4",
|
|
115
115
|
"@metamask/keyring-controller": "^19.1.0",
|
|
116
|
-
"@metamask/profile-sync-controller": "^
|
|
116
|
+
"@metamask/profile-sync-controller": "^8.0.0",
|
|
117
117
|
"@types/jest": "^27.4.1",
|
|
118
118
|
"@types/readable-stream": "^2.3.0",
|
|
119
119
|
"contentful": "^10.15.0",
|
|
@@ -128,7 +128,7 @@
|
|
|
128
128
|
},
|
|
129
129
|
"peerDependencies": {
|
|
130
130
|
"@metamask/keyring-controller": "^19.0.0",
|
|
131
|
-
"@metamask/profile-sync-controller": "^
|
|
131
|
+
"@metamask/profile-sync-controller": "^8.0.0"
|
|
132
132
|
},
|
|
133
133
|
"engines": {
|
|
134
134
|
"node": "^18.18 || >=20"
|