@neocompose/cli 0.19.5 → 0.20.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 +35 -0
- package/dist/neo.mjs +1852 -206
- package/package.json +1 -1
- package/skills/neocompose-cli/SKILL.md +1 -1
- package/skills/neocompose-cli/references/cli-development.md +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,40 @@
|
|
|
1
1
|
# Changelog
|
|
2
2
|
|
|
3
|
+
## [0.20.0] - 2026-08-02
|
|
4
|
+
|
|
5
|
+
### Added
|
|
6
|
+
|
|
7
|
+
- NeoScript project source can declare first-class typed delegate members and
|
|
8
|
+
author stored delegate values as either a compatible member target or an
|
|
9
|
+
inline closure.
|
|
10
|
+
- Animation segment tracks can bind their typed `Selector` delegate directly,
|
|
11
|
+
including constructor initializers and inherited generic selector types.
|
|
12
|
+
|
|
13
|
+
### Changed
|
|
14
|
+
|
|
15
|
+
- Project format 4 carries first-class delegate member, value, and callable
|
|
16
|
+
type information through pull, validation, lowering, push, and Unity export.
|
|
17
|
+
|
|
18
|
+
## [0.19.6] - 2026-08-02
|
|
19
|
+
|
|
20
|
+
### Changed
|
|
21
|
+
|
|
22
|
+
- A push sends its authored value content as `authoredValueSeeds`, renamed
|
|
23
|
+
from `staticValueSeeds`. The seeds were never only a static member's — they
|
|
24
|
+
carry every authored value row, root values and collection entries included.
|
|
25
|
+
A CLI older than this fails against a server that has it, and vice versa: the
|
|
26
|
+
field is part of the push request and its staged payload.
|
|
27
|
+
|
|
28
|
+
### Fixed
|
|
29
|
+
|
|
30
|
+
- `neo push` no longer ends in an opaque `500` after a large push has already
|
|
31
|
+
committed. The transaction's results are read back a page at a time, and the
|
|
32
|
+
page was bounded by chunk count alone, so a big enough push read past what
|
|
33
|
+
the server may in one query. Pages are bounded by bytes now, and a workspace
|
|
34
|
+
learns the result of its own push.
|
|
35
|
+
- `neo pull` no longer rejects a project whose committed members carry doc text
|
|
36
|
+
while the local copy still names their pre-push ids.
|
|
37
|
+
|
|
3
38
|
## [0.19.5] - 2026-08-02
|
|
4
39
|
|
|
5
40
|
### Fixed
|