@yemi33/minions 0.1.1745 → 0.1.1746

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,5 +1,10 @@
1
1
  # Changelog
2
2
 
3
+ ## 0.1.1746 (2026-05-06)
4
+
5
+ ### Fixes
6
+ - treat null branch-change as unconfirmed (#2096) (#2115)
7
+
3
8
  ## 0.1.1745 (2026-05-06)
4
9
 
5
10
  ### Features
@@ -1,5 +1,5 @@
1
1
  {
2
2
  "runtime": "copilot",
3
3
  "models": null,
4
- "cachedAt": "2026-05-06T02:33:28.238Z"
4
+ "cachedAt": "2026-05-06T15:01:56.293Z"
5
5
  }
@@ -1629,6 +1629,18 @@ function updatePrAfterFix(pr, project, source, options = {}, legacyDispatchId =
1629
1629
  log('warn', `Updated ${pr.id} → recorded no-op ${cause} fix attempt ${record.count}${record.paused ? ' (paused)' : ''}; PR branch was unchanged`);
1630
1630
  return prs;
1631
1631
  }
1632
+ // Issue #2096: detectPrFixBranchChange returns three states; null means
1633
+ // detection could not determine whether the branch advanced (missing
1634
+ // baseline, fetch failed, worktree gone). Treat that as a no-op attempt
1635
+ // so the pause-after-N counter eventually engages, but do NOT mark the
1636
+ // automation cause handled — a future tick with working detection must
1637
+ // be free to re-dispatch.
1638
+ if (explicitlyChangedBranch && options.branchChange?.changed === null) {
1639
+ const record = recordPrNoOpFixAttempt(target, cause, source, options.dispatchItem, options.branchChange, options.config);
1640
+ result = { noOp: true, cause, paused: !!record.paused, count: record.count, indeterminate: true };
1641
+ log('warn', `Updated ${pr.id} → recorded indeterminate ${cause} fix attempt ${record.count}${record.paused ? ' (paused)' : ''}; PR branch advance could not be verified${options.branchChange?.reason ? ` (${options.branchChange.reason})` : ''}`);
1642
+ return prs;
1643
+ }
1632
1644
  clearPrNoOpFixAttempt(target, cause);
1633
1645
  if (source === 'pr-human-feedback') {
1634
1646
  const clearPendingFix = shouldClearHumanFeedbackPendingFix(target, pr, automationCauseKey);
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@yemi33/minions",
3
- "version": "0.1.1745",
3
+ "version": "0.1.1746",
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"