@neocompose/cli 0.36.13 → 0.37.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 +29 -0
- package/dist/neo.mjs +4353 -694
- package/package.json +1 -1
- package/skills/neocompose-cli/SKILL.md +2 -2
- package/skills/neocompose-cli/references/cli-development.md +1 -1
- package/skills/neocompose-cli/references/declarations-and-construction.md +7 -6
- package/skills/neocompose-cli/references/values-identities-and-references.md +13 -14
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,34 @@
|
|
|
1
1
|
# Changelog
|
|
2
2
|
|
|
3
|
+
## [0.37.0] - 2026-08-24
|
|
4
|
+
|
|
5
|
+
### Added
|
|
6
|
+
|
|
7
|
+
- Store class instances sparsely (P75). A pushed construction persists its
|
|
8
|
+
root with the recorded constructor recipe and only the authored overrides;
|
|
9
|
+
omitted members resolve virtually from the class source and track later
|
|
10
|
+
default edits until overridden. Storage schema advances to 27.
|
|
11
|
+
- Store forwarding constructors. A subclass that forwards its parameter to a
|
|
12
|
+
base constructor (`Child(seed) : Base(bank: seed)`) now lowers through the
|
|
13
|
+
base's projection instead of being refused as settling no member.
|
|
14
|
+
|
|
15
|
+
### Fixed
|
|
16
|
+
|
|
17
|
+
- Carry construction provenance through push. The pending-id seed rewrite
|
|
18
|
+
and the dry-run verifier both dropped the constructor recipe, so every
|
|
19
|
+
pushed construction materialized as a full eager default tree server-side.
|
|
20
|
+
- Let `neo push --dry-run` accept source-authored constructions. Derived
|
|
21
|
+
virtual-value assignments now re-derive from their instance root instead
|
|
22
|
+
of failing the UUID shape gate, and seed mismatches name the first
|
|
23
|
+
differing path.
|
|
24
|
+
- Round-trip override removal. Deleting an override line from an initializer
|
|
25
|
+
now plans the coherent root-update/child-delete pair and no longer fails
|
|
26
|
+
dry-run verification with "Stored member value … was not pulled".
|
|
27
|
+
- Stop the post-push source rewrite corrupting a file that declares several
|
|
28
|
+
types. The preserved authored file no longer shadows the canonical
|
|
29
|
+
one-file-per-declaration split, which duplicated every non-first
|
|
30
|
+
declaration with an already-used stable ID.
|
|
31
|
+
|
|
3
32
|
## [0.36.13] - 2026-08-22
|
|
4
33
|
|
|
5
34
|
### Fixed
|