patchrelay 0.80.1 → 0.80.2

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,6 +1,6 @@
1
1
  {
2
2
  "service": "patchrelay",
3
- "version": "0.80.1",
4
- "commit": "d2c60661d5fa",
5
- "builtAt": "2026-06-10T22:15:08.651Z"
3
+ "version": "0.80.2",
4
+ "commit": "439e484fd0e3",
5
+ "builtAt": "2026-06-10T22:17:32.259Z"
6
6
  }
@@ -579,6 +579,13 @@ export class IdleIssueReconciler {
579
579
  projectId: issue.projectId,
580
580
  linearIssueId: issue.linearIssueId,
581
581
  ...buildPrStateUpdates(pr, gateCheckStatus, gateCheckNames[0] ?? "verify"),
582
+ // A newly observed head is the poll-side equivalent of a lost
583
+ // pr_synchronize: the webhook path resets the repair budgets for
584
+ // the fresh head, so re-derivation must too — otherwise the new
585
+ // head inherits the old head's consumed budget and escalates
586
+ // earlier. Provenance clearing stays governed by
587
+ // mayClearFailureProvenance at the advance sites below.
588
+ ...(headAdvanced ? { ciRepairAttempts: 0, queueRepairAttempts: 0 } : {}),
582
589
  },
583
590
  });
584
591
  // Continue the pass with the refreshed row so later version-checked
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "patchrelay",
3
- "version": "0.80.1",
3
+ "version": "0.80.2",
4
4
  "license": "MIT",
5
5
  "type": "module",
6
6
  "repository": {