github Lexus2016/claude-code-studio v5.0.5
v5.0.5 — Fix: Stop button in chat now stops Kanban task

latest releases: v5.49.1, v5.49.0, v5.48.3...
one month ago

Bugfix

Stop button in chat didn't stop the linked Kanban task subprocess

When a Kanban task session is open in the chat tab and the user clicks Stop, the WS stop message only aborted the WebSocket tab's AbortController. The taskWorker had a separate runningTaskAborts entry keyed by task ID — so the Claude Code subprocess kept running.

Fix: In the WS stop handler, after aborting the WS tab, the server now:

  1. Queries DB for any in_progress task with session_id = tabId
  2. Adds the task to stoppingTasks (prevents onDone from overwriting status)
  3. Sets task status = 'cancelled'
  4. Aborts via runningTaskAborts AbortController or sends SIGTERM to worker_pid

Don't miss a new claude-code-studio release

NewReleases is sending notifications on new releases.