patchrelay 0.41.5 → 0.41.6

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.41.5",
4
- "commit": "8cba4e264b7e",
5
- "builtAt": "2026-04-13T11:03:19.900Z"
3
+ "version": "0.41.6",
4
+ "commit": "24441e13272f",
5
+ "builtAt": "2026-04-13T17:33:37.051Z"
6
6
  }
@@ -101,7 +101,7 @@ function buildFacts(issue, selected) {
101
101
  facts.push({ text: "awaiting review", color: "yellow" });
102
102
  }
103
103
  if (issue.factoryState === "awaiting_queue") {
104
- facts.push({ text: "merge queue", color: "cyan" });
104
+ facts.push({ text: "downstream ready", color: "cyan" });
105
105
  }
106
106
  // Check status — compact
107
107
  const checksFact = prChecksFact(issue);
@@ -401,7 +401,7 @@ function buildFactSegments(issue, issueContext) {
401
401
  && (isAwaitingReviewState(issue.prReviewState) || (!issue.prReviewState && issue.factoryState === "pr_open")))
402
402
  facts.push([{ text: "awaiting review", color: "yellow" }]);
403
403
  if (issue.factoryState === "awaiting_queue")
404
- facts.push([{ text: "merge queue", color: "cyan" }]);
404
+ facts.push([{ text: "downstream ready", color: "cyan" }]);
405
405
  if (issue.waitingReason && issue.sessionState === "waiting_input")
406
406
  facts.push([{ text: issue.waitingReason, color: "yellow" }]);
407
407
  const checks = prChecksFact({
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "patchrelay",
3
- "version": "0.41.5",
3
+ "version": "0.41.6",
4
4
  "license": "MIT",
5
5
  "type": "module",
6
6
  "repository": {