@yemi33/minions 0.1.806 → 0.1.807

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.806 (2026-04-10)
3
+ ## 0.1.807 (2026-04-10)
4
4
 
5
5
  ### Features
6
6
  - configurable ignored comment authors — auto-filtered, never trigger fixes
@@ -9,6 +9,7 @@
9
9
  - cap review→fix cycles at evalMaxIterations (default 3)
10
10
 
11
11
  ### Fixes
12
+ - ADO build query filters by source branch (not all org builds)
12
13
  - adoFetch supports method/body for PATCH requests (auto-complete)
13
14
  - prevent false [process-exit] detection from tool result content
14
15
  - allow PRD item retry when work item is missing (closes #781) (#807)
@@ -28,7 +29,6 @@
28
29
  - 5 bugs from comprehensive audit
29
30
  - stale ADO build detection + merge conflict auto-fix for both platforms
30
31
  - don't overwrite reviewStatus when platform vote hasn't propagated
31
- - don't overwrite approval with 'waiting' when platform API lags
32
32
 
33
33
  ## 0.1.782 (2026-04-10)
34
34
 
package/engine/ado.js CHANGED
@@ -366,10 +366,12 @@ async function pollPrStatus(config) {
366
366
 
367
367
  if (mergeCommitId) {
368
368
  try {
369
- // Find builds where sourceVersion matches the PR's merge commit
370
- const buildsUrl = `${orgBase}/${project.adoProject}/_apis/build/builds?$top=10&api-version=7.1`;
369
+ // Find builds for this PR filter by source branch to avoid scanning all org builds
370
+ const sourceBranch = prData.sourceRefName || '';
371
+ const branchFilter = sourceBranch ? `&branchName=${encodeURIComponent(sourceBranch)}` : '';
372
+ const buildsUrl = `${orgBase}/${project.adoProject}/_apis/build/builds?$top=10${branchFilter}&api-version=7.1`;
371
373
  const buildsData = await adoFetch(buildsUrl, token);
372
- // Only match builds against the current merge commit — sourceBranch match catches stale builds
374
+ // Match by exact merge commit — only current builds, not stale
373
375
  const prBuilds = (buildsData?.value || []).filter(b => b.sourceVersion === mergeCommitId);
374
376
 
375
377
  if (prBuilds.length > 0) {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@yemi33/minions",
3
- "version": "0.1.806",
3
+ "version": "0.1.807",
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"