@neocompose/cli 0.10.5 → 0.10.7

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.
Files changed (3) hide show
  1. package/CHANGELOG.md +27 -0
  2. package/dist/neo.mjs +446 -414
  3. package/package.json +1 -1
package/CHANGELOG.md CHANGED
@@ -1,5 +1,32 @@
1
1
  # Changelog
2
2
 
3
+ ## [0.10.7] - 2026-07-26
4
+
5
+ ### Fixed
6
+
7
+ - Accept an enum option `@id` under the reserved `system_` prefix. Every
8
+ Neo-authored record moved into that namespace (P39 section 1.1c), so a
9
+ `neo pull` of any project on the migrated schema produced source its own
10
+ analyzer then rejected -- sixteen `invalid-enum-option-id` errors across the
11
+ smart tile enums, and no way to complete the pull. The analyzer already
12
+ accepted the prefix; `0.10.6` shipped before that change, so the published
13
+ binary was the only place the old rule survived. No source change, only the
14
+ release that carries it.
15
+
16
+ ## [0.10.6] - 2026-07-26
17
+
18
+ ### Changed
19
+
20
+ - Derive the member id that carries one type argument of a constructed
21
+ generic, instead of reading it off the pulled record. `List<NeoAnimationChildOverride<NeoObjectBase>>`
22
+ binds its entry's parameter to a hidden member with no source syntax of its
23
+ own, so a workspace pushing without `neo/obj/` re-minted it under a
24
+ `__pending__:generic-argument:` id and created a second record. The id is now
25
+ a function of the slot that owns it -- the declaring member or class, plus
26
+ the parameter being bound -- which is the same fix `0.10.0` applied to entry
27
+ members. Argument members that already exist move onto the derivation
28
+ through P39's reconciler.
29
+
3
30
  ## [0.10.5] - 2026-07-26
4
31
 
5
32
  ### Changed