@neocompose/cli 0.26.1 → 0.26.3

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,31 @@
1
1
  # Changelog
2
2
 
3
+ ## [0.26.3] - 2026-08-10
4
+
5
+ ### Changed
6
+
7
+ - Show a phase-aware loading spinner during interactive `neo test` runs, then
8
+ render files, tests, failures, counts, and durations with Vitest-style
9
+ grouping, alignment, color, and emphasis. JSON reports now expose prepare,
10
+ selection, compilation, registration, execution, and finalization timings.
11
+ - Reuse matcher dispatch metadata, build assertion diagnostics only on failure,
12
+ and compare structured values directly instead of serializing them to JSON.
13
+ This keeps successful `expect`, `toBe`, `toEqual`, `toHaveLength`,
14
+ `toContain`, `toMatchObject`, and mock assertions on a smaller hot path.
15
+
16
+ ## [0.26.2] - 2026-08-10
17
+
18
+ ### Changed
19
+
20
+ - Make repeated `neo test` runs reuse an experimental, checksummed prepared
21
+ project keyed by production source, managed files, configuration, workspace
22
+ state, CLI version, and compiler revision. Test-only edits retain the shared
23
+ project startup; stale or corrupt entries rebuild automatically.
24
+ - Share immutable evaluator indexes and use sparse copy-on-write fixture
25
+ snapshots across registration, suites, and tests. Human and JSON reports now
26
+ report total, test-code, and framework-startup durations separately and
27
+ print shared startup as its own result row.
28
+
3
29
  ## [0.26.1] - 2026-08-10
4
30
 
5
31
  ### Fixed
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. Test compilation metadata lives in
382
- `.neo/test-build/`; neither it nor test files are server records. A workspace
383
- must have been initialized or pulled once so `.neo/state.json` contains the
384
- offline project facts, but running tests performs no login or network request.
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