@neocompose/cli 0.46.2 → 0.47.1

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.47.1] - 2026-09-09
4
+
5
+ ### Changed
6
+
7
+ - Stored NeoScript bodies must carry exactly the current compiler revision.
8
+ Bodies with no revision stamp are rejected, and the CLI's own placeholder
9
+ bodies are stamped when it writes them.
10
+
11
+ ## [0.47.0] - 2026-09-08
12
+
13
+ ### Added
14
+
15
+ - `neo doctor` fails on malformed records in the pulled document.
16
+ Seed and rig verification require this check before recording success.
17
+
18
+ ### Changed
19
+
20
+ - Empty localized member values use an empty string without allocating a localization record.
21
+ - 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.
22
+ - Pulls capture the published head generation and logical revision across pages,
23
+ snapshot reads, and cached catch-up checks. A concurrent commit restarts the
24
+ read before the CLI writes files or saves its cursor.
25
+ - Branch creation waits for its private copy to publish before reporting success.
26
+
27
+ ### Fixed
28
+
29
+ - Push and workspace status supply an explicit timestamp when reconciling localized text.
30
+ - Push and dry-run source hashing accepts edited primary-locale prose, including packed values, before localization identities are materialized on the server.
31
+ - Reverting localized instance text to its default removes the redundant packed override and archives its unused unique string while preserving translations.
32
+ - Adding a value under an existing static binding loads its unchanged descendants for validation.
33
+ - Pull preserves newly authored localized seed text before its records have been created on the server, including projects with a non-English primary locale.
34
+ - 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.
35
+
3
36
  ## [0.46.2] - 2026-09-04
4
37
 
5
38
  ### Fixed
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