@metamask-previews/notification-services-controller 3.0.0-preview-e744341c → 4.0.0-preview-03c4c9c3
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 +14 -1
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -7,6 +7,18 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
|
|
|
7
7
|
|
|
8
8
|
## [Unreleased]
|
|
9
9
|
|
|
10
|
+
## [4.0.0]
|
|
11
|
+
|
|
12
|
+
### Changed
|
|
13
|
+
|
|
14
|
+
- **BREAKING** split `NotificationServiceController` constructor and initialization methods ([#5504](https://github.com/MetaMask/core/pull/5504))
|
|
15
|
+
- Now requires calling `.init()` to finalize initialization, making it compatible with the Modular Controller Initialization architecture.
|
|
16
|
+
|
|
17
|
+
### Fixed
|
|
18
|
+
|
|
19
|
+
- use `withKeyring` to get main keyring accounts for enabling notifications ([#5459](https://github.com/MetaMask/core/pull/5459))
|
|
20
|
+
- add support for fetching shared announcements cross platforms ([#5441](https://github.com/MetaMask/core/pull/5441))
|
|
21
|
+
|
|
10
22
|
## [3.0.0]
|
|
11
23
|
|
|
12
24
|
### Changed
|
|
@@ -355,7 +367,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
|
|
|
355
367
|
|
|
356
368
|
- Initial release
|
|
357
369
|
|
|
358
|
-
[Unreleased]: https://github.com/MetaMask/core/compare/@metamask/notification-services-controller@
|
|
370
|
+
[Unreleased]: https://github.com/MetaMask/core/compare/@metamask/notification-services-controller@4.0.0...HEAD
|
|
371
|
+
[4.0.0]: https://github.com/MetaMask/core/compare/@metamask/notification-services-controller@3.0.0...@metamask/notification-services-controller@4.0.0
|
|
359
372
|
[3.0.0]: https://github.com/MetaMask/core/compare/@metamask/notification-services-controller@2.0.0...@metamask/notification-services-controller@3.0.0
|
|
360
373
|
[2.0.0]: https://github.com/MetaMask/core/compare/@metamask/notification-services-controller@1.0.0...@metamask/notification-services-controller@2.0.0
|
|
361
374
|
[1.0.0]: https://github.com/MetaMask/core/compare/@metamask/notification-services-controller@0.21.0...@metamask/notification-services-controller@1.0.0
|
package/package.json
CHANGED