@async/framework 0.11.17 → 0.11.18
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 +14 -0
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,19 @@
|
|
|
1
1
|
# Changelog
|
|
2
2
|
|
|
3
|
+
## 0.11.18 - 2026-06-19
|
|
4
|
+
|
|
5
|
+
- Added inert build optimizer artifact helpers for ADR 26 pass records,
|
|
6
|
+
diagnostics, runtime slice selection, handler emission, and development
|
|
7
|
+
report generation.
|
|
8
|
+
- Added optimizer fixtures for signal source classification, signal ownership,
|
|
9
|
+
JSX event symbol extraction, Suspense/Reveal lowering, runtime selection, and
|
|
10
|
+
server-only browser import diagnostics.
|
|
11
|
+
- Added build optimizer tests proving maybe-promise signals fail explicitly,
|
|
12
|
+
event handlers are not forced through dynamic imports, Reveal ordering is
|
|
13
|
+
deterministic, omitted runtime systems are visible, and helpers do not execute
|
|
14
|
+
app modules or import no-build runtime systems.
|
|
15
|
+
- Bundle size from bundled TypeScript source: `browser.ts` raw 221,403 B (221.4 KB / 0.221 MB), gzip 42,093 B (42.1 KB / 0.042 MB), br 34,797 B (34.8 KB / 0.035 MB) -> `browser.min.js` raw 95,027 B (95.0 KB / 0.095 MB), gzip 28,145 B (28.1 KB / 0.028 MB), br 24,793 B (24.8 KB / 0.025 MB); delta raw -126,376 B (-126.4 KB / -0.126 MB), gzip -13,948 B (-13.9 KB / -0.014 MB), br -10,004 B (-10.0 KB / -0.010 MB).
|
|
16
|
+
|
|
3
17
|
## 0.11.17 - 2026-06-19
|
|
4
18
|
|
|
5
19
|
- Added the stream backpatch protocol to `createBoundaryReceiver(...)` with
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@async/framework",
|
|
3
|
-
"version": "0.11.
|
|
3
|
+
"version": "0.11.18",
|
|
4
4
|
"description": "No-build Loader app runtime with browser and server entrypoints, signals, command events, route partials, cache split, SSR activation, and streaming boundaries.",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"sideEffects": false,
|