@neocompose/cli 0.38.2 → 0.38.4

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