@neocompose/cli 0.10.7 → 0.11.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 +23 -0
- package/dist/neo.mjs +935 -154
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,28 @@
|
|
|
1
1
|
# Changelog
|
|
2
2
|
|
|
3
|
+
## [0.11.1] - 2026-07-27
|
|
4
|
+
|
|
5
|
+
### Fixed
|
|
6
|
+
|
|
7
|
+
- Show push preparation and file-upload progress immediately after confirmation,
|
|
8
|
+
validate trusted lowering before uploading bytes, and batch presigning with
|
|
9
|
+
bounded concurrent transfers, request deadlines, retries, and cancellation.
|
|
10
|
+
- Preserve inherited numeric settings when lowering newly authored member
|
|
11
|
+
overrides, preventing trusted-lowering rejection after file staging.
|
|
12
|
+
- Report the first divergent trusted-lowering field when a source commit is
|
|
13
|
+
rejected instead of only identifying the affected record.
|
|
14
|
+
|
|
15
|
+
## [0.11.0] - 2026-07-27
|
|
16
|
+
|
|
17
|
+
### Added
|
|
18
|
+
|
|
19
|
+
- Accept `sortingGroup` as a world system class kind. P40 adds
|
|
20
|
+
`NeoSortingGroup` as a nested class member on `NeoObject`, so every project
|
|
21
|
+
on the migrated schema now carries a class whose `@system` metadata names a
|
|
22
|
+
kind this CLI's manifest validator did not know. Without the release, a
|
|
23
|
+
`neo pull` of any project after the P40 rollout fails validation on the new
|
|
24
|
+
class rather than writing source for it.
|
|
25
|
+
|
|
3
26
|
## [0.10.7] - 2026-07-26
|
|
4
27
|
|
|
5
28
|
### Fixed
|