@neocompose/cli 0.21.5 → 0.21.6

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,20 @@
1
1
  # Changelog
2
2
 
3
+ ## [0.21.6] - 2026-08-03
4
+
5
+ ### Fixed
6
+
7
+ - `neo push` prepares its local transport once before confirmation, reuses it
8
+ after approval, and reports the active local and server preparation phase
9
+ with remaining write or validation batches.
10
+ - Ordinary value, body-only, and documentation edits compile only changed
11
+ NeoScript records. Writability, construction, index, localization, setter,
12
+ and other schema-contract changes still recompile affected callers.
13
+ - Durable push preparation no longer duplicates an active compiler after a
14
+ lease check, routes a narrow edit through Storage because the whole project
15
+ source is large, uploads that complete source bundle, or repeatedly downloads
16
+ full staged artifacts for every atomic write chunk.
17
+
3
18
  ## [0.21.5] - 2026-08-03
4
19
 
5
20
  ### 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