@neocompose/cli 0.38.0 → 0.38.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
CHANGED
|
@@ -1,5 +1,36 @@
|
|
|
1
1
|
# Changelog
|
|
2
2
|
|
|
3
|
+
## [0.38.1] - 2026-08-27
|
|
4
|
+
|
|
5
|
+
### Changed
|
|
6
|
+
|
|
7
|
+
- A stored construction from before the P75 collapse now converges to the
|
|
8
|
+
sparse shape on its next push. Such a row recorded every
|
|
9
|
+
constructor-settled member twice — once as creation data and once as a body
|
|
10
|
+
key — and re-lowering used to preserve that duplication forever. The
|
|
11
|
+
duplicate body keys are now dropped and the construction's provenance is
|
|
12
|
+
stamped explicitly. This is a one-time storage convergence with no change in
|
|
13
|
+
resolved values: each argument row is still named by the creation data that
|
|
14
|
+
already named it, so nothing is stranded, and the authored creation data is
|
|
15
|
+
untouched, so a converged push is not reported as an edit. Rows already in
|
|
16
|
+
the sparse shape are unaffected.
|
|
17
|
+
|
|
18
|
+
### Fixed
|
|
19
|
+
|
|
20
|
+
- Lower an authored default echo on a fresh row to absence instead of a stored
|
|
21
|
+
override. Spelling a member's declared default verbatim in a new
|
|
22
|
+
initializer — a leaf equal to its declaration, or a bare class construction
|
|
23
|
+
whose members the declaration wholly settles — minted a pending row that
|
|
24
|
+
push verification then rejected as absent from the verified source manifest.
|
|
25
|
+
- Converge a stored inline member default toward the collapsed sparse shape
|
|
26
|
+
instead of re-minting its seed. A pre-collapse stored default that equals
|
|
27
|
+
its declaration reported `create 1 member value seed(s)` on every push of an
|
|
28
|
+
otherwise clean checkout.
|
|
29
|
+
- Keep a compiled delegate action when a re-lowered argument's source code is
|
|
30
|
+
unchanged. Re-lowering emitted the code-only shape over the stored compiled
|
|
31
|
+
closure, so an untouched delegate argument round-tripped as an edit and
|
|
32
|
+
evaluation lost its compiled action until the next server compile.
|
|
33
|
+
|
|
3
34
|
## [0.38.0] - 2026-08-26
|
|
4
35
|
|
|
5
36
|
### Added
|