@openparachute/app 0.2.0-rc.5 → 0.2.0-rc.6

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.
@@ -3,6 +3,7 @@
3
3
  "manifestName": "parachute-app",
4
4
  "displayName": "App",
5
5
  "tagline": "Host module for custom Parachute UIs — drop a built bundle in and serve it under one origin.",
6
+ "kind": "api",
6
7
  "port": 1946,
7
8
  "paths": ["/app", "/.parachute"],
8
9
  "stripPrefix": false,
package/CHANGELOG.md CHANGED
@@ -9,6 +9,32 @@ side-by-side:
9
9
  The admin SPA at `web/admin/` ships inside the host package as
10
10
  `dist/admin/`; its version mirrors the host's version.
11
11
 
12
+ ## [app 0.2.0-rc.6] - 2026-05-22
13
+
14
+ fix(app): correct `kind` to `"api"` — app is a backend that proxies,
15
+ not a static-served frontend (folds the in-flight rc.6 per
16
+ [app#14](https://github.com/ParachuteComputer/parachute-app/issues/14)).
17
+
18
+ The initial rc.6 in-flight version carried `"kind": "frontend"` to
19
+ unblock the hub validator (which at rc.13 still required the field).
20
+ That was the wrong value semantically. App is a **backend** that
21
+ serves UI bundles via its own HTTP server — hub's `/app/*` proxy
22
+ forwards to app on `:1946`, then app's HTTP layer serves the admin
23
+ SPA + `notes-ui` + any installed sub-units. Hub does NOT static-serve
24
+ from app's `dist/`; the `"frontend"` framing was inaccurate and
25
+ risked future tooling that branches on `kind === "frontend"` (already
26
+ in `parachute-hub/src/commands/upgrade.ts:376` — which runs
27
+ `bun run build` for kind-frontend modules) treating app as a
28
+ static-bundle module and breaking the runtime HTTP layer.
29
+
30
+ `"api"` is the accurate value: app's role is the backend-proxy lane,
31
+ same as vault / scribe / runner. With hub#327 landing alongside this
32
+ PR — the validator no longer inspects `kind` at all — future app
33
+ releases can drop the field entirely. For now keeping it explicit
34
+ works under both the old validator (rc.13 strict-require) and the
35
+ new (rc.14+ no-validate); safest immediate fix that doesn't gate on
36
+ hub-rc.14 propagation.
37
+
12
38
  ## [app 0.2.0-rc.5] - 2026-05-22
13
39
 
14
40
  fix(app): self-register uses `manifestName` as services.json row key
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@openparachute/app",
3
- "version": "0.2.0-rc.5",
3
+ "version": "0.2.0-rc.6",
4
4
  "description": "Host module for custom Parachute UIs — drop a built bundle in and serve it under one origin.",
5
5
  "module": "src/index.ts",
6
6
  "type": "module",