@checkstack/frontend 0.3.0 → 0.3.2

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.
Files changed (2) hide show
  1. package/CHANGELOG.md +42 -0
  2. package/package.json +4 -3
package/CHANGELOG.md CHANGED
@@ -1,5 +1,47 @@
1
1
  # @checkstack/frontend
2
2
 
3
+ ## 0.3.2
4
+
5
+ ### Patch Changes
6
+
7
+ - @checkstack/dependency-frontend@0.2.1
8
+
9
+ ## 0.3.1
10
+
11
+ ### Patch Changes
12
+
13
+ - 3f36a64: Add System Dependencies plugin
14
+
15
+ Introduces the system dependencies feature with three new core plugins and
16
+ extends the catalog with a new SystemEditorSlot extension point.
17
+
18
+ **New plugins:**
19
+
20
+ - **dependency-common**: Shared Zod schemas, RPC contract with resource-level access control, signal definitions, and routes
21
+ - **dependency-backend**: Drizzle schema, DependencyService with cycle detection, WarningEvaluationService with transitive impact matrix, RPC router with signal broadcasting, and per-user canvas node position persistence
22
+ - **dependency-frontend**: DependencyBadge (dashboard), DependencyAlert (system details), DependencyEditor (system editor dialog), and interactive DependencyMapPage (React Flow canvas)
23
+
24
+ **Catalog extensions:**
25
+
26
+ - **catalog-common**: New `SystemEditorSlot` for plugin-injected sections in the system editor dialog
27
+ - **catalog-frontend**: `SystemEditor` renders the slot after TeamAccessEditor for existing systems
28
+
29
+ **Key capabilities:**
30
+
31
+ - Directional dependency edges between systems (source depends on target)
32
+ - Three impact types: informational, degraded, critical
33
+ - Transitive multi-hop warning propagation with toggle switch
34
+ - Cycle detection at creation time with graphical chain visualization
35
+ - Health check-level dependency rules
36
+ - Interactive dependency map with drag-to-connect, edge click editor, and auto-saving node positions
37
+ - Inline editing of dependencies in both the system editor and the map canvas
38
+ - Team-based resource-level access control on all mutation endpoints
39
+ - Realtime signal-driven UI updates
40
+
41
+ - Updated dependencies [3f36a64]
42
+ - @checkstack/dependency-frontend@0.2.0
43
+ - @checkstack/catalog-frontend@0.5.7
44
+
3
45
  ## 0.3.0
4
46
 
5
47
  ### Minor Changes
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@checkstack/frontend",
3
- "version": "0.3.0",
3
+ "version": "0.3.2",
4
4
  "checkstack": {
5
5
  "type": "frontend"
6
6
  },
@@ -15,12 +15,13 @@
15
15
  "lint:code": "eslint . --max-warnings 0"
16
16
  },
17
17
  "dependencies": {
18
- "@checkstack/about-frontend": "0.1.0",
19
- "@checkstack/announcement-frontend": "0.1.0",
18
+ "@checkstack/about-frontend": "0.2.0",
19
+ "@checkstack/announcement-frontend": "0.2.0",
20
20
  "@checkstack/auth-frontend": "0.5.17",
21
21
  "@checkstack/catalog-frontend": "0.5.6",
22
22
  "@checkstack/command-frontend": "0.2.19",
23
23
  "@checkstack/common": "0.6.4",
24
+ "@checkstack/dependency-frontend": "0.1.0",
24
25
  "@checkstack/frontend-api": "0.3.8",
25
26
  "@checkstack/signal-common": "0.1.8",
26
27
  "@checkstack/signal-frontend": "0.0.14",