@yemi33/minions 0.1.938 → 0.1.940

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.938 (2026-04-14)
3
+ ## 0.1.940 (2026-04-14)
4
4
 
5
5
  ### Features
6
6
  - make ADO poll frequency configurable and ungate reconcilePrs
@@ -24,6 +24,7 @@
24
24
 
25
25
  ### Fixes
26
26
  - deduplicate work item creation by title
27
+ - ADO build query uses repositoryId+pullRequest instead of branchName
27
28
  - persist adoPollEnabled/ghPollEnabled in settings save
28
29
  - prevent _consolidationInFlight race from stale force-reset timeout (#1023)
29
30
  - stop perpetual ADO poll retry when token unavailable (#1021)
@@ -42,7 +43,6 @@
42
43
  - align CC tab unread dot to same position as working dot
43
44
  - pipeline artifact links use pushModalBack instead of setTimeout race (#993)
44
45
  - close unclosed code fences and lone backticks in renderMd (#991)
45
- - PRD item status stuck at dispatched when fix completes (#989)
46
46
 
47
47
  ### Other
48
48
  - test(preflight): add unit tests for findClaudeBinary, runPreflight, printPreflight, checkOrExit (#953)
package/dashboard.js CHANGED
@@ -1491,7 +1491,7 @@ const server = http.createServer(async (req, res) => {
1491
1491
  if (!Array.isArray(items)) items = [];
1492
1492
  const existing = items.find(i =>
1493
1493
  i.title === item.title &&
1494
- (i.status === WI_STATUS.PENDING || i.status === WI_STATUS.DISPATCHED)
1494
+ (i.status === WI_STATUS.PENDING || i.status === WI_STATUS.DISPATCHED || i.status === WI_STATUS.QUEUED)
1495
1495
  );
1496
1496
  if (existing) { dupId = existing.id; return items; }
1497
1497
  items.push(item);
package/engine/ado.js CHANGED
@@ -380,10 +380,8 @@ async function pollPrStatus(config) {
380
380
 
381
381
  if (mergeCommitId) {
382
382
  try {
383
- // Find builds for this PR — filter by source branch to avoid scanning all org builds
384
- const sourceBranch = prData.sourceRefName || '';
385
- const branchFilter = sourceBranch ? `&branchName=${sourceBranch}` : '';
386
- const buildsUrl = `${orgBase}/${project.adoProject}/_apis/build/builds?$top=10${branchFilter}&api-version=7.1`;
383
+ // Find builds for this PR — scope by repositoryId+pullRequest reason to avoid branch-scan window issues
384
+ const buildsUrl = `${orgBase}/${project.adoProject}/_apis/build/builds?reasonFilter=pullRequest&repositoryId=${project.repositoryId}&repositoryType=TfsGit&$top=25&api-version=7.1`;
387
385
  const buildsData = await adoFetch(buildsUrl, token);
388
386
  // Match by exact merge commit — only current builds, not stale
389
387
  const prBuilds = (buildsData?.value || []).filter(b => b.sourceVersion === mergeCommitId);
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@yemi33/minions",
3
- "version": "0.1.938",
3
+ "version": "0.1.940",
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"