@neocompose/cli 0.11.0 → 0.12.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 +28 -0
- package/dist/neo.mjs +1184 -193
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,33 @@
|
|
|
1
1
|
# Changelog
|
|
2
2
|
|
|
3
|
+
## [0.12.0] - 2026-07-28
|
|
4
|
+
|
|
5
|
+
### Added
|
|
6
|
+
|
|
7
|
+
- Warn on `neo push` when an animation clip's owning class is also
|
|
8
|
+
instantiated as a nested `Children` row. P41 lets the players skip a child
|
|
9
|
+
reference they cannot resolve instead of throwing, which would otherwise
|
|
10
|
+
make one real defect silent: a nested row's own children are re-lowered
|
|
11
|
+
copies, so a clip naming its owner's class-default rows resolves none of
|
|
12
|
+
them on that instance. The advisory names the clip and the nested use site
|
|
13
|
+
it found, and points at authored provenance for nested rows (P44) or a
|
|
14
|
+
constructor (P43) as the fix. It never blocks the push, and it is removed
|
|
15
|
+
when P44 lands. `neo push --json`, `neo status --json` and `neo diff --json`
|
|
16
|
+
carry the same text in a new `warnings` array, separate from the blocking
|
|
17
|
+
`diagnostics`.
|
|
18
|
+
|
|
19
|
+
## [0.11.1] - 2026-07-27
|
|
20
|
+
|
|
21
|
+
### Fixed
|
|
22
|
+
|
|
23
|
+
- Show push preparation and file-upload progress immediately after confirmation,
|
|
24
|
+
validate trusted lowering before uploading bytes, and batch presigning with
|
|
25
|
+
bounded concurrent transfers, request deadlines, retries, and cancellation.
|
|
26
|
+
- Preserve inherited numeric settings when lowering newly authored member
|
|
27
|
+
overrides, preventing trusted-lowering rejection after file staging.
|
|
28
|
+
- Report the first divergent trusted-lowering field when a source commit is
|
|
29
|
+
rejected instead of only identifying the affected record.
|
|
30
|
+
|
|
3
31
|
## [0.11.0] - 2026-07-27
|
|
4
32
|
|
|
5
33
|
### Added
|