@neocompose/cli 0.38.2 → 0.38.3

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,38 @@
1
1
  # Changelog
2
2
 
3
+ ## [0.38.3] - 2026-08-27
4
+
5
+ ### Changed
6
+
7
+ - Require canonical localized-text identities for localizable values and
8
+ canonical split dialogue records for stored NeoScript checks. Retired inline
9
+ literal and aggregate-dialogue compatibility reads are no longer accepted.
10
+ - Build CLI member and dialogue backlinks with the same canonical link
11
+ identities used by web and server writes, removing the parallel link-shape
12
+ and upsert implementations that could drift during future schema changes.
13
+
14
+ ### Fixed
15
+
16
+ - Reject localized-text writes whose backlinks omit the canonical target
17
+ identity required by their link kind, instead of persisting an ownerless
18
+ link that later readers cannot resolve.
19
+ - Compile source-only nested value initializers when a local runtime first
20
+ reaches them. `neo test`, `neo script`, migrations, and dialogue dry runs now
21
+ share one dependency-scoped compiler capability for direct construction and
22
+ sparse virtual-instance expansion, including initializers that read their
23
+ class constructor parameters.
24
+ - Restore canonical localized-text backlinks when lowering NeoFlow node and
25
+ option prose while preserving existing translations and unrelated links.
26
+ - Emit localized-text sidecars for new variant values and retain them beneath
27
+ closed generic values without changing their identities.
28
+ - Emit an explicit `null` before kind-specific source serialization for an
29
+ optional stored member. Pulling nullable NeoDelegate values no longer enters
30
+ the delegate emitter with a null payload, while a malformed required-null
31
+ row still fails with a targeted diagnostic.
32
+ - Reject flags that `neo pull` does not implement instead of silently ignoring
33
+ them and performing a real pull; in particular, `neo pull --dry-run` now
34
+ fails with a usage error rather than changing the working copy.
35
+
3
36
  ## [0.38.2] - 2026-08-27
4
37
 
5
38
  ### Changed