@neocompose/cli 0.46.1 → 0.47.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 +43 -0
- package/README.md +2 -1
- package/dist/neo.mjs +5119 -2494
- package/package.json +1 -1
- package/skills/neocompose-cli/SKILL.md +1 -1
- package/skills/neocompose-cli/references/cli-development.md +1 -1
- package/skills/neocompose-cli/references/commands-and-sync.md +18 -1
- package/skills/neocompose-cli/references/values-identities-and-references.md +12 -5
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,48 @@
|
|
|
1
1
|
# Changelog
|
|
2
2
|
|
|
3
|
+
## [0.47.0] - 2026-09-08
|
|
4
|
+
|
|
5
|
+
### Added
|
|
6
|
+
|
|
7
|
+
- `neo doctor` fails on malformed records in the pulled document.
|
|
8
|
+
Seed and rig verification require this check before recording success.
|
|
9
|
+
|
|
10
|
+
### Changed
|
|
11
|
+
|
|
12
|
+
- Empty localized member values use an empty string without allocating a localization record.
|
|
13
|
+
- Primary-locale edits retarget the edited assignment. Equal text on the same declared member shares a localization record across inherited overrides; reverting an instance to its default restores the shared assignment.
|
|
14
|
+
- Pulls capture the published head generation and logical revision across pages,
|
|
15
|
+
snapshot reads, and cached catch-up checks. A concurrent commit restarts the
|
|
16
|
+
read before the CLI writes files or saves its cursor.
|
|
17
|
+
- Branch creation waits for its private copy to publish before reporting success.
|
|
18
|
+
|
|
19
|
+
### Fixed
|
|
20
|
+
|
|
21
|
+
- Push and workspace status supply an explicit timestamp when reconciling localized text.
|
|
22
|
+
- Push and dry-run source hashing accepts edited primary-locale prose, including packed values, before localization identities are materialized on the server.
|
|
23
|
+
- Reverting localized instance text to its default removes the redundant packed override and archives its unused unique string while preserving translations.
|
|
24
|
+
- Adding a value under an existing static binding loads its unchanged descendants for validation.
|
|
25
|
+
- Pull preserves newly authored localized seed text before its records have been created on the server, including projects with a non-English primary locale.
|
|
26
|
+
- Default elimination resolves both operands' effective class identity and lookup destination semantics, and treats empty constructor arguments as omitted. Concrete subtypes and meaningful creation provenance remain distinct.
|
|
27
|
+
|
|
28
|
+
## [0.46.2] - 2026-09-04
|
|
29
|
+
|
|
30
|
+
### Fixed
|
|
31
|
+
|
|
32
|
+
- Pulling variants with non-class value rows no longer produces false local
|
|
33
|
+
`classId: null` updates. Unchanged status, pull, and test preparation avoid
|
|
34
|
+
the animation validation those false edits triggered.
|
|
35
|
+
- Normal pull checks the remote head before local reconstruction, avoiding
|
|
36
|
+
compilation when there are no remote changes.
|
|
37
|
+
- Terminal spinners keep animating during synchronous compilation and show
|
|
38
|
+
workspace loading and preparation phases for status, diff, pull, and test.
|
|
39
|
+
`NO_COLOR` disables color without disabling animation; piped and JSON
|
|
40
|
+
status/test output remain free of terminal controls.
|
|
41
|
+
- Prospective animation validation reuses one class index for each validation
|
|
42
|
+
document instead of rebuilding it for every animation root and initializer.
|
|
43
|
+
- Stored construction replay validates and compiles constructor records once per
|
|
44
|
+
emission batch, and reuses each value's constructor-body schema-key index.
|
|
45
|
+
|
|
3
46
|
## [0.46.1] - 2026-09-04
|
|
4
47
|
|
|
5
48
|
### Changed
|
package/README.md
CHANGED
|
@@ -47,7 +47,8 @@ neo init --project <id> --version <id> --dir neo
|
|
|
47
47
|
Interactive terminals may select the project, version, and directory. Neo
|
|
48
48
|
does not install, discover, or require .NET. `neo doctor` validates the
|
|
49
49
|
format-4 browser-safe compiler, VS Code analysis contract, tracked source, and
|
|
50
|
-
managed-file capabilities.
|
|
50
|
+
managed-file capabilities. It also fails on malformed records in the
|
|
51
|
+
last-pulled document.
|
|
51
52
|
|
|
52
53
|
## Format-4 working copy
|
|
53
54
|
|