carson 3.15.2 → 3.16.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.
- checksums.yaml +4 -4
- data/RELEASE.md +12 -0
- data/VERSION +1 -1
- metadata +1 -1
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: f88fb85694afee9d6cb92ed785152851dd88e53a354bcc27f35ae2ab40f034da
|
|
4
|
+
data.tar.gz: 366e6b00767ca21554e016329a3a8112aaec7177fee2668c9678b99d90e0a4f0
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 8030cfb9fe88b844de38c015bb951ddc1dc4225bdad98faa6a7d7f0197246801043f6c7c0e5d881590fb892fd3cf8eba9ce45fd2a2a2110309a23c9251208dc2
|
|
7
|
+
data.tar.gz: 2b30204a052702fb44990fd76afcf456c443a861ce9a076b2cdbeebb951968c015a3f1fffd4662483e6620d96d285536d5a383327e47b51817744f1ae1f3c17c
|
data/RELEASE.md
CHANGED
|
@@ -5,6 +5,18 @@ Release-note scope rule:
|
|
|
5
5
|
- `RELEASE.md` records only version deltas, breaking changes, and migration actions.
|
|
6
6
|
- Operational usage guides live in `MANUAL.md` and `API.md`.
|
|
7
7
|
|
|
8
|
+
## 3.16.0
|
|
9
|
+
|
|
10
|
+
### What changed
|
|
11
|
+
|
|
12
|
+
- **`sweep_stale_worktrees!` shared method** — scans `.claude/worktrees/` and `.codex/worktrees/` for agent-owned worktrees whose branch content is already on main, and removes them safely. Skips dirty working trees, CWD-inside-worktree, and worktrees outside agent directories.
|
|
13
|
+
- `AGENT_WORKTREE_DIRS` constant (`%w[ .claude .codex ]`) — single place to extend when new coding agents appear.
|
|
14
|
+
- `reap_dead_worktrees!` now delegates content-absorbed detection to `sweep_stale_worktrees!`, keeping merged-PR evidence as a second pass.
|
|
15
|
+
|
|
16
|
+
### UX improvement
|
|
17
|
+
|
|
18
|
+
- Content-absorbed worktrees are now cleaned during `housekeep` even without `gh` CLI available. Previously the entire reap step was gated on `gh`.
|
|
19
|
+
|
|
8
20
|
## 3.15.2
|
|
9
21
|
|
|
10
22
|
### What changed
|
data/VERSION
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
3.
|
|
1
|
+
3.16.0
|