Patch Changes
-
#845
5432f13Thanks @omeraplak! - feat: workflow execution listing - #844Added a unified way to list workflow runs so teams can audit executions across every storage backend and surface them via the API and console.
What changed
queryWorkflowRunsnow exists on all memory adapters (in-memory, libsql, Postgres, Supabase, voltagent-memory) with filters forworkflowId,status,from,to,limit, andoffset.- Server routes are consolidated under
/workflows/executions(no path param needed);GET /workflows/:idalso returns the workflow result schema for typed clients. Handler naming is standardized tolistWorkflowRuns. - VoltOps Console observability panel lists the new endpoint; REST docs updated with query params and sample responses. New unit tests cover handlers and every storage adapter.
Quick fetch
await fetch( "http://localhost:3141/workflows/executions?workflowId=expense-approval&status=completed&from=2024-01-01&to=2024-01-31&limit=20&offset=0" );
-
Updated dependencies [
5432f13]:- @voltagent/server-core@1.0.32
- @voltagent/core@1.2.17