@yemi33/minions 0.1.924 → 0.1.925

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/CHANGELOG.md CHANGED
@@ -1,6 +1,6 @@
1
1
  # Changelog
2
2
 
3
- ## 0.1.924 (2026-04-13)
3
+ ## 0.1.925 (2026-04-13)
4
4
 
5
5
  ### Features
6
6
  - add /api/work-items/reopen endpoint and reopen-work-item CC action (#982)
@@ -19,6 +19,7 @@
19
19
  - add red dot notification on CC tab when response completes (#934) (#946)
20
20
 
21
21
  ### Fixes
22
+ - doc-chat Stop button actually works — release server guard on disconnect
22
23
  - CC streaming auto-retries fresh session when resume fails
23
24
  - 429 retry on abort race applies to all sends, not just queued
24
25
  - show actionable failure context instead of Unknown error (#1003)
@@ -340,6 +340,9 @@ function qaAbort() {
340
340
  _qaAbortController.abort();
341
341
  _qaAbortController = null;
342
342
  }
343
+ // Force-reset processing state so UI isn't stuck if abort races with response
344
+ _qaProcessing = false;
345
+ _qaQueue = [];
343
346
  }
344
347
 
345
348
  function toggleDocChat() {
package/dashboard.js CHANGED
@@ -2935,6 +2935,9 @@ What would you like to discuss or change? When you're happy, say "approve" and I
2935
2935
  return jsonReply(res, 429, { error: 'This document is already being processed — wait for the current response.' });
2936
2936
  }
2937
2937
  docChatInFlight.add(docKey);
2938
+ // Release guard if client disconnects (abort/navigation) so next request isn't blocked
2939
+ let _clientDisconnected = false;
2940
+ req.on('close', () => { _clientDisconnected = true; docChatInFlight.delete(docKey); });
2938
2941
 
2939
2942
  try {
2940
2943
  const canEdit = !!body.filePath;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@yemi33/minions",
3
- "version": "0.1.924",
3
+ "version": "0.1.925",
4
4
  "description": "Multi-agent AI dev team that runs from ~/.minions/ — five autonomous agents share a single engine, dashboard, and knowledge base",
5
5
  "bin": {
6
6
  "minions": "bin/minions.js"