Server-backed web dashboard
The Fabro web app is now a single-page application served directly by the Fabro server. Previously, the frontend required a separate Node.js server with server-side rendering. Nowfabro server start serves both the API and the web dashboard from the same origin, simplifying deployment and eliminating the need for a separate frontend process.
Event-sourced run state
Run state is now fully derived from events rather than written to disk as independent files. This means runs are more reliable, resumable, and inspectable — every piece of run metadata (status, provider info, checkpoints, PR data) is reconstructed from the event stream. The legacy SQLite metadata store and file-based projections have been retired.More
Improvements
Improvements
unsafe_codeis now denied workspace-wide for security hardening- Dry-run mode no longer activates automatically when LLM providers are missing — runs now fail explicitly, making misconfiguration easier to diagnose
Fixes
Fixes
- Fixed
attachhanging on Linux when the workflow engine exits before the attach process starts - Fixed login route collision after the SPA cutover