@checkstack/incident-frontend 0.4.13 → 0.4.15

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,46 @@
1
1
  # @checkstack/incident-frontend
2
2
 
3
+ ## 0.4.15
4
+
5
+ ### Patch Changes
6
+
7
+ - @checkstack/dashboard-frontend@0.3.25
8
+
9
+ ## 0.4.14
10
+
11
+ ### Patch Changes
12
+
13
+ - 1f191cf: Add SYSTEM_STATUS_CHANGED signal and dependency-driven notification improvements
14
+
15
+ **healthcheck-common:**
16
+
17
+ - 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
18
+
19
+ **healthcheck-backend:**
20
+
21
+ - Broadcast `SYSTEM_STATUS_CHANGED` signal at both status transition code paths in the queue executor
22
+
23
+ **healthcheck-frontend:**
24
+
25
+ - Switch `SystemHealthBadge` from `HEALTH_CHECK_RUN_COMPLETED` to `SYSTEM_STATUS_CHANGED` to reduce unnecessary refetch noise
26
+
27
+ **dashboard-frontend:**
28
+
29
+ - Switch `SystemBadgeDataProvider` from `HEALTH_CHECK_RUN_COMPLETED` to `SYSTEM_STATUS_CHANGED` for more efficient badge updates
30
+
31
+ **maintenance-frontend:**
32
+
33
+ - Clarify that notification suppression toggle also applies to downstream dependency-driven notifications
34
+
35
+ **incident-frontend:**
36
+
37
+ - Clarify that notification suppression toggle also applies to downstream dependency-driven notifications
38
+
39
+ - Updated dependencies [1f191cf]
40
+ - Updated dependencies [3f36a64]
41
+ - @checkstack/dashboard-frontend@0.3.24
42
+ - @checkstack/catalog-common@1.3.0
43
+
3
44
  ## 0.4.13
4
45
 
5
46
  ### Patch Changes
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@checkstack/incident-frontend",
3
- "version": "0.4.13",
3
+ "version": "0.4.15",
4
4
  "type": "module",
5
5
  "main": "src/index.tsx",
6
6
  "checkstack": {
@@ -12,14 +12,14 @@
12
12
  "lint:code": "eslint . --max-warnings 0"
13
13
  },
14
14
  "dependencies": {
15
- "@checkstack/auth-frontend": "0.5.13",
16
- "@checkstack/catalog-common": "1.2.10",
15
+ "@checkstack/auth-frontend": "0.5.17",
16
+ "@checkstack/catalog-common": "1.2.11",
17
17
  "@checkstack/common": "0.6.4",
18
- "@checkstack/dashboard-frontend": "0.3.19",
18
+ "@checkstack/dashboard-frontend": "0.3.23",
19
19
  "@checkstack/frontend-api": "0.3.8",
20
20
  "@checkstack/incident-common": "0.4.6",
21
21
  "@checkstack/signal-frontend": "0.0.14",
22
- "@checkstack/ui": "1.1.3",
22
+ "@checkstack/ui": "1.2.0",
23
23
  "date-fns": "^4.1.0",
24
24
  "lucide-react": "^0.344.0",
25
25
  "react": "^18.2.0",
@@ -274,11 +274,12 @@ export const IncidentEditor: React.FC<Props> = ({
274
274
  htmlFor="suppress-notifications"
275
275
  className="cursor-pointer font-medium"
276
276
  >
277
- Suppress health notifications
277
+ Suppress notifications
278
278
  </Label>
279
279
  <p className="text-xs text-muted-foreground mt-1">
280
- When enabled, health status change notifications will not be
281
- sent for affected systems while this incident is active.
280
+ When enabled, health status change notifications and
281
+ downstream dependency impact notifications will not be sent
282
+ for affected systems while this incident is active.
282
283
  </p>
283
284
  </div>
284
285
  </div>