@metamask/notification-services-controller 16.0.0 → 17.0.0
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 +11 -1
- package/package.json +7 -7
package/CHANGELOG.md
CHANGED
|
@@ -7,6 +7,15 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
|
|
|
7
7
|
|
|
8
8
|
## [Unreleased]
|
|
9
9
|
|
|
10
|
+
## [17.0.0]
|
|
11
|
+
|
|
12
|
+
### Changed
|
|
13
|
+
|
|
14
|
+
- **BREAKING:** Bump peer dependency `@metamask/keyring-controller` from `^22.0.0` to `^23.0.0` ([#6345](https://github.com/MetaMask/core/pull/6345))
|
|
15
|
+
- **BREAKING:** Bump peer dependency `@metamask/profile-sync-controller` from `^23.0.0` to `^24.0.0` ([#6345](https://github.com/MetaMask/core/pull/6345))
|
|
16
|
+
- Bump `@metamask/base-controller` from `^8.0.1` to `^8.1.0` ([#6284](https://github.com/MetaMask/core/pull/6284))
|
|
17
|
+
- Bump `@metamask/controller-utils` from `^11.11.0` to `^11.12.0` ([#6303](https://github.com/MetaMask/core/pull/6303))
|
|
18
|
+
|
|
10
19
|
## [16.0.0]
|
|
11
20
|
|
|
12
21
|
### Changed
|
|
@@ -519,7 +528,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
|
|
|
519
528
|
|
|
520
529
|
- Initial release
|
|
521
530
|
|
|
522
|
-
[Unreleased]: https://github.com/MetaMask/core/compare/@metamask/notification-services-controller@
|
|
531
|
+
[Unreleased]: https://github.com/MetaMask/core/compare/@metamask/notification-services-controller@17.0.0...HEAD
|
|
532
|
+
[17.0.0]: https://github.com/MetaMask/core/compare/@metamask/notification-services-controller@16.0.0...@metamask/notification-services-controller@17.0.0
|
|
523
533
|
[16.0.0]: https://github.com/MetaMask/core/compare/@metamask/notification-services-controller@15.0.0...@metamask/notification-services-controller@16.0.0
|
|
524
534
|
[15.0.0]: https://github.com/MetaMask/core/compare/@metamask/notification-services-controller@14.0.0...@metamask/notification-services-controller@15.0.0
|
|
525
535
|
[14.0.0]: https://github.com/MetaMask/core/compare/@metamask/notification-services-controller@13.0.0...@metamask/notification-services-controller@14.0.0
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@metamask/notification-services-controller",
|
|
3
|
-
"version": "
|
|
3
|
+
"version": "17.0.0",
|
|
4
4
|
"description": "Manages New MetaMask decentralized Notification system",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"MetaMask",
|
|
@@ -110,8 +110,8 @@
|
|
|
110
110
|
},
|
|
111
111
|
"dependencies": {
|
|
112
112
|
"@contentful/rich-text-html-renderer": "^16.5.2",
|
|
113
|
-
"@metamask/base-controller": "^8.0
|
|
114
|
-
"@metamask/controller-utils": "^11.
|
|
113
|
+
"@metamask/base-controller": "^8.1.0",
|
|
114
|
+
"@metamask/controller-utils": "^11.12.0",
|
|
115
115
|
"@metamask/utils": "^11.4.2",
|
|
116
116
|
"bignumber.js": "^9.1.2",
|
|
117
117
|
"firebase": "^11.2.0",
|
|
@@ -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": "^23.0.0",
|
|
126
|
+
"@metamask/profile-sync-controller": "^24.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": "^23.0.0",
|
|
141
|
+
"@metamask/profile-sync-controller": "^24.0.0"
|
|
142
142
|
},
|
|
143
143
|
"engines": {
|
|
144
144
|
"node": "^18.18 || >=20"
|