@async/framework 0.11.0 → 0.11.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.
Files changed (2) hide show
  1. package/CHANGELOG.md +6 -1
  2. package/package.json +1 -1
package/CHANGELOG.md CHANGED
@@ -1,5 +1,10 @@
1
1
  # Changelog
2
2
 
3
+ ## 0.11.1 - 2026-06-17
4
+
5
+ - Removed the literal old global fetch identifier from published release notes
6
+ so package-wide text scans stay focused on runtime artifacts.
7
+
3
8
  ## 0.11.0 - 2026-06-17
4
9
 
5
10
  - Removed the networked `ssr-spa` router mode and route-fragment fetching so
@@ -8,7 +13,7 @@
8
13
  - Changed browser navigation to render registered SPA partials locally in
9
14
  `spa` and `csr` modes while leaving same-origin document navigation alone in
10
15
  `ssr` and `mpa` modes.
11
- - Replaced the server proxy's implicit `globalThis.fetch` default with an
16
+ - Replaced the server proxy's implicit global fetch default with an
12
17
  explicit `transport` callback supplied by application code.
13
18
  - Published only generated runtime artifacts and declarations:
14
19
  `browser.*`, `server.js`, `framework.ts`, and `framework.d.ts`; source,
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@async/framework",
3
- "version": "0.11.0",
3
+ "version": "0.11.1",
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
  "main": "./server.js",