@metamask-previews/notification-services-controller 21.0.0-preview-58cfb208 → 21.0.0-preview-fe83443

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.
Files changed (2) hide show
  1. package/CHANGELOG.md +10 -0
  2. package/package.json +3 -7
package/CHANGELOG.md CHANGED
@@ -7,6 +7,16 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
7
7
 
8
8
  ## [Unreleased]
9
9
 
10
+ ### Changed
11
+
12
+ - Move peer dependencies for controller and service packages to direct dependencies ([#7209](https://github.com/MetaMask/core/pull/7209))
13
+ - The dependencies moved are:
14
+ - `@metamask/keyring-controller` (^25.0.0)
15
+ - `@metamask/profile-sync-controller` (^27.0.0)
16
+ - In clients, it is now possible for multiple versions of these packages to exist in the dependency tree.
17
+ - For example, this scenario would be valid: a client relies on `@metamask/controller-a` 1.0.0 and `@metamask/controller-b` 1.0.0, and `@metamask/controller-b` depends on `@metamask/controller-a` 1.1.0.
18
+ - Note, however, that the versions specified in the client's `package.json` always "win", and you are expected to keep them up to date so as not to break controller and service intercommunication.
19
+
10
20
  ## [21.0.0]
11
21
 
12
22
  ### Changed
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@metamask-previews/notification-services-controller",
3
- "version": "21.0.0-preview-58cfb208",
3
+ "version": "21.0.0-preview-fe83443",
4
4
  "description": "Manages New MetaMask decentralized Notification system",
5
5
  "keywords": [
6
6
  "MetaMask",
@@ -113,7 +113,9 @@
113
113
  "@contentful/rich-text-html-renderer": "^16.5.2",
114
114
  "@metamask/base-controller": "^9.0.0",
115
115
  "@metamask/controller-utils": "^11.16.0",
116
+ "@metamask/keyring-controller": "^25.0.0",
116
117
  "@metamask/messenger": "^0.3.0",
118
+ "@metamask/profile-sync-controller": "^27.0.0",
117
119
  "@metamask/utils": "^11.8.1",
118
120
  "bignumber.js": "^9.1.2",
119
121
  "firebase": "^11.2.0",
@@ -125,8 +127,6 @@
125
127
  "@lavamoat/allow-scripts": "^3.0.4",
126
128
  "@lavamoat/preinstall-always-fail": "^2.1.0",
127
129
  "@metamask/auto-changelog": "^3.4.4",
128
- "@metamask/keyring-controller": "^25.0.0",
129
- "@metamask/profile-sync-controller": "^27.0.0",
130
130
  "@ts-bridge/cli": "^0.6.4",
131
131
  "@types/jest": "^27.4.1",
132
132
  "@types/readable-stream": "^2.3.0",
@@ -141,10 +141,6 @@
141
141
  "typedoc-plugin-missing-exports": "^2.0.0",
142
142
  "typescript": "~5.3.3"
143
143
  },
144
- "peerDependencies": {
145
- "@metamask/keyring-controller": "^25.0.0",
146
- "@metamask/profile-sync-controller": "^27.0.0"
147
- },
148
144
  "engines": {
149
145
  "node": "^18.18 || >=20"
150
146
  },