@async/framework 0.11.19 → 0.11.22

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.
Files changed (2) hide show
  1. package/CHANGELOG.md +29 -0
  2. package/package.json +1 -1
package/CHANGELOG.md CHANGED
@@ -1,5 +1,34 @@
1
1
  # Changelog
2
2
 
3
+ ## 0.11.22 - 2026-06-19
4
+
5
+ - Updated framework release automation to consume `@async/pipeline@0.9.25`,
6
+ whose generated release workflow runs package-owned release evidence before
7
+ release plan/inspect/changelog/notes steps so `dist/` exists before package
8
+ inspection.
9
+ - Kept release-description sync checks on the released pipeline path after the
10
+ existing `v0.11.20` and `v0.11.21` GitHub Release description repairs.
11
+ - 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).
12
+
13
+ ## 0.11.21 - 2026-06-19
14
+
15
+ - Updated framework release automation to consume `@async/pipeline@0.9.24`,
16
+ whose generated release helper steps use `pnpm dlx` for the pinned
17
+ `@async/release` package on Node 24/npm 11 runners.
18
+ - Kept release-description sync scripts and generated workflow entries on the
19
+ released pipeline path.
20
+ - 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).
21
+
22
+ ## 0.11.20 - 2026-06-19
23
+
24
+ - Updated framework release automation to consume `@async/pipeline@0.9.22`
25
+ with the released `release sync-descriptions` command.
26
+ - Added framework package scripts for release-description sync checks and
27
+ generated matching `pipeline:release:sync-descriptions` entries.
28
+ - Synced existing semver GitHub Release descriptions from `CHANGELOG.md` so the
29
+ changelog remains the source of truth.
30
+ - 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).
31
+
3
32
  ## 0.11.19 - 2026-06-19
4
33
 
5
34
  - Added the first build-required profile subpaths,
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@async/framework",
3
- "version": "0.11.19",
3
+ "version": "0.11.22",
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,