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