@neocompose/cli 0.26.0 → 0.26.2
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 +22 -0
- package/README.md +12 -4
- package/dist/neo.mjs +1255 -236
- 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,27 @@
|
|
|
1
1
|
# Changelog
|
|
2
2
|
|
|
3
|
+
## [0.26.2] - 2026-08-10
|
|
4
|
+
|
|
5
|
+
### Changed
|
|
6
|
+
|
|
7
|
+
- Make repeated `neo test` runs reuse an experimental, checksummed prepared
|
|
8
|
+
project keyed by production source, managed files, configuration, workspace
|
|
9
|
+
state, CLI version, and compiler revision. Test-only edits retain the shared
|
|
10
|
+
project startup; stale or corrupt entries rebuild automatically.
|
|
11
|
+
- Share immutable evaluator indexes and use sparse copy-on-write fixture
|
|
12
|
+
snapshots across registration, suites, and tests. Human and JSON reports now
|
|
13
|
+
report total, test-code, and framework-startup durations separately and
|
|
14
|
+
print shared startup as its own result row.
|
|
15
|
+
|
|
16
|
+
## [0.26.1] - 2026-08-10
|
|
17
|
+
|
|
18
|
+
### Fixed
|
|
19
|
+
|
|
20
|
+
- Preserve concrete generic bindings while replaying nested constructors in class initializers, including generic entries inside inherited collection defaults. `neo status` and push preparation no longer reject a closed `NeoAnimationSegmentFrame<T>` as an open generic or report unchanged construction arguments as conflicting.
|
|
21
|
+
- Treat assignment to a single-value Lookup as a write to its owning selection row, while continuing to enforce the referenced collection's storage on writes through the selected value. Save-backed selections can now point at Immutable catalog entries without becoming immutable themselves.
|
|
22
|
+
- Rewrite reconstructed interface-member symbols through their interface owner's verified pending id instead of trying to assign the composite compiler symbol its own record id.
|
|
23
|
+
- Accept a constrained open generic member as a covariant implementation of a get-only interface property while continuing to reject that unsafe substitution for settable properties.
|
|
24
|
+
|
|
3
25
|
## [0.26.0] - 2026-08-09
|
|
4
26
|
|
|
5
27
|
### Added
|
package/README.md
CHANGED
|
@@ -378,10 +378,18 @@ neo test -t "TakeDamage"
|
|
|
378
378
|
neo test --reporter=json --outputFile=.neo/test-results.json
|
|
379
379
|
```
|
|
380
380
|
|
|
381
|
-
The JSON output file is written atomically.
|
|
382
|
-
|
|
383
|
-
|
|
384
|
-
|
|
381
|
+
The JSON output file is written atomically. Human and JSON reports break timing
|
|
382
|
+
into total, test-code, and framework-startup durations; human output also gives
|
|
383
|
+
shared startup its own row instead of charging it to the first test.
|
|
384
|
+
|
|
385
|
+
Test compilation metadata and the experimental verified prepared-project cache
|
|
386
|
+
live in `.neo/test-build/`; neither they nor test files are server records.
|
|
387
|
+
Production source, managed files, configuration, workspace state, CLI version,
|
|
388
|
+
and compiler revision invalidate the prepared project, while editing only a
|
|
389
|
+
`.spec.neo` file reuses it. Missing, corrupt, or checksum-mismatched cache
|
|
390
|
+
entries are rebuilt. A workspace must have been initialized or pulled once so
|
|
391
|
+
`.neo/state.json` contains the offline project facts, but running tests
|
|
392
|
+
performs no login or network request.
|
|
385
393
|
|
|
386
394
|
Native functions cannot execute in the local evaluator and therefore fail
|
|
387
395
|
closed unless mocked. Use `mock.native(Member)`, `mock.function(Member)`, or
|