@loicngr/kobo 1.7.9 → 1.7.10

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.
@@ -409,6 +409,15 @@ export function getPrUrl(repoPath, branchName) {
409
409
  return null;
410
410
  }
411
411
  }
412
+ // NOTE: `reviewThreads` is intentionally NOT in this list.
413
+ // As of `gh` CLI 2.92 (latest at time of writing) the `--json reviewThreads`
414
+ // flag is rejected with `Unknown JSON field: "reviewThreads"` — there is no
415
+ // stable `gh` version that exposes it via `pr view --json`. Until upstream
416
+ // adds it, `unresolvedReviewThreadsCount` stays at 0 and the
417
+ // "hide changes-requested badge when all threads are resolved" feature
418
+ // degrades to "badge stays visible". To restore that feature later, either
419
+ // (a) re-add the field here once `gh` supports it, or (b) make a separate
420
+ // `gh api graphql` call for `pullRequest.reviewThreads.nodes`.
412
421
  const GH_PR_FIELDS = [
413
422
  'number',
414
423
  'title',
@@ -421,7 +430,6 @@ const GH_PR_FIELDS = [
421
430
  'labels',
422
431
  'latestReviews',
423
432
  'reviewRequests',
424
- 'reviewThreads',
425
433
  'statusCheckRollup',
426
434
  'updatedAt',
427
435
  ].join(',');
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@loicngr/kobo",
3
- "version": "1.7.9",
3
+ "version": "1.7.10",
4
4
  "description": "Kōbō — multi-workspace agent manager for Claude Code. Orchestrates isolated git worktrees with dev servers, Notion integration, and MCP tools.",
5
5
  "type": "module",
6
6
  "license": "GPL-3.0-or-later",