carson 3.23.3 → 3.24.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 +9 -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: 92803422cb09be4d2f4b31cf6c0b0f98796373c2a6a403af55c0e09361d0e951
|
|
4
|
+
data.tar.gz: 36f06f845aca0878e2d18de009e661c662baf08675ce3b3331e08f4f2907cc58
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 356bdf1b684829c5d506d00d303db0473f1cacdfd70d7831c21db201d465dd51fd3c03aa7a63f1cebc5658f6fe98321d6cc2bbc99c6f049753325f8898bb7479
|
|
7
|
+
data.tar.gz: ecad319106eb238264d3155740c36960521a70448183946c1ed1646d8b1b5291345d7eef8c0463a68e5cc55b0efe5d7687574d1ac2d869eeaaac08b73bafed81
|
data/RELEASE.md
CHANGED
|
@@ -5,6 +5,15 @@ 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.24.0
|
|
9
|
+
|
|
10
|
+
### What changed
|
|
11
|
+
|
|
12
|
+
- **Govern now finds worktree-created deliveries** — `repository_record` stored the worktree CWD as `repo_path` in the ledger, but `govern` looked up deliveries by the main tree path from config. The SQL query never matched, so `carson govern` always reported "no active deliveries" for worktree-created PRs. Now `repository_record` uses `main_worktree_root` so the ledger key is always the canonical main tree path. Also fixed the govern fallback path, `reconcile_delivery!`, `housekeep_repo!`, and `review_evidence` for the same mismatch.
|
|
13
|
+
- **Status shows canonical repository name** — `carson status` from a worktree displayed the worktree folder name (e.g. `feature-branch`) as `Repository:` instead of the actual repository name. Now correctly shows the canonical name.
|
|
14
|
+
|
|
15
|
+
### No migration required
|
|
16
|
+
|
|
8
17
|
## 3.23.3
|
|
9
18
|
|
|
10
19
|
### What changed
|
data/VERSION
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
3.
|
|
1
|
+
3.24.0
|