@checkstack/dashboard-frontend 0.3.23 → 0.3.24

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,41 @@
1
1
  # @checkstack/dashboard-frontend
2
2
 
3
+ ## 0.3.24
4
+
5
+ ### Patch Changes
6
+
7
+ - 1f191cf: Add SYSTEM_STATUS_CHANGED signal and dependency-driven notification improvements
8
+
9
+ **healthcheck-common:**
10
+
11
+ - 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
12
+
13
+ **healthcheck-backend:**
14
+
15
+ - Broadcast `SYSTEM_STATUS_CHANGED` signal at both status transition code paths in the queue executor
16
+
17
+ **healthcheck-frontend:**
18
+
19
+ - Switch `SystemHealthBadge` from `HEALTH_CHECK_RUN_COMPLETED` to `SYSTEM_STATUS_CHANGED` to reduce unnecessary refetch noise
20
+
21
+ **dashboard-frontend:**
22
+
23
+ - Switch `SystemBadgeDataProvider` from `HEALTH_CHECK_RUN_COMPLETED` to `SYSTEM_STATUS_CHANGED` for more efficient badge updates
24
+
25
+ **maintenance-frontend:**
26
+
27
+ - Clarify that notification suppression toggle also applies to downstream dependency-driven notifications
28
+
29
+ **incident-frontend:**
30
+
31
+ - Clarify that notification suppression toggle also applies to downstream dependency-driven notifications
32
+
33
+ - Updated dependencies [1f191cf]
34
+ - Updated dependencies [3f36a64]
35
+ - @checkstack/healthcheck-common@0.9.0
36
+ - @checkstack/catalog-common@1.3.0
37
+ - @checkstack/catalog-frontend@0.5.7
38
+
3
39
  ## 0.3.23
4
40
 
5
41
  ### 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.24",
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