@checkstack/pluginmanager-frontend 0.4.2 → 0.4.4

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 +44 -0
  2. package/package.json +7 -7
package/CHANGELOG.md CHANGED
@@ -1,5 +1,49 @@
1
1
  # @checkstack/pluginmanager-frontend
2
2
 
3
+ ## 0.4.4
4
+
5
+ ### Patch Changes
6
+
7
+ - fb705df: Upgrade React 18 to React 19 across the platform.
8
+
9
+ **BREAKING (runtime frontend plugins):** React is shared as a Module Federation
10
+ singleton, so the host now provides **React 19** to every runtime plugin.
11
+ Frontend plugins built against React 18 must be rebuilt against React 19
12
+ (`react` / `react-dom` `^19`). The scaffold templates and the host/plugin MF
13
+ `requiredVersion` are updated to `^19`. `react` (and now `react-dom`) are pinned
14
+ to a single version across the workspace via syncpack so the singleton can never
15
+ skew (react and react-dom must match exactly).
16
+
17
+ The React 19 removed-API surface was audited - the codebase used only no-arg
18
+ `useRef()` (now `useRef<T | undefined>(undefined)`); no `ReactDOM.render`,
19
+ legacy context, string refs, or function-component `defaultProps`. This also
20
+ clears the `IMPORT_IS_UNDEFINED` build warnings for `React.use` /
21
+ `React.useOptimistic` (react-router 7 feature-detection), which React 19 exports.
22
+
23
+ The downstream `*-frontend` packages (and `@checkstack/infrastructure-common`)
24
+ receive only the mechanical `react` dependency bump (`patch`); the framework
25
+ packages carrying the shared-singleton change are bumped `minor`.
26
+
27
+ - Updated dependencies [9d8961c]
28
+ - Updated dependencies [fb705df]
29
+ - @checkstack/ui@1.15.0
30
+ - @checkstack/frontend-api@0.8.0
31
+ - @checkstack/tips-frontend@0.3.4
32
+ - @checkstack/common@0.14.1
33
+ - @checkstack/pluginmanager-common@0.2.7
34
+
35
+ ## 0.4.3
36
+
37
+ ### Patch Changes
38
+
39
+ - Updated dependencies [ed251b6]
40
+ - Updated dependencies [968c12f]
41
+ - @checkstack/ui@1.14.0
42
+ - @checkstack/tips-frontend@0.3.3
43
+ - @checkstack/common@0.14.1
44
+ - @checkstack/frontend-api@0.7.2
45
+ - @checkstack/pluginmanager-common@0.2.7
46
+
3
47
  ## 0.4.2
4
48
 
5
49
  ### Patch Changes
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@checkstack/pluginmanager-frontend",
3
- "version": "0.4.2",
3
+ "version": "0.4.4",
4
4
  "license": "Elastic-2.0",
5
5
  "type": "module",
6
6
  "main": "src/index.tsx",
@@ -14,18 +14,18 @@
14
14
  },
15
15
  "dependencies": {
16
16
  "@checkstack/common": "0.14.1",
17
- "@checkstack/frontend-api": "0.7.2",
17
+ "@checkstack/frontend-api": "0.8.0",
18
18
  "@checkstack/pluginmanager-common": "0.2.7",
19
- "@checkstack/tips-frontend": "0.3.2",
20
- "@checkstack/ui": "1.13.2",
19
+ "@checkstack/tips-frontend": "0.3.4",
20
+ "@checkstack/ui": "1.15.0",
21
21
  "lucide-react": "^1.17.0",
22
- "react": "^18.3.1",
22
+ "react": "19.2.7",
23
23
  "react-router-dom": "^7.16.0"
24
24
  },
25
25
  "devDependencies": {
26
26
  "typescript": "^5.0.0",
27
- "@types/react": "^18.2.0",
27
+ "@types/react": "^19.0.0",
28
28
  "@checkstack/tsconfig": "0.0.7",
29
- "@checkstack/scripts": "0.4.2"
29
+ "@checkstack/scripts": "0.6.0"
30
30
  }
31
31
  }