@checkstack/healthcheck-frontend 0.11.1 → 0.11.3

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 CHANGED
@@ -1,5 +1,32 @@
1
1
  # @checkstack/healthcheck-frontend
2
2
 
3
+ ## 0.11.3
4
+
5
+ ### Patch Changes
6
+
7
+ - 6c743d4: Resolve AJV version mismatch and update to 8.18.0 for security reasons. Also fixed a TypeScript error in the HealthCheck latency chart caused by the Recharts v3 API change.
8
+ - Updated dependencies [67158e2]
9
+ - Updated dependencies [6c743d4]
10
+ - @checkstack/auth-frontend@0.5.13
11
+ - @checkstack/catalog-common@1.2.10
12
+ - @checkstack/common@0.6.4
13
+ - @checkstack/dashboard-frontend@0.3.19
14
+ - @checkstack/frontend-api@0.3.8
15
+ - @checkstack/healthcheck-common@0.8.4
16
+ - @checkstack/signal-frontend@0.0.14
17
+ - @checkstack/ui@1.1.3
18
+
19
+ ## 0.11.2
20
+
21
+ ### Patch Changes
22
+
23
+ - Updated dependencies [0603d39]
24
+ - @checkstack/frontend-api@0.3.7
25
+ - @checkstack/auth-frontend@0.5.12
26
+ - @checkstack/catalog-common@1.2.9
27
+ - @checkstack/dashboard-frontend@0.3.18
28
+ - @checkstack/ui@1.1.2
29
+
3
30
  ## 0.11.1
4
31
 
5
32
  ### Patch Changes
package/package.json CHANGED
@@ -1,27 +1,29 @@
1
1
  {
2
2
  "name": "@checkstack/healthcheck-frontend",
3
- "version": "0.11.1",
3
+ "version": "0.11.3",
4
4
  "type": "module",
5
5
  "main": "src/index.tsx",
6
+ "checkstack": {
7
+ "type": "frontend"
8
+ },
6
9
  "scripts": {
7
10
  "typecheck": "tsc --noEmit",
8
11
  "lint": "bun run lint:code",
9
12
  "lint:code": "eslint . --max-warnings 0"
10
13
  },
11
14
  "dependencies": {
12
- "@checkstack/auth-frontend": "0.5.10",
13
- "@checkstack/catalog-common": "1.2.7",
14
- "@checkstack/common": "0.6.2",
15
- "@checkstack/dashboard-frontend": "0.3.16",
16
- "@checkstack/frontend-api": "0.3.5",
17
- "@checkstack/healthcheck-common": "0.8.2",
18
- "@checkstack/signal-frontend": "0.0.12",
19
- "@checkstack/ui": "1.1.0",
20
- "ajv": "^8.17.1",
15
+ "@checkstack/auth-frontend": "0.5.12",
16
+ "@checkstack/catalog-common": "1.2.9",
17
+ "@checkstack/common": "0.6.3",
18
+ "@checkstack/dashboard-frontend": "0.3.18",
19
+ "@checkstack/frontend-api": "0.3.7",
20
+ "@checkstack/healthcheck-common": "0.8.3",
21
+ "@checkstack/signal-frontend": "0.0.13",
22
+ "@checkstack/ui": "1.1.2",
23
+ "ajv": "^8.18.0",
21
24
  "ajv-formats": "^3.0.1",
22
25
  "date-fns": "^4.1.0",
23
26
  "lucide-react": "^0.344.0",
24
- "prismjs": "^1.30.0",
25
27
  "react": "^18.2.0",
26
28
  "react-router-dom": "^6.20.0",
27
29
  "recharts": "^3.6.0",
@@ -31,7 +33,6 @@
31
33
  "devDependencies": {
32
34
  "@checkstack/scripts": "0.1.1",
33
35
  "@checkstack/tsconfig": "0.0.3",
34
- "@types/prismjs": "^1.26.5",
35
36
  "@types/react": "^18.2.0",
36
37
  "typescript": "^5.0.0"
37
38
  }
@@ -86,7 +86,7 @@ export const HealthCheckLatencyChart: React.FC<
86
86
  fontSize={12}
87
87
  tickFormatter={(v: number) => `${v}ms`}
88
88
  />
89
- <Tooltip<number, "latencyMs">
89
+ <Tooltip
90
90
  content={({ active, payload }) => {
91
91
  // eslint-disable-next-line unicorn/no-null -- recharts requires null return, not undefined
92
92
  if (!active || !payload?.length) return null;