@metamask-previews/notification-services-controller 0.12.1-preview-3f52b814 → 0.13.0-preview-e6757fdb
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 +10 -1
- package/package.json +6 -6
package/CHANGELOG.md
CHANGED
|
@@ -7,6 +7,14 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
|
|
|
7
7
|
|
|
8
8
|
## [Unreleased]
|
|
9
9
|
|
|
10
|
+
## [0.13.0]
|
|
11
|
+
|
|
12
|
+
### Changed
|
|
13
|
+
|
|
14
|
+
- **BREAKING:** Bump `@metamask/keyring-controller` peer dependency from `^17.0.0` to `^18.0.0` ([#4195](https://github.com/MetaMask/core/pull/4195))
|
|
15
|
+
- **BREAKING:** Bump `@metamask/profile-sync-controller` peer dependency from `^0.9.7` to `^1.0.0` ([#4902](https://github.com/MetaMask/core/pull/4902))
|
|
16
|
+
- Bump `@metamask/controller-utils` from `^11.4.2` to `^11.4.3` ([#4195](https://github.com/MetaMask/core/pull/4195))
|
|
17
|
+
|
|
10
18
|
## [0.12.1]
|
|
11
19
|
|
|
12
20
|
### Uncategorized
|
|
@@ -239,7 +247,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
|
|
|
239
247
|
|
|
240
248
|
- Initial release
|
|
241
249
|
|
|
242
|
-
[Unreleased]: https://github.com/MetaMask/core/compare/@metamask/notification-services-controller@0.
|
|
250
|
+
[Unreleased]: https://github.com/MetaMask/core/compare/@metamask/notification-services-controller@0.13.0...HEAD
|
|
251
|
+
[0.13.0]: https://github.com/MetaMask/core/compare/@metamask/notification-services-controller@0.12.1...@metamask/notification-services-controller@0.13.0
|
|
243
252
|
[0.12.1]: https://github.com/MetaMask/core/compare/@metamask/notification-services-controller@0.12.0...@metamask/notification-services-controller@0.12.1
|
|
244
253
|
[0.12.0]: https://github.com/MetaMask/core/compare/@metamask/notification-services-controller@0.11.0...@metamask/notification-services-controller@0.12.0
|
|
245
254
|
[0.11.0]: https://github.com/MetaMask/core/compare/@metamask/notification-services-controller@0.10.0...@metamask/notification-services-controller@0.11.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.13.0-preview-e6757fdb",
|
|
4
4
|
"description": "Manages New MetaMask decentralized Notification system",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"MetaMask",
|
|
@@ -101,7 +101,7 @@
|
|
|
101
101
|
"dependencies": {
|
|
102
102
|
"@contentful/rich-text-html-renderer": "^16.5.2",
|
|
103
103
|
"@metamask/base-controller": "^7.0.2",
|
|
104
|
-
"@metamask/controller-utils": "^11.4.
|
|
104
|
+
"@metamask/controller-utils": "^11.4.3",
|
|
105
105
|
"@metamask/utils": "^10.0.0",
|
|
106
106
|
"bignumber.js": "^9.1.2",
|
|
107
107
|
"firebase": "^10.11.0",
|
|
@@ -111,8 +111,8 @@
|
|
|
111
111
|
"devDependencies": {
|
|
112
112
|
"@lavamoat/allow-scripts": "^3.0.4",
|
|
113
113
|
"@metamask/auto-changelog": "^3.4.4",
|
|
114
|
-
"@metamask/keyring-controller": "^
|
|
115
|
-
"@metamask/profile-sync-controller": "^0.
|
|
114
|
+
"@metamask/keyring-controller": "^18.0.0",
|
|
115
|
+
"@metamask/profile-sync-controller": "^1.0.0",
|
|
116
116
|
"@types/jest": "^27.4.1",
|
|
117
117
|
"@types/readable-stream": "^2.3.0",
|
|
118
118
|
"contentful": "^10.15.0",
|
|
@@ -126,8 +126,8 @@
|
|
|
126
126
|
"typescript": "~5.2.2"
|
|
127
127
|
},
|
|
128
128
|
"peerDependencies": {
|
|
129
|
-
"@metamask/keyring-controller": "^
|
|
130
|
-
"@metamask/profile-sync-controller": "^
|
|
129
|
+
"@metamask/keyring-controller": "^18.0.0",
|
|
130
|
+
"@metamask/profile-sync-controller": "^1.0.0"
|
|
131
131
|
},
|
|
132
132
|
"engines": {
|
|
133
133
|
"node": "^18.18 || >=20"
|