patchrelay 0.44.0 → 0.45.0

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.44.0",
4
- "commit": "969e4e3e58e7",
5
- "builtAt": "2026-04-16T14:04:18.962Z"
3
+ "version": "0.45.0",
4
+ "commit": "5af50d4caf99",
5
+ "builtAt": "2026-04-16T16:13:04.169Z"
6
6
  }
@@ -342,7 +342,7 @@ function renderHistoryRunLines(run, index, width, gutter) {
342
342
  run.commandCount ? `${run.commandCount} cmds` : null,
343
343
  run.fileChangeCount ? `${run.fileChangeCount} files` : null,
344
344
  ].filter((value) => Boolean(value));
345
- const lines = renderTextLines(`${gutter}${run.status === "completed" ? "✓" : run.status === "failed" ? "✗" : run.status === "running" ? "" : "•"} #${index + 1} (${RUN_LABELS[run.runType] ?? run.runType})${duration ? ` ${duration}` : ""}${stats.length ? ` ${stats.join(", ")}` : ""}`, {
345
+ const lines = renderTextLines(`${gutter}${run.status === "completed" ? "✓" : run.status === "failed" ? "✗" : run.status === "running" ? "" : "•"} #${index + 1} (${RUN_LABELS[run.runType] ?? run.runType})${duration ? ` ${duration}` : ""}${stats.length ? ` ${stats.join(", ")}` : ""}`, {
346
346
  key: `history-run-${run.id}`,
347
347
  width,
348
348
  style: { color: statusColor },
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "patchrelay",
3
- "version": "0.44.0",
3
+ "version": "0.45.0",
4
4
  "license": "MIT",
5
5
  "type": "module",
6
6
  "repository": {