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