pr-shepherd 0.26.0 → 0.26.1

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.
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "pr-shepherd",
3
3
  "description": "Autonomous PR CI monitor and review-comment resolver for agentic coding tools",
4
- "version": "0.26.0",
4
+ "version": "0.26.1",
5
5
  "author": {
6
6
  "name": "Jonathan Ong",
7
7
  "email": "jonathanrichardong@gmail.com"
@@ -90,7 +90,7 @@ export function partitionBatch(index, batch) {
90
90
  const suppressedReviewSummaryIds = new Set(batch.reviewSummaries.filter((r) => suppressedIds.has(r.id)).map((r) => r.id));
91
91
  const suppressedChangesRequestedIds = new Set(batch.changesRequestedReviews.filter((r) => suppressedIds.has(r.id)).map((r) => r.id));
92
92
  const ruleAutoResolveCommentIds = batch.comments
93
- .filter((c) => autoResolveIds.has(c.id))
93
+ .filter((c) => !c.isMinimized && autoResolveIds.has(c.id))
94
94
  .map((c) => c.id);
95
95
  const ruleAutoResolveThreadIds = batch.reviewThreads
96
96
  .filter((t) => !t.isResolved && !t.isOutdated && autoResolveIds.has(t.id))
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "pr-shepherd",
3
- "version": "0.26.0",
3
+ "version": "0.26.1",
4
4
  "description": "Autonomous PR CI monitor and review-comment resolver for agentic coding tools",
5
5
  "license": "MIT",
6
6
  "author": "Jonathan Ong",
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "pr-shepherd",
3
- "version": "0.26.0",
3
+ "version": "0.26.1",
4
4
  "description": "Autonomous PR CI monitor and review-comment resolver for Codex.",
5
5
  "author": {
6
6
  "name": "Jonathan Ong",