@checkstack/maintenance-frontend 0.4.16 → 0.4.18

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,49 @@
1
1
  # @checkstack/maintenance-frontend
2
2
 
3
+ ## 0.4.18
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/dashboard-frontend@0.3.24
36
+ - @checkstack/catalog-common@1.3.0
37
+
38
+ ## 0.4.17
39
+
40
+ ### Patch Changes
41
+
42
+ - Updated dependencies [23c80bc]
43
+ - @checkstack/ui@1.2.0
44
+ - @checkstack/auth-frontend@0.5.17
45
+ - @checkstack/dashboard-frontend@0.3.23
46
+
3
47
  ## 0.4.16
4
48
 
5
49
  ### Patch Changes
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@checkstack/maintenance-frontend",
3
- "version": "0.4.16",
3
+ "version": "0.4.18",
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/maintenance-common": "0.4.8",
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",
@@ -284,11 +284,12 @@ export const MaintenanceEditor: React.FC<Props> = ({
284
284
  htmlFor="suppress-notifications"
285
285
  className="cursor-pointer font-medium"
286
286
  >
287
- Suppress health notifications
287
+ Suppress notifications
288
288
  </Label>
289
289
  <p className="text-xs text-muted-foreground mt-1">
290
- When enabled, health status change notifications will not be
291
- sent for affected systems while this maintenance is active.
290
+ When enabled, health status change notifications and
291
+ downstream dependency impact notifications will not be sent
292
+ for affected systems while this maintenance is active.
292
293
  </p>
293
294
  </div>
294
295
  </div>