@spaceflow/review-summary 0.32.0 → 0.34.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 +27 -0
- package/package.json +4 -4
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,32 @@
|
|
|
1
1
|
# Changelog
|
|
2
2
|
|
|
3
|
+
## [0.33.0](https://github.com/Lydanne/spaceflow/compare/@spaceflow/review-summary@0.32.0...@spaceflow/review-summary@0.33.0) (2026-03-03)
|
|
4
|
+
|
|
5
|
+
### 新特性
|
|
6
|
+
|
|
7
|
+
* **core:** 新增 Git SDK 本地变更管理能力 ([b96d05a](https://github.com/Lydanne/spaceflow/commit/b96d05a93729635020f317ffc2f0343fc1be8be1))
|
|
8
|
+
* **review:** 新增本地代码审查模式,支持审查未提交代码 ([b80614a](https://github.com/Lydanne/spaceflow/commit/b80614a7dff570a078e7709a70628752e35ec9e8))
|
|
9
|
+
* **review:** 本地模式无变更时自动回退到分支比较模式 ([820ff8d](https://github.com/Lydanne/spaceflow/commit/820ff8d04f5af84340d861e03ccbf66d57fc2c1c))
|
|
10
|
+
|
|
11
|
+
### 其他修改
|
|
12
|
+
|
|
13
|
+
* **core:** released version 0.24.0 [no ci] ([c1d77e4](https://github.com/Lydanne/spaceflow/commit/c1d77e4c8e612e7b64a70c5d9d4384452a3ccbc1))
|
|
14
|
+
* **publish:** released version 0.48.0 [no ci] ([da4065f](https://github.com/Lydanne/spaceflow/commit/da4065fdbc9c193ebca207c371ed0ea17a13c0db))
|
|
15
|
+
* **review:** released version 0.65.0 [no ci] ([8de84ba](https://github.com/Lydanne/spaceflow/commit/8de84ba1ca6f2254299de199827a3940beff76a0))
|
|
16
|
+
* **scripts:** released version 0.26.0 [no ci] ([e757eba](https://github.com/Lydanne/spaceflow/commit/e757eba5ae1cdbea428d4cc1c6de6e7e68e546ff))
|
|
17
|
+
* **shell:** released version 0.26.0 [no ci] ([753cf30](https://github.com/Lydanne/spaceflow/commit/753cf3044ee7d09ea3f1f9150bf045395703c712))
|
|
18
|
+
|
|
19
|
+
## [0.32.0](https://github.com/Lydanne/spaceflow/compare/@spaceflow/review-summary@0.31.0...@spaceflow/review-summary@0.32.0) (2026-03-03)
|
|
20
|
+
|
|
21
|
+
### 测试用例
|
|
22
|
+
|
|
23
|
+
* **review:** 新增 deleteExistingAiReviews、buildLineReviewBody、findExistingAiComments、syncReactionsToIssues 和 filterIssuesByValidCommits 方法的详细日志测试 ([0619e9c](https://github.com/Lydanne/spaceflow/commit/0619e9cc1e5a81d24703e2e574026a249d87f236))
|
|
24
|
+
* **review:** 新增 invalidateIssuesForChangedFiles、updateIssueLineNumbers、filterIssuesByValidCommits 和 ensureClaudeCli 方法的单元测试 ([876f827](https://github.com/Lydanne/spaceflow/commit/876f82746331cf2e353b0a537b8691395e2a1084))
|
|
25
|
+
|
|
26
|
+
### 其他修改
|
|
27
|
+
|
|
28
|
+
* **review:** released version 0.64.0 [no ci] ([55de549](https://github.com/Lydanne/spaceflow/commit/55de54963608d0f8c5410d435fdad184fd902af0))
|
|
29
|
+
|
|
3
30
|
## [0.31.0](https://github.com/Lydanne/spaceflow/compare/@spaceflow/review-summary@0.30.0...@spaceflow/review-summary@0.31.0) (2026-03-03)
|
|
4
31
|
|
|
5
32
|
### 代码重构
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@spaceflow/review-summary",
|
|
3
|
-
"version": "0.
|
|
3
|
+
"version": "0.34.0",
|
|
4
4
|
"description": "Spaceflow 审查统计命令,根据时间范围统计 PR 贡献情况,按人员汇总并排序",
|
|
5
5
|
"license": "MIT",
|
|
6
6
|
"author": "Lydanne",
|
|
@@ -16,15 +16,15 @@
|
|
|
16
16
|
"main": "./dist/index.js",
|
|
17
17
|
"dependencies": {
|
|
18
18
|
"micromatch": "^4.0.8",
|
|
19
|
-
"@spaceflow/review": "0.
|
|
19
|
+
"@spaceflow/review": "0.66.0"
|
|
20
20
|
},
|
|
21
21
|
"devDependencies": {
|
|
22
22
|
"@types/micromatch": "^4.0.9",
|
|
23
23
|
"@types/node": "^22.15.0",
|
|
24
|
-
"@spaceflow/cli": "0.
|
|
24
|
+
"@spaceflow/cli": "0.39.0"
|
|
25
25
|
},
|
|
26
26
|
"peerDependencies": {
|
|
27
|
-
"@spaceflow/core": "0.
|
|
27
|
+
"@spaceflow/core": "0.25.0"
|
|
28
28
|
},
|
|
29
29
|
"spaceflow": {
|
|
30
30
|
"type": "flow",
|