@checkstack/frontend 0.2.22 → 0.3.1

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,68 @@
1
1
  # @checkstack/frontend
2
2
 
3
+ ## 0.3.1
4
+
5
+ ### Patch Changes
6
+
7
+ - 3f36a64: Add System Dependencies plugin
8
+
9
+ Introduces the system dependencies feature with three new core plugins and
10
+ extends the catalog with a new SystemEditorSlot extension point.
11
+
12
+ **New plugins:**
13
+
14
+ - **dependency-common**: Shared Zod schemas, RPC contract with resource-level access control, signal definitions, and routes
15
+ - **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
16
+ - **dependency-frontend**: DependencyBadge (dashboard), DependencyAlert (system details), DependencyEditor (system editor dialog), and interactive DependencyMapPage (React Flow canvas)
17
+
18
+ **Catalog extensions:**
19
+
20
+ - **catalog-common**: New `SystemEditorSlot` for plugin-injected sections in the system editor dialog
21
+ - **catalog-frontend**: `SystemEditor` renders the slot after TeamAccessEditor for existing systems
22
+
23
+ **Key capabilities:**
24
+
25
+ - Directional dependency edges between systems (source depends on target)
26
+ - Three impact types: informational, degraded, critical
27
+ - Transitive multi-hop warning propagation with toggle switch
28
+ - Cycle detection at creation time with graphical chain visualization
29
+ - Health check-level dependency rules
30
+ - Interactive dependency map with drag-to-connect, edge click editor, and auto-saving node positions
31
+ - Inline editing of dependencies in both the system editor and the map canvas
32
+ - Team-based resource-level access control on all mutation endpoints
33
+ - Realtime signal-driven UI updates
34
+
35
+ - Updated dependencies [3f36a64]
36
+ - @checkstack/dependency-frontend@0.2.0
37
+ - @checkstack/catalog-frontend@0.5.7
38
+
39
+ ## 0.3.0
40
+
41
+ ### Minor Changes
42
+
43
+ - 3589199: Add About page with platform information, license, contact details, and version information
44
+
45
+ - New `about-common` package with plugin metadata
46
+ - New `about-frontend` package with the About page and user menu item
47
+ - New `/api/about` backend endpoint exposing core version and loaded plugin versions
48
+ - Accessible via "About Checkstack" in the user menu dropdown
49
+
50
+ ### Patch Changes
51
+
52
+ - dee86ec: feat: add portal announcement system
53
+
54
+ Introduces a complete announcement system for communicating with portal users:
55
+
56
+ - **announcement-common**: Zod schemas for announcements (severity, visibility, display mode), oRPC contract with 6 procedures (public retrieval, user dismissal, admin CRUD), access rules, and `ANNOUNCEMENT_UPDATED` signal definition
57
+ - **announcement-backend**: Drizzle schema with `announcements` and `announcement_dismissals` tables, router with temporal filtering, visibility control, per-user dismissal persistence, user cleanup hook, real-time signal broadcasting on create/update/delete, and command palette registration ("Create Announcement", "Manage Announcements" with `⇧⌘A` shortcut)
58
+ - **announcement-frontend**: Admin management page with create/edit dialog, global banner component above the navbar (severity-colored, expandable markdown), dashboard cards with compact expand/collapse, admin menu link, and real-time WebSocket signal subscription for instant UI updates
59
+ - **frontend**: Integrates AnnouncementBanner into App.tsx for global visibility
60
+
61
+ - Updated dependencies [3589199]
62
+ - Updated dependencies [dee86ec]
63
+ - @checkstack/about-frontend@0.2.0
64
+ - @checkstack/announcement-frontend@0.2.0
65
+
3
66
  ## 0.2.22
4
67
 
5
68
  ### Patch Changes
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@checkstack/frontend",
3
- "version": "0.2.22",
3
+ "version": "0.3.1",
4
4
  "checkstack": {
5
5
  "type": "frontend"
6
6
  },
@@ -15,14 +15,17 @@
15
15
  "lint:code": "eslint . --max-warnings 0"
16
16
  },
17
17
  "dependencies": {
18
- "@checkstack/auth-frontend": "0.5.13",
19
- "@checkstack/catalog-frontend": "0.5.2",
20
- "@checkstack/command-frontend": "0.2.16",
18
+ "@checkstack/about-frontend": "0.2.0",
19
+ "@checkstack/announcement-frontend": "0.2.0",
20
+ "@checkstack/auth-frontend": "0.5.17",
21
+ "@checkstack/catalog-frontend": "0.5.6",
22
+ "@checkstack/command-frontend": "0.2.19",
21
23
  "@checkstack/common": "0.6.4",
24
+ "@checkstack/dependency-frontend": "0.1.0",
22
25
  "@checkstack/frontend-api": "0.3.8",
23
26
  "@checkstack/signal-common": "0.1.8",
24
27
  "@checkstack/signal-frontend": "0.0.14",
25
- "@checkstack/ui": "1.1.3",
28
+ "@checkstack/ui": "1.2.0",
26
29
  "@orpc/client": "^1.13.14",
27
30
  "@tanstack/react-query": "^5.64.0",
28
31
  "@tanstack/react-query-devtools": "^5.64.0",
package/src/App.tsx CHANGED
@@ -41,6 +41,7 @@ import { SignalProvider } from "@checkstack/signal-frontend";
41
41
  import { SessionProvider } from "@checkstack/auth-frontend";
42
42
  import { usePluginLifecycle } from "./hooks/usePluginLifecycle";
43
43
  import { useCommands, useGlobalShortcuts } from "@checkstack/command-frontend";
44
+ import { AnnouncementBanner } from "@checkstack/announcement-frontend";
44
45
 
45
46
  // Create a stable query client instance
46
47
  const queryClient = new QueryClient({
@@ -132,6 +133,7 @@ function AppContent() {
132
133
  {/* Global keyboard shortcuts for commands */}
133
134
  <GlobalShortcuts />
134
135
  <AmbientBackground className="text-foreground font-sans">
136
+ <AnnouncementBanner />
135
137
  <header className="p-4 bg-card/80 backdrop-blur-sm shadow-sm border-b border-border z-50 relative">
136
138
  <div className="flex items-center justify-between gap-4">
137
139
  {/* Left: Logo and main navigation */}