@seanyao/roll 4.719.1 → 4.719.3

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.
Files changed (3) hide show
  1. package/CHANGELOG.md +10 -0
  2. package/dist/roll.mjs +393 -186
  3. package/package.json +1 -1
package/CHANGELOG.md CHANGED
@@ -2,6 +2,16 @@
2
2
 
3
3
  ## Unreleased
4
4
 
5
+ ## v4.719.3 — 2026-07-19
6
+
7
+ ### 稳定性
8
+ - 修复致命回收漏洞:`.roll/loop/worktrees` 下"磁盘有、但 git 已不再注册"的孤儿目录(多因 `git worktree remove` 撞上 `.next` 之类未跟踪生成物"目录非空"失败,注册删了目录留下)会一直把运行时 canary 顶高、让 loop 永久暂停,而 cleanup 却看不见它、清不掉;现在审计会扫磁盘把孤儿显式计入并展示,能证明其所属 cycle 已交付的孤儿用"有界删除"(严格限定在 `.roll/loop/worktrees` 直接子目录内)自动回收、证不了的一律保留+提示 `--reclaim-orphan <path>` 人工回收;registered/外部/用户 worktree 绝不触碰;删注册 worktree 若残留目录也用同一有界删除补齐,不再产生新孤儿 (FIX-1460 / #1468)
9
+
10
+ ## v4.719.2 — 2026-07-19
11
+
12
+ ### 稳定性
13
+ - 修复致命回归:`roll worktree cleanup` 会把"历史 PR 被 squash 合并、但分支 tip 上还有未交付独立提交"的 `loop/cycle-*` 分支当成可删(仅凭已合并 PR 授权),导致丢失独立工作;现在删分支必须有 git 层面证据证明每个提交都已交付(是主干祖先,或 `git cherry` 显示每个提交都有等价补丁),只要有一个 `+` 未交付补丁就整条保留;已合并 PR 本身不再作为删除授权 (FIX-1458)
14
+
5
15
  ## v4.719.1 — 2026-07-19
6
16
 
7
17
  ### 稳定性