patchrelay 0.35.14 → 0.35.15

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.35.14",
4
- "commit": "a8a92461c05e",
5
- "builtAt": "2026-04-08T08:42:31.210Z"
3
+ "version": "0.35.15",
4
+ "commit": "da544a1edbf6",
5
+ "builtAt": "2026-04-08T09:10:23.366Z"
6
6
  }
@@ -121,7 +121,6 @@ function buildHeaderLines(input, width) {
121
121
  lines.push(...renderRichTextLines(issue.statusNote, {
122
122
  key: "detail-note",
123
123
  width,
124
- style: { dimColor: true },
125
124
  }));
126
125
  }
127
126
  if (input.issueContext?.latestFailureSummary) {
@@ -113,10 +113,10 @@ function parseInlineMarkdown(text, style) {
113
113
  segments.push({ text: text.slice(lastIndex, index), ...(style ?? {}) });
114
114
  }
115
115
  if (match[1] && match[2]) {
116
- segments.push({ text: match[1], color: "cyan", bold: true });
116
+ segments.push({ text: match[1], color: "cyan" });
117
117
  }
118
118
  else if (match[3]) {
119
- segments.push({ text: match[3], color: "yellow", bold: true });
119
+ segments.push({ text: match[3], color: "yellow" });
120
120
  }
121
121
  else if (match[4]) {
122
122
  segments.push({ text: match[4], ...(style ?? {}), bold: true });
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "patchrelay",
3
- "version": "0.35.14",
3
+ "version": "0.35.15",
4
4
  "license": "MIT",
5
5
  "type": "module",
6
6
  "repository": {