@checkstack/integration-frontend 0.2.29 → 0.3.0
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/integration-frontend
|
|
2
2
|
|
|
3
|
+
## 0.3.0
|
|
4
|
+
|
|
5
|
+
### Minor Changes
|
|
6
|
+
|
|
7
|
+
- 8d1ef12: ## Anomaly Detection & UI Improvements
|
|
8
|
+
|
|
9
|
+
### Anomaly Detection Enhancements (Phase 2)
|
|
10
|
+
|
|
11
|
+
- **`@checkstack/anomaly-backend`**: Implemented background baseline analyzer jobs and anomaly trend deviation detection mechanics.
|
|
12
|
+
- **`@checkstack/anomaly-common`**: Added new baseline statistical logic and inference rules.
|
|
13
|
+
- **`@checkstack/anomaly-frontend`**: Added new Anomaly Widget and refactored system detail rendering to be more human-readable.
|
|
14
|
+
- **`@checkstack/dashboard-frontend`**: Refined the global anomaly widget and fixed hardcoded access gating to render appropriately.
|
|
15
|
+
- **`@checkstack/healthcheck-backend`**: Connected executor telemetry to the anomaly pipeline.
|
|
16
|
+
- **`@checkstack/healthcheck-frontend`**: Reconciled baseline display consistency in Drawer and charts.
|
|
17
|
+
|
|
18
|
+
### Notification Identifiers
|
|
19
|
+
|
|
20
|
+
- **`@checkstack/incident-backend`**: Resolved system IDs to human-readable System Names within Incident notifications to eliminate ID-only alert content.
|
|
21
|
+
- **`@checkstack/maintenance-backend`**: Adopted the same resolution strategy for Maintenance notifications to keep parity.
|
|
22
|
+
|
|
23
|
+
### UI Experience
|
|
24
|
+
|
|
25
|
+
- **`@checkstack/incident-frontend`**: Fixed the "Back to X" BackLink to properly use `react-router` hook `useNavigate` instead of doing a full application reload.
|
|
26
|
+
- **`@checkstack/healthcheck-frontend`**: Implemented `useNavigate` for seamless SPA back-linking.
|
|
27
|
+
- **`@checkstack/integration-frontend`**: Updated connections and delivery logs links to navigate without hard reloads.
|
|
28
|
+
|
|
29
|
+
### Patch Changes
|
|
30
|
+
|
|
31
|
+
- Updated dependencies [8d1ef12]
|
|
32
|
+
- Updated dependencies [8d1ef12]
|
|
33
|
+
- @checkstack/common@0.7.0
|
|
34
|
+
- @checkstack/ui@1.6.0
|
|
35
|
+
- @checkstack/frontend-api@0.3.11
|
|
36
|
+
- @checkstack/integration-common@0.2.9
|
|
37
|
+
- @checkstack/signal-frontend@0.0.16
|
|
38
|
+
|
|
39
|
+
## 0.2.30
|
|
40
|
+
|
|
41
|
+
### Patch Changes
|
|
42
|
+
|
|
43
|
+
- Updated dependencies [c4e7560]
|
|
44
|
+
- @checkstack/frontend-api@0.3.10
|
|
45
|
+
- @checkstack/ui@1.5.1
|
|
46
|
+
|
|
3
47
|
## 0.2.29
|
|
4
48
|
|
|
5
49
|
### Patch Changes
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@checkstack/integration-frontend",
|
|
3
|
-
"version": "0.
|
|
3
|
+
"version": "0.3.0",
|
|
4
4
|
"type": "module",
|
|
5
5
|
"main": "src/index.tsx",
|
|
6
6
|
"checkstack": {
|
|
@@ -13,10 +13,10 @@
|
|
|
13
13
|
},
|
|
14
14
|
"dependencies": {
|
|
15
15
|
"@checkstack/integration-common": "0.2.8",
|
|
16
|
-
"@checkstack/frontend-api": "0.3.
|
|
16
|
+
"@checkstack/frontend-api": "0.3.10",
|
|
17
17
|
"@checkstack/signal-frontend": "0.0.15",
|
|
18
18
|
"@checkstack/common": "0.6.5",
|
|
19
|
-
"@checkstack/ui": "1.
|
|
19
|
+
"@checkstack/ui": "1.5.1",
|
|
20
20
|
"react": "^18.2.0",
|
|
21
21
|
"react-router-dom": "^6.22.0",
|
|
22
22
|
"lucide-react": "^0.344.0"
|
|
@@ -1,4 +1,5 @@
|
|
|
1
1
|
import { useState } from "react";
|
|
2
|
+
import { useNavigate } from "react-router-dom";
|
|
2
3
|
import {
|
|
3
4
|
FileText,
|
|
4
5
|
RefreshCw,
|
|
@@ -61,6 +62,7 @@ const statusConfig: Record<
|
|
|
61
62
|
export const DeliveryLogsPage = () => {
|
|
62
63
|
const integrationClient = usePluginClient(IntegrationApi);
|
|
63
64
|
const toast = useToast();
|
|
65
|
+
const navigate = useNavigate();
|
|
64
66
|
|
|
65
67
|
const [retrying, setRetrying] = useState<string>();
|
|
66
68
|
|
|
@@ -110,7 +112,7 @@ export const DeliveryLogsPage = () => {
|
|
|
110
112
|
icon={FileText}
|
|
111
113
|
loading={isLoading}
|
|
112
114
|
actions={
|
|
113
|
-
<BackLink
|
|
115
|
+
<BackLink onClick={() => navigate(resolveRoute(integrationRoutes.routes.list))}>
|
|
114
116
|
Back to Subscriptions
|
|
115
117
|
</BackLink>
|
|
116
118
|
}
|
|
@@ -5,7 +5,7 @@
|
|
|
5
5
|
* Uses the provider's connectionSchema with DynamicForm for the configuration UI.
|
|
6
6
|
*/
|
|
7
7
|
import { useState } from "react";
|
|
8
|
-
import { useParams } from "react-router-dom";
|
|
8
|
+
import { useParams, useNavigate } from "react-router-dom";
|
|
9
9
|
import {
|
|
10
10
|
Plus,
|
|
11
11
|
Settings2,
|
|
@@ -54,6 +54,7 @@ import {
|
|
|
54
54
|
|
|
55
55
|
export const ProviderConnectionsPage = () => {
|
|
56
56
|
const { providerId } = useParams<{ providerId: string }>();
|
|
57
|
+
const navigate = useNavigate();
|
|
57
58
|
|
|
58
59
|
const client = usePluginClient(IntegrationApi);
|
|
59
60
|
const toast = useToast();
|
|
@@ -254,7 +255,7 @@ export const ProviderConnectionsPage = () => {
|
|
|
254
255
|
loading={loading}
|
|
255
256
|
actions={
|
|
256
257
|
<div className="flex items-center gap-2">
|
|
257
|
-
<BackLink
|
|
258
|
+
<BackLink onClick={() => navigate(resolveRoute(integrationRoutes.routes.list))}>
|
|
258
259
|
Back to Integrations
|
|
259
260
|
</BackLink>
|
|
260
261
|
<Button onClick={openCreateDialog}>
|