@spaceflow/review 0.62.0 → 0.63.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.
package/CHANGELOG.md CHANGED
@@ -1,5 +1,16 @@
1
1
  # Changelog
2
2
 
3
+ ## [0.62.0](https://github.com/Lydanne/spaceflow/compare/@spaceflow/review@0.61.0...@spaceflow/review@0.62.0) (2026-03-03)
4
+
5
+ ### 代码重构
6
+
7
+ * **review:** 优化问题统计展示,统一状态图标并新增汇总行 ([c764625](https://github.com/Lydanne/spaceflow/commit/c76462548a299ee51af98553c73ba4f705031cd3))
8
+ * **review:** 优化问题统计表格布局,将总结内容移至折叠块展示 ([629e96f](https://github.com/Lydanne/spaceflow/commit/629e96f5960167b689c724a4fb4df4fb29088002))
9
+
10
+ ### 其他修改
11
+
12
+ * **review-summary:** released version 0.29.0 [no ci] ([ef6209c](https://github.com/Lydanne/spaceflow/commit/ef6209cf15114fa9ece2e7e11a9131081d92d443))
13
+
3
14
  ## [0.61.0](https://github.com/Lydanne/spaceflow/compare/@spaceflow/review@0.60.0...@spaceflow/review@0.61.0) (2026-03-03)
4
15
 
5
16
  ### 代码重构
package/dist/index.js CHANGED
@@ -1216,7 +1216,7 @@ class MarkdownFormatter {
1216
1216
  lines.push(`| \`${fileSummary.file}\` | ${fileTotal} | ${stats.fixed} | ${stats.pendingErrors} | ${stats.pendingWarns} | ${stats.resolved} |`);
1217
1217
  // 收集问题总结用于折叠块展示
1218
1218
  if (fileSummary.summary.trim()) {
1219
- fileSummaryLines.push(`### \`${fileSummary.file}\``);
1219
+ fileSummaryLines.push(`### 💡 \`${fileSummary.file}\``);
1220
1220
  fileSummaryLines.push(`${fileSummary.summary.trim()}`);
1221
1221
  fileSummaryLines.push("");
1222
1222
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@spaceflow/review",
3
- "version": "0.62.0",
3
+ "version": "0.63.0",
4
4
  "description": "Spaceflow 代码审查插件,使用 LLM 对 PR 代码进行自动审查",
5
5
  "license": "MIT",
6
6
  "author": "Lydanne",
@@ -187,7 +187,7 @@ export class MarkdownFormatter implements ReviewReportFormatter, ReviewReportPar
187
187
 
188
188
  // 收集问题总结用于折叠块展示
189
189
  if (fileSummary.summary.trim()) {
190
- fileSummaryLines.push(`### \`${fileSummary.file}\``);
190
+ fileSummaryLines.push(`### 💡 \`${fileSummary.file}\``);
191
191
  fileSummaryLines.push(`${fileSummary.summary.trim()}`);
192
192
  fileSummaryLines.push("");
193
193
  }