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