@neocompose/cli 0.43.0 → 0.44.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,41 @@
1
1
  # Changelog
2
2
 
3
+ ## [0.44.0] - 2026-09-03
4
+
5
+ ### Added
6
+
7
+ - `neo doctor --fix` deletes the rows the document audit's
8
+ `unprojected-value-row` findings name: base value rows no emitted file
9
+ projects and no other record names, which `neo status` reads as CLI-managed
10
+ loose state and never reports. It lists every orphan root with the number of
11
+ rows it owns, confirms, then deletes them under two staleness guards: the CAS
12
+ base the last pull recorded for each row, and the version head each
13
+ transaction expects from the one before it, starting from the head that pull
14
+ left. A project that moved on since the pull therefore fails the commit
15
+ instead of deleting a row that has since gained an owner, and a workspace
16
+ with no recorded head is refused rather than written blind. Sweeps larger
17
+ than one transaction go up in batches sized from the shared cost model.
18
+ `--yes` answers the confirmation for scripted runs; `--fix` has no `--json`
19
+ form.
20
+
21
+ ### Fixed
22
+
23
+ - `neo pull` marked a conflicted record in only the one file the emission
24
+ attributes it to, so a conflict on a member declared by more than one class
25
+ (system world-layer members such as `Name`) left the sibling declarations
26
+ unmarked. Resolving the marked file alone then left the declarations
27
+ disagreeing and the next command refused the workspace. Markers now go in
28
+ every file that declares the record, and `neo resolve` treats those files as
29
+ one conflict: it settles them together and refuses a record whose
30
+ declarations are only partly resolved.
31
+
32
+ ## [0.43.1] - 2026-09-03
33
+
34
+ ### Changed
35
+
36
+ - Use one project-file assignment validator for local and trusted preparation,
37
+ and remove the obsolete test-only single-level migration target resolver.
38
+
3
39
  ## [0.43.0] - 2026-09-02
4
40
 
5
41
  ### Fixed