@metamask-previews/notification-services-controller 1.0.0-preview-e951f896 → 2.0.0-preview-08a5a1c4
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 +5 -5
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
|
+
## [2.0.0]
|
|
11
|
+
|
|
12
|
+
### Added
|
|
13
|
+
|
|
14
|
+
- Add support for locales on push notifications ([#5392](https://github.com/MetaMask/core/pull/5392))
|
|
15
|
+
|
|
16
|
+
### Changed
|
|
17
|
+
|
|
18
|
+
- **BREAKING:** Bump `@metamask/keyring-controller` peer dependency to `^20.0.0` ([#5426](https://github.com/MetaMask/core/pull/5426))
|
|
19
|
+
- **BREAKING:** Bump `@metamask/profile-sync-controller` peer dependency to `^9.0.0` ([#5426](https://github.com/MetaMask/core/pull/5426))
|
|
20
|
+
|
|
10
21
|
## [1.0.0]
|
|
11
22
|
|
|
12
23
|
### Added
|
|
@@ -337,7 +348,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
|
|
|
337
348
|
|
|
338
349
|
- Initial release
|
|
339
350
|
|
|
340
|
-
[Unreleased]: https://github.com/MetaMask/core/compare/@metamask/notification-services-controller@
|
|
351
|
+
[Unreleased]: https://github.com/MetaMask/core/compare/@metamask/notification-services-controller@2.0.0...HEAD
|
|
352
|
+
[2.0.0]: https://github.com/MetaMask/core/compare/@metamask/notification-services-controller@1.0.0...@metamask/notification-services-controller@2.0.0
|
|
341
353
|
[1.0.0]: https://github.com/MetaMask/core/compare/@metamask/notification-services-controller@0.21.0...@metamask/notification-services-controller@1.0.0
|
|
342
354
|
[0.21.0]: https://github.com/MetaMask/core/compare/@metamask/notification-services-controller@0.20.1...@metamask/notification-services-controller@0.21.0
|
|
343
355
|
[0.20.1]: https://github.com/MetaMask/core/compare/@metamask/notification-services-controller@0.20.0...@metamask/notification-services-controller@0.20.1
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@metamask-previews/notification-services-controller",
|
|
3
|
-
"version": "
|
|
3
|
+
"version": "2.0.0-preview-08a5a1c4",
|
|
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": "^20.0.0",
|
|
126
|
+
"@metamask/profile-sync-controller": "^9.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": "^20.0.0",
|
|
141
|
+
"@metamask/profile-sync-controller": "^9.0.0"
|
|
142
142
|
},
|
|
143
143
|
"engines": {
|
|
144
144
|
"node": "^18.18 || >=20"
|