Releases: misospace/dispatch
Releases · misospace/dispatch
Release list
v0.5.15
v0.5.14
v0.5.13
v0.5.12
v0.5.11
Fix groomer path to make it top level
v0.5.10
schema-driven enum validation with structured alias resolution
v0.5.9
Flat 60s groomer timeout aborts repo-context-enabled runs because nvidia/local models take >60s on 4-8KB prompts. With DISPATCH_GROOMER_REPO_CONTEXT_ENABLED=true, live runs in v0.5.8 fail with "This operation was aborted" at ~62s mark.
v0.5.8
Adds the missing Prisma migration for GroomingRun, so prisma migrate deploy creates the table used by the groomer history API and hosted groomer writes. Also tracks Prisma's migration lock file and ignores local .worktrees/ directories.
v0.5.7
GroomingRunhistory table — dedicated audit record with labels/lane before+after, context warnings, failure stage, comment URL, prompt/model metadata, and composite indexes.AgentRun/AuditLogare still written for existing views;GroomingRunis the detailed drilldown. - Repository context — whenDISPATCH_GROOMER_REPO_CONTEXT_ENABLED=true, the groomer gathers bounded context via GitHub REST APIs only (metadata, code search, file snippets). Hard caps on searches, files, bytes. No clone, no shell. Failures are soft and recorded as warnings. - Comment cooldown — skips repeat hosted-groomer comments withinDISPATCH_GROOMER_COMMENT_COOLDOWN_HOURS(default 24), unlessforceis set. - History API —GET /api/groomer/runs(list with filters) andGET /api/groomer/runs/[id](detail). - Operator UI —/automation/groomershows recent runs with status, issue, lane/label diffs, model, timestamps, and JSON links. Linked from the automation overview. - Scheduler token — optionalDISPATCH_GROOMER_TOKENfor scheduled/admin invocations alongsideDISPATCH_AGENT_TOKEN. - Docs —README.mdanddocs/hosted-groomer.mdupdated with new env vars, history/audit, repo context, and scheduling.