@neocompose/cli 0.23.0 → 0.23.2

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,31 @@
1
1
  # Changelog
2
2
 
3
+ ## [0.23.2] - 2026-08-06
4
+
5
+ ### Fixed
6
+
7
+ - Pushing an edit to a materialized `Class` instance no longer de-materializes
8
+ it. `lowerValueRow` keeps `classId` and the stored construction instead of
9
+ rewriting the row to `{init}` and tombstoning its property sub-rows, and a
10
+ fully-projected construction edit now reprojects onto the existing rows: a
11
+ `clipKey` edit plans as one leaf update per track with stable sub-row ids,
12
+ no creates and no deletes. Shapes that cannot reproject (durable constructor
13
+ arguments, class swaps, rows predating a new constructor parameter) fail
14
+ closed with `construction-arguments-conflict`.
15
+ - Canonical constructor expressions emit from the stored graph on demand, so
16
+ the `.neo/build` cache is a perf layer only and a cold cache,
17
+ `neo push --dry-run`, and post-push `neo status` produce byte-identical
18
+ plans. The stale delta-pull carry-forward in `neo pull` is gone.
19
+ - `neo status` and the push preparation preflight refuse a plan that would
20
+ de-materialize a real `Class` instance, so the corruption is caught before
21
+ it reaches the server. Legitimate literal-to-initializer flips still lower.
22
+
23
+ ## [0.23.1] - 2026-08-05
24
+
25
+ ### Fixed
26
+
27
+ - Invalidate stale compiled constructor IR when an authored constructor contract changes, and compile only those changed constructors during local initializer replay. Constructor parameter edits now work through `neo status`, dry-run, and push without preserving a mismatched action or recompiling the whole project.
28
+
3
29
  ## [0.23.0] - 2026-08-05
4
30
 
5
31
  ### Added