@neocompose/cli 0.21.5 → 0.22.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,37 @@
1
1
  # Changelog
2
2
 
3
+ ## [0.22.0] - 2026-08-04
4
+
5
+ ### Added
6
+
7
+ - `neo push --force-recompile` and `neo push --dry-run --force-recompile`
8
+ retain an explicit complete NeoScript repair sweep for diagnostics and
9
+ golden-fixture regeneration.
10
+
11
+ ### Changed
12
+
13
+ - Normal push preparation follows typed compiler dependencies from the changed
14
+ schema contract and recompiles only affected stored bodies. Payload-only
15
+ default, localization, documentation, and value edits stay narrow.
16
+ - Full-sweep parity results are checked in as deterministic fixtures; an
17
+ explicit rebuild command and subprocess-level benchmark keep the optimized
18
+ scope measurable against the exhaustive reference behavior.
19
+
20
+ ## [0.21.6] - 2026-08-03
21
+
22
+ ### Fixed
23
+
24
+ - `neo push` prepares its local transport once before confirmation, reuses it
25
+ after approval, and reports the active local and server preparation phase
26
+ with remaining write or validation batches.
27
+ - Ordinary value, body-only, and documentation edits compile only changed
28
+ NeoScript records. Writability, construction, index, localization, setter,
29
+ and other schema-contract changes still recompile affected callers.
30
+ - Durable push preparation no longer duplicates an active compiler after a
31
+ lease check, routes a narrow edit through Storage because the whole project
32
+ source is large, uploads that complete source bundle, or repeatedly downloads
33
+ full staged artifacts for every atomic write chunk.
34
+
3
35
  ## [0.21.5] - 2026-08-03
4
36
 
5
37
  ### Fixed
package/README.md CHANGED
@@ -337,10 +337,12 @@ desired result, or use `neo resolve --mine|--theirs` as a whole-side
337
337
  convenience. There is no force-CAS bypass. Accept a required compatibility
338
338
  bump only after reviewing it with `neo push --accept-bump`.
339
339
 
340
- One push recompiles the complete source bundle at the trusted server boundary
341
- and atomically commits semantic record changes, localized main-locale edits,
342
- and staged files under CAS. Client AST, compiled IR, placement stamps, and
343
- derived links are not trusted.
340
+ One push recompiles changed NeoScript and schema-affected callers at the
341
+ trusted server boundary and atomically commits semantic record changes,
342
+ localized main-locale edits, and staged files under CAS. Normal push sends the
343
+ semantic diff plus a deterministic source hash; `neo push --dry-run` performs
344
+ the complete source-to-record rehearsal. Client AST, compiled IR, placement
345
+ stamps, and derived links are not trusted.
344
346
 
345
347
  Optional scaffolds edit pending local source and never push:
346
348