@checkstack/dashboard-frontend 0.3.23 → 0.3.25

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,48 @@
1
1
  # @checkstack/dashboard-frontend
2
2
 
3
+ ## 0.3.25
4
+
5
+ ### Patch Changes
6
+
7
+ - Updated dependencies [54a5f80]
8
+ - @checkstack/healthcheck-common@0.10.0
9
+
10
+ ## 0.3.24
11
+
12
+ ### Patch Changes
13
+
14
+ - 1f191cf: Add SYSTEM_STATUS_CHANGED signal and dependency-driven notification improvements
15
+
16
+ **healthcheck-common:**
17
+
18
+ - New `SYSTEM_STATUS_CHANGED` signal that fires only on system-level health status transitions (healthy ↔ degraded ↔ unhealthy), providing a low-noise alternative to `HEALTH_CHECK_RUN_COMPLETED` for coarse-grained reactivity
19
+
20
+ **healthcheck-backend:**
21
+
22
+ - Broadcast `SYSTEM_STATUS_CHANGED` signal at both status transition code paths in the queue executor
23
+
24
+ **healthcheck-frontend:**
25
+
26
+ - Switch `SystemHealthBadge` from `HEALTH_CHECK_RUN_COMPLETED` to `SYSTEM_STATUS_CHANGED` to reduce unnecessary refetch noise
27
+
28
+ **dashboard-frontend:**
29
+
30
+ - Switch `SystemBadgeDataProvider` from `HEALTH_CHECK_RUN_COMPLETED` to `SYSTEM_STATUS_CHANGED` for more efficient badge updates
31
+
32
+ **maintenance-frontend:**
33
+
34
+ - Clarify that notification suppression toggle also applies to downstream dependency-driven notifications
35
+
36
+ **incident-frontend:**
37
+
38
+ - Clarify that notification suppression toggle also applies to downstream dependency-driven notifications
39
+
40
+ - Updated dependencies [1f191cf]
41
+ - Updated dependencies [3f36a64]
42
+ - @checkstack/healthcheck-common@0.9.0
43
+ - @checkstack/catalog-common@1.3.0
44
+ - @checkstack/catalog-frontend@0.5.7
45
+
3
46
  ## 0.3.23
4
47
 
5
48
  ### Patch Changes
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@checkstack/dashboard-frontend",
3
- "version": "0.3.23",
3
+ "version": "0.3.25",
4
4
  "type": "module",
5
5
  "main": "src/index.tsx",
6
6
  "checkstack": {
@@ -13,20 +13,20 @@
13
13
  "lint:code": "eslint . --max-warnings 0"
14
14
  },
15
15
  "dependencies": {
16
- "@checkstack/auth-frontend": "0.5.13",
17
- "@checkstack/catalog-common": "1.2.10",
18
- "@checkstack/catalog-frontend": "0.5.2",
16
+ "@checkstack/auth-frontend": "0.5.17",
17
+ "@checkstack/catalog-common": "1.2.11",
18
+ "@checkstack/catalog-frontend": "0.5.6",
19
19
  "@checkstack/command-common": "0.2.7",
20
- "@checkstack/command-frontend": "0.2.16",
20
+ "@checkstack/command-frontend": "0.2.19",
21
21
  "@checkstack/common": "0.6.4",
22
22
  "@checkstack/frontend-api": "0.3.8",
23
23
  "@checkstack/healthcheck-common": "0.8.4",
24
24
  "@checkstack/incident-common": "0.4.6",
25
25
  "@checkstack/maintenance-common": "0.4.8",
26
26
  "@checkstack/notification-common": "0.2.7",
27
- "@checkstack/queue-frontend": "0.2.16",
27
+ "@checkstack/queue-frontend": "0.2.19",
28
28
  "@checkstack/signal-frontend": "0.0.14",
29
- "@checkstack/ui": "1.1.3",
29
+ "@checkstack/ui": "1.2.0",
30
30
  "lucide-react": "^0.344.0",
31
31
  "react": "^18.2.0",
32
32
  "react-router-dom": "^6.22.0"
@@ -3,7 +3,7 @@ import { usePluginClient, useQueryClient } from "@checkstack/frontend-api";
3
3
  import { useSignal } from "@checkstack/signal-frontend";
4
4
  import {
5
5
  HealthCheckApi,
6
- HEALTH_CHECK_RUN_COMPLETED,
6
+ SYSTEM_STATUS_CHANGED,
7
7
  type SystemHealthStatusResponse,
8
8
  } from "@checkstack/healthcheck-common";
9
9
  import {
@@ -96,7 +96,7 @@ export const SystemBadgeDataProvider: React.FC<
96
96
  [systemIds, queryClient]
97
97
  );
98
98
 
99
- useSignal(HEALTH_CHECK_RUN_COMPLETED, ({ systemId }) => {
99
+ useSignal(SYSTEM_STATUS_CHANGED, ({ systemId }) => {
100
100
  refetchHealth(systemId);
101
101
  });
102
102