@neocompose/cli 0.42.1 → 0.43.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,51 @@
1
1
  # Changelog
2
2
 
3
+ ## [0.43.1] - 2026-09-03
4
+
5
+ ### Changed
6
+
7
+ - Use one project-file assignment validator for local and trusted preparation,
8
+ and remove the obsolete test-only single-level migration target resolver.
9
+
10
+ ## [0.43.0] - 2026-09-02
11
+
12
+ ### Fixed
13
+
14
+ - The scoped push preflight read a packed subtree as its logical rows only:
15
+ the stored root was not the base the packed-value fold re-encoded from, and
16
+ the rows it selected were logical rows filtered by stored keys, so a packed
17
+ child (an `int` under a class row, a frame's `Index`) was missing from the
18
+ preparation document while its root stayed present. Selection is now by
19
+ stored row, expanded afterwards, and the stored rows are the fold's base on
20
+ both the scoped and the full path.
21
+ - Whole-graph animation validation was scoped by loading every clip member's
22
+ value population, which grows with the corpus, and then graded every clip
23
+ member against a document that held only some of their graphs, so any
24
+ commit on a project with a clip fell back to the complete read. The scoped
25
+ read now opens a clip or segment member when the loaded chain reaches it
26
+ (plus every clip aimed at a class whose schema the commit changes), and the
27
+ validator grades those members and no others.
28
+
29
+ ### Changed
30
+
31
+ - Save the server's derived-edge extractor version during pull without adding
32
+ another network request.
33
+ - Refuse the server rehearsal behind `neo push --dry-run` and `neo test` when
34
+ the workspace lacks a derived-edge watermark or its extractor version
35
+ differs from the CLI. Older CLIs get an upgrade instruction; stale server
36
+ state gets a repair instruction. `neo push --dry-run` refreshes the version
37
+ from the server first; `neo test` reads the one the last pull saved.
38
+ - Stage uploads under one session id that the server uses to clean up after
39
+ a failed push, instead of the CLI sending back every storage key. Large
40
+ files upload as multipart parts, four at a time; presigning runs one wave
41
+ of six files at a time; a forced retry reuses the files it already staged
42
+ instead of uploading them again.
43
+
44
+ ### Compatibility
45
+
46
+ - Run `neo pull` once after upgrading so `neo test` sees the server's
47
+ derived-edge extractor version. A push dry-run does not need it.
48
+
3
49
  ## [0.42.1] - 2026-09-02
4
50
 
5
51
  ### Fixed