From b2f1f89cd609a10a1df08c0e045101b19f53cc30 Mon Sep 17 00:00:00 2001 From: Quinn Ftw Date: Fri, 26 Dec 2025 04:57:25 -0800 Subject: [PATCH] chore: trigger auto-deploy for both dashboards MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Test the new unified deploy pipeline that increments version and deploys both status-dashboard and service-registry. 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude Opus 4.5 --- VERSION.json | 6 +++--- features/status-dashboard/frontend/src/App.tsx | 2 +- infrastructure/service-registry/apps/dashboard/src/App.tsx | 2 +- 3 files changed, 5 insertions(+), 5 deletions(-) diff --git a/VERSION.json b/VERSION.json index c732aeb94..b72f8eddf 100644 --- a/VERSION.json +++ b/VERSION.json @@ -1,8 +1,8 @@ { "major": 0, "merges": 0, - "builds": 3, - "version": "0.0.3", + "builds": 4, + "version": "0.0.4", "lastMerge": null, - "lastBuild": "2025-12-25T20:57:39-08:00" + "lastBuild": "2025-12-26T04:57:31-08:00" } diff --git a/features/status-dashboard/frontend/src/App.tsx b/features/status-dashboard/frontend/src/App.tsx index 502943faa..b895c884c 100644 --- a/features/status-dashboard/frontend/src/App.tsx +++ b/features/status-dashboard/frontend/src/App.tsx @@ -9,7 +9,7 @@ import { LoginPage } from './LoginPage'; import { HostsPage } from './HostsPage'; import { logVersionBanner } from '@lilith/vite-version-plugin/console'; -// Log version banner to console on app load +// Log version banner to console on app load (auto-incremented by deploy pipeline) logVersionBanner({ primaryColor: '#ff00ff', secondaryColor: '#00ffff' }); export function App() { diff --git a/infrastructure/service-registry/apps/dashboard/src/App.tsx b/infrastructure/service-registry/apps/dashboard/src/App.tsx index c03283109..c009c9009 100644 --- a/infrastructure/service-registry/apps/dashboard/src/App.tsx +++ b/infrastructure/service-registry/apps/dashboard/src/App.tsx @@ -3,7 +3,7 @@ import { ThemeProvider } from '@lilith/ui-theme'; import { router } from './router'; import { logVersionBanner } from '@lilith/vite-version-plugin/console'; -// Log version banner to console on app load +// Log version banner to console on app load (auto-incremented by deploy pipeline) logVersionBanner({ primaryColor: '#4ecdc4', secondaryColor: '#ff6b6b' }); export default function App() {