@checkstack/catalog-frontend 0.11.3 → 0.11.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 +55 -0
  2. package/package.json +14 -14
package/CHANGELOG.md CHANGED
@@ -1,5 +1,60 @@
1
1
  # @checkstack/catalog-frontend
2
2
 
3
+ ## 0.11.5
4
+
5
+ ### Patch Changes
6
+
7
+ - Updated dependencies [0626782]
8
+ - Updated dependencies [56e7c75]
9
+ - Updated dependencies [56e7c75]
10
+ - @checkstack/auth-common@0.8.3
11
+ - @checkstack/auth-frontend@0.7.5
12
+ - @checkstack/frontend-api@0.9.0
13
+ - @checkstack/notification-frontend@0.5.5
14
+ - @checkstack/catalog-common@2.3.4
15
+ - @checkstack/ui@1.15.1
16
+ - @checkstack/common@0.15.0
17
+ - @checkstack/notification-common@1.3.3
18
+ - @checkstack/tips-frontend@0.3.5
19
+ - @checkstack/gitops-frontend@0.5.5
20
+
21
+ ## 0.11.4
22
+
23
+ ### Patch Changes
24
+
25
+ - fb705df: Upgrade React 18 to React 19 across the platform.
26
+
27
+ **BREAKING (runtime frontend plugins):** React is shared as a Module Federation
28
+ singleton, so the host now provides **React 19** to every runtime plugin.
29
+ Frontend plugins built against React 18 must be rebuilt against React 19
30
+ (`react` / `react-dom` `^19`). The scaffold templates and the host/plugin MF
31
+ `requiredVersion` are updated to `^19`. `react` (and now `react-dom`) are pinned
32
+ to a single version across the workspace via syncpack so the singleton can never
33
+ skew (react and react-dom must match exactly).
34
+
35
+ The React 19 removed-API surface was audited - the codebase used only no-arg
36
+ `useRef()` (now `useRef<T | undefined>(undefined)`); no `ReactDOM.render`,
37
+ legacy context, string refs, or function-component `defaultProps`. This also
38
+ clears the `IMPORT_IS_UNDEFINED` build warnings for `React.use` /
39
+ `React.useOptimistic` (react-router 7 feature-detection), which React 19 exports.
40
+
41
+ The downstream `*-frontend` packages (and `@checkstack/infrastructure-common`)
42
+ receive only the mechanical `react` dependency bump (`patch`); the framework
43
+ packages carrying the shared-singleton change are bumped `minor`.
44
+
45
+ - Updated dependencies [9d8961c]
46
+ - Updated dependencies [fb705df]
47
+ - @checkstack/ui@1.15.0
48
+ - @checkstack/frontend-api@0.8.0
49
+ - @checkstack/auth-frontend@0.7.4
50
+ - @checkstack/gitops-frontend@0.5.4
51
+ - @checkstack/notification-frontend@0.5.4
52
+ - @checkstack/tips-frontend@0.3.4
53
+ - @checkstack/catalog-common@2.3.3
54
+ - @checkstack/auth-common@0.8.2
55
+ - @checkstack/common@0.14.1
56
+ - @checkstack/notification-common@1.3.2
57
+
3
58
  ## 0.11.3
4
59
 
5
60
  ### Patch Changes
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@checkstack/catalog-frontend",
3
- "version": "0.11.3",
3
+ "version": "0.11.5",
4
4
  "license": "Elastic-2.0",
5
5
  "type": "module",
6
6
  "main": "src/index.tsx",
@@ -13,27 +13,27 @@
13
13
  "lint:code": "eslint . --max-warnings 0"
14
14
  },
15
15
  "dependencies": {
16
- "@checkstack/auth-common": "0.8.2",
17
- "@checkstack/auth-frontend": "0.7.3",
18
- "@checkstack/catalog-common": "2.3.2",
19
- "@checkstack/common": "0.14.1",
20
- "@checkstack/frontend-api": "0.7.2",
21
- "@checkstack/gitops-frontend": "0.5.3",
22
- "@checkstack/notification-common": "1.3.2",
23
- "@checkstack/notification-frontend": "0.5.3",
24
- "@checkstack/tips-frontend": "0.3.3",
25
- "@checkstack/ui": "1.14.0",
16
+ "@checkstack/auth-common": "0.8.3",
17
+ "@checkstack/auth-frontend": "0.7.5",
18
+ "@checkstack/catalog-common": "2.3.4",
19
+ "@checkstack/common": "0.15.0",
20
+ "@checkstack/frontend-api": "0.9.0",
21
+ "@checkstack/gitops-frontend": "0.5.5",
22
+ "@checkstack/notification-common": "1.3.3",
23
+ "@checkstack/notification-frontend": "0.5.5",
24
+ "@checkstack/tips-frontend": "0.3.5",
25
+ "@checkstack/ui": "1.15.1",
26
26
  "@dnd-kit/core": "^6.3.1",
27
27
  "@dnd-kit/utilities": "^3.2.2",
28
28
  "lucide-react": "^1.17.0",
29
- "react": "^18.3.1",
29
+ "react": "19.2.7",
30
30
  "react-router-dom": "^7.16.0",
31
31
  "zod": "^4.2.1"
32
32
  },
33
33
  "devDependencies": {
34
34
  "typescript": "^5.0.0",
35
- "@types/react": "^18.2.0",
35
+ "@types/react": "^19.0.0",
36
36
  "@checkstack/tsconfig": "0.0.7",
37
- "@checkstack/scripts": "0.5.0"
37
+ "@checkstack/scripts": "0.6.1"
38
38
  }
39
39
  }