github VoltAgent/voltagent @voltagent/serverless-hono@1.0.9

Patch Changes

  • #845 5432f13 Thanks @omeraplak! - feat: workflow execution listing - #844

    Added 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

    • queryWorkflowRuns now exists on all memory adapters (in-memory, libsql, Postgres, Supabase, voltagent-memory) with filters for workflowId, status, from, to, limit, and offset.
    • Server routes are consolidated under /workflows/executions (no path param needed); GET /workflows/:id also returns the workflow result schema for typed clients. Handler naming is standardized to listWorkflowRuns.
    • 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

Don't miss a new voltagent release

NewReleases is sending notifications on new releases.