@kudzujs/core 0.12.3 → 0.12.4

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/PERFORMANCE.md CHANGED
@@ -6,6 +6,28 @@ Reproducibility classes: `npm run benchmark`, `npm run benchmark:keyed`, `npm ru
6
6
 
7
7
  The maintained 2026-08-13 comparison used Node 24.14.0 and an Intel Core i5-9500 Linux x64 host, one warm-up, and seven alternating fresh-process samples against clean `v0.8.44`. A narrow fast path skips Kudzu semantic transformation for 450 plain `.ts` modules whose runtime edges are exclusively resolvable relative TypeScript imports or exports; all other modules retain the existing transformer. Compile median fell from 2,323.9 ms to 1,413.2 ms (39.2%) and clean-build median from 3,325.3 ms to 2,382.4 ms (28.4%); every paired sample improved. Compile peak-RSS median fell from 571.2 MiB to 552.6 MiB, while build peak RSS was 570.9 MiB versus 568.8 MiB. Compiler scratch fell from 7,328,390 to 1,971,061 bytes. Both targets emitted the same 50 static HTML files, 10,980 bytes, and deploy SHA-256 `e107d78a7f55bc8a1af0ea6e53efeffa19b3d44d21c892484d103fa346e7ba7b`. This is a source-scale compiler comparison, not a cross-framework result.
8
8
 
9
+ ## 0.12.4 Nested Layout Evidence Decision
10
+
11
+ Verified 2026-08-24 on Linux x64 with Node 24.14.0 and Chrome
12
+ 142.0.7444.175. Six executable route sets fit the existing ownership model: one
13
+ retained layout owner around one replaceable route owner, followed by existing
14
+ conditional, keyed, effect, and DOM ownership. Zero routes prove an intermediate
15
+ retained layout lifetime, so the packet closes by its stop condition without an
16
+ owner chain.
17
+
18
+ Generated output is byte-identical to `0.12.3`: 43 deploy files totaling 123,835
19
+ raw / 45,379 aggregate gzip bytes with SHA-256
20
+ `fb9d24cc01791bf80b67b659738ba62beded6ff6ce14a86a278fa4b34d088acf`.
21
+ The two-route session remains 16 JavaScript files totaling 61,126 raw / 22,663
22
+ aggregate gzip bytes, and `/help` remains 0 B JavaScript.
23
+
24
+ Core semantic LOC remains 5,682 with zero semantic primitives, IR kinds,
25
+ compiler passes, production compiler/runtime lines, runtime concepts, layout
26
+ registries, disposal paths, public APIs, browser files, or browser bytes added.
27
+ No benchmark rerun or latency comparison applies because production and
28
+ generated code are unchanged; the published `0.12.3` 1.8 ms median and 1.5-2.4
29
+ ms range remain provenance rather than a new claim.
30
+
9
31
  ## 0.12.3 Route Failure And Restoration Policy
10
32
 
11
33
  Measured 2026-08-24 on Linux x64 with Node 24.14.0 and Chrome
package/README.md CHANGED
@@ -14,7 +14,7 @@ Kudzu compiles ordinary React-shaped TypeScript and TSX into complete static HTM
14
14
 
15
15
  > Experimental `0.12.x`: the compiler API and supported TSX surface may change.
16
16
 
17
- **Latest release: 0.12.3 - Route failure and restoration policy.** Fetch and response-body transport failures retain the current document for focused retry, while invalid documents and assets keep native fallback. Read the [release notes](./RELEASES.md#0123---route-failure-and-restoration-policy), open the [release page](https://github.com/kudzujs/kudzu/releases/tag/v0.12.3), or follow the [architecture packet](./docs/next-architecture/README.md).
17
+ **Latest release: 0.12.4 - Nested layout evidence decision.** Six executable route sets fit the existing single-layout model, so Kudzu adds no speculative owner chain or browser runtime. Read the [release notes](./RELEASES.md#0124---nested-layout-evidence-decision), open the [release page](https://github.com/kudzujs/kudzu/releases/tag/v0.12.4), or follow the [architecture packet](./docs/next-architecture/README.md).
18
18
 
19
19
  - [Documentation](https://kudzujs.cloud/docs)
20
20
  - [Installation guide](https://kudzujs.cloud/docs#install)
package/RELEASES.md CHANGED
@@ -1,5 +1,52 @@
1
1
  # Kudzu Releases
2
2
 
3
+ ## 0.12.4 - Nested Layout Evidence Decision
4
+
5
+ Kudzu 0.12.4 reviews executable route ownership evidence and keeps the existing
6
+ single-layout model instead of adding a speculative nested owner chain.
7
+
8
+ ### Changed in 0.12.4
9
+
10
+ - Reviewed the project application's list/detail/runtime routes, Apache Answer
11
+ route and authentication shells, Context and Zustand carts, and independent
12
+ navigation groups.
13
+ - Recorded zero routes requiring an intermediate retained layout whose state,
14
+ effects, or DOM survive descendant replacement and dispose on subtree exit.
15
+ - Accepted one shared layout plus static composition, route ownership, native
16
+ document navigation, and disjoint navigation groups as the current boundary.
17
+ - Updated `create-kudzu@0.1.117` to generate projects on
18
+ `@kudzujs/core@^0.12.4`.
19
+
20
+ ### Output Evidence
21
+
22
+ - The application remains unchanged at 43 files, 123,835 raw / 45,379 aggregate
23
+ gzip bytes, and deploy digest
24
+ `fb9d24cc01791bf80b67b659738ba62beded6ff6ce14a86a278fa4b34d088acf`.
25
+ - The maintained enhanced session remains 16 JavaScript files totaling 61,126
26
+ raw / 22,663 aggregate gzip bytes; `/help` remains 0 B JavaScript.
27
+ - No semantic primitive, IR kind, compiler pass, production compiler/runtime
28
+ line, runtime concept, layout registry, disposal path, or browser byte was
29
+ added.
30
+
31
+ ### Validation
32
+
33
+ - The machine-readable project contract records six reviewed route sets, zero
34
+ qualifying routes, no owner chain, and the reused ownership semantics.
35
+ - The full 273-test suite, package smoke, registry metadata, and fresh
36
+ installation are release gates.
37
+
38
+ ### Limits
39
+
40
+ Nested retained-layout owners remain unsupported. Reconsideration requires
41
+ three unrelated executable application routes proving the same intermediate
42
+ lifetime and explicit deepest-first disposal order.
43
+
44
+ ### Upgrade
45
+
46
+ ```sh
47
+ npm install @kudzujs/core@^0.12.4
48
+ ```
49
+
3
50
  ## 0.12.3 - Route Failure And Restoration Policy
4
51
 
5
52
  Kudzu 0.12.3 defines recovery for enhanced route failures without adding an
@@ -665,6 +665,39 @@ against the macOS arm64 Chrome 151 `0.12.2` samples.
665
665
  - **Done condition:** either existing layout composition is accepted or a
666
666
  minimal layout-owner chain is approved with explicit disposal order.
667
667
 
668
+ **Completion evidence:** architecture review covers the project application's
669
+ list, static detail, runtime project, and runtime issue routes; Apache Answer's
670
+ questions, tags, admin, and legal route-shell reduction; its independently
671
+ reduced authentication shell; the Context and Zustand cart reductions; and the
672
+ two disjoint navigation-group shells. All executable evidence fits one retained
673
+ layout owner around one replaceable route owner, followed by existing
674
+ conditional, keyed, effect, and DOM ownership. The project runtime routes use
675
+ native document navigation, the Answer shell is static composition, and the
676
+ independent navigation groups require disjoint top-level owners rather than a
677
+ nested owner chain.
678
+
679
+ No reviewed route proves an intermediate layout whose DOM, state, or effects
680
+ must survive descendant route replacement and then dispose on subtree exit.
681
+ The qualifying evidence count is zero, below the required three unrelated
682
+ routes. The stop condition is met: current nesting is source organization or
683
+ static composition, so this packet accepts the existing single-layout model and
684
+ does not authorize a layout-owner chain. A future review must first prove the
685
+ same otherwise-inexpressible intermediate lifetime in three unrelated
686
+ executable application routes, including leaf-before-intermediate and
687
+ deepest-first disposal requirements.
688
+
689
+ The project application records `closed-by-stop-condition`, the reviewed route
690
+ sets, an empty qualifying-route list, and the reused ownership semantics in its
691
+ machine-readable capability contract. This packet adds zero semantic
692
+ primitives, ModuleIR or RouteIR kinds, compiler passes, production compiler or
693
+ runtime lines, runtime concepts, normalization or adapter rules, public APIs,
694
+ layout registries, disposal paths, browser files, or browser bytes. Existing
695
+ fixtures and output remain unchanged: 43 deploy files totaling 123,835 raw /
696
+ 45,379 aggregate gzip bytes with the same deploy digest, a 61,126 raw / 22,663
697
+ aggregate gzip two-route JavaScript session, and 0 B JavaScript on `/help`. No
698
+ benchmark rerun or latency claim applies to a machine-readable evidence decision
699
+ with no generated-output change.
700
+
668
701
  ## `0.13.x`: Forms
669
702
 
670
703
  ### `0.13.0`: Production Form And Server Validation
@@ -1204,5 +1237,6 @@ release transaction where possible or document and publish a forward-fix patch.
1204
1237
  | `0.12.1` | Released | Preserve the published layout/history/focus/scroll evidence. | None |
1205
1238
  | `0.12.2` | Released | Preserve the published authentication and permission evidence. | None |
1206
1239
  | `0.12.3` | Released | Preserve the published route failure, focused retry, native fallback, and precommit retention evidence. | None |
1207
- | `0.12.4` | Active | Complete the nested layout evidence decision. | None |
1208
- | `0.12.5` onward | Blocked | Complete the `0.12.4` release transaction first. | Ordered patch boundary |
1240
+ | `0.12.4` | Released | Preserve the published single-layout decision and zero-owner-chain evidence. | None |
1241
+ | `0.13.0` | Active | Complete the production form and server-validation packet. | None |
1242
+ | `0.13.1` onward | Blocked | Complete the `0.13.0` release transaction first. | Ordered patch boundary |
@@ -66,7 +66,7 @@ Keep each patch behavior-preserving and independently reviewable. If a boundary
66
66
 
67
67
  ## Generator Versions
68
68
 
69
- `create-kudzu@0.1.116` retains the explicit install instructions and generates projects with `@kudzujs/core@^0.12.3`.
69
+ `create-kudzu@0.1.117` retains the explicit install instructions and generates projects with `@kudzujs/core@^0.12.4`.
70
70
 
71
71
  ## Release Boundary
72
72
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@kudzujs/core",
3
- "version": "0.12.3",
3
+ "version": "0.12.4",
4
4
  "description": "HTML-first TSX framework with synchronous state semantics and no virtual DOM",
5
5
  "type": "module",
6
6
  "license": "MIT",