@actuate-media/plugin-ai 0.5.4 → 0.5.5

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 +13 -0
  2. package/package.json +3 -3
package/CHANGELOG.md CHANGED
@@ -1,5 +1,18 @@
1
1
  # @actuate-media/plugin-ai
2
2
 
3
+ ## 0.5.5
4
+
5
+ ### Patch Changes
6
+
7
+ - e25cd48: Standardize React peer ranges to `^18.0.0 || ^19.0.0`.
8
+
9
+ Plugin React peer ranges were inconsistent: `plugin-ai`, `plugin-commerce`, and
10
+ `plugin-seo` pinned `react: ^19.2.0` (excluding React 18, which `cms-core`
11
+ supports via `react >=18.0.0`), while the others used `^18.0.0 || ^19.2.0`
12
+ (excluding React 19.0/19.1). Either produced an `ERESOLVE` install failure for
13
+ consumers on the excluded versions. All bundled plugins now declare `react`
14
+ (and `react-dom` where already peered) as `^18.0.0 || ^19.0.0`.
15
+
3
16
  ## 0.5.4
4
17
 
5
18
  ### Patch Changes
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@actuate-media/plugin-ai",
3
- "version": "0.5.4",
3
+ "version": "0.5.5",
4
4
  "license": "MIT",
5
5
  "repository": {
6
6
  "type": "git",
@@ -28,11 +28,11 @@
28
28
  "@types/react": "^19.0.0",
29
29
  "typescript": "^5.7.0",
30
30
  "vitest": "^4.1.0",
31
- "@actuate-media/cms-core": "0.93.3"
31
+ "@actuate-media/cms-core": "0.93.4"
32
32
  },
33
33
  "peerDependencies": {
34
34
  "@actuate-media/cms-core": ">=0.1.0",
35
- "react": "^19.2.0"
35
+ "react": "^18.0.0 || ^19.0.0"
36
36
  },
37
37
  "scripts": {
38
38
  "build": "tsc --project tsconfig.json",