@checkstack/incident-frontend 0.4.13 → 0.4.14
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 +35 -0
- package/package.json +5 -5
- package/src/components/IncidentEditor.tsx +4 -3
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,40 @@
|
|
|
1
1
|
# @checkstack/incident-frontend
|
|
2
2
|
|
|
3
|
+
## 0.4.14
|
|
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
|
+
|
|
3
38
|
## 0.4.13
|
|
4
39
|
|
|
5
40
|
### Patch Changes
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@checkstack/incident-frontend",
|
|
3
|
-
"version": "0.4.
|
|
3
|
+
"version": "0.4.14",
|
|
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.
|
|
16
|
-
"@checkstack/catalog-common": "1.2.
|
|
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.
|
|
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.
|
|
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
|
|
277
|
+
Suppress notifications
|
|
278
278
|
</Label>
|
|
279
279
|
<p className="text-xs text-muted-foreground mt-1">
|
|
280
|
-
When enabled, health status change notifications
|
|
281
|
-
|
|
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>
|