@fluojs/studio 1.0.7 → 1.0.8
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/README.ko.md +3 -1
- package/README.md +3 -1
- package/dist/assets/{index-BMydm6o4.js → index-nyR3HCaJ.js} +20 -20
- package/dist/contracts.d.ts.map +1 -1
- package/dist/contracts.js +2 -8
- package/dist/index.html +1 -1
- package/package.json +2 -2
package/README.ko.md
CHANGED
|
@@ -21,6 +21,8 @@ fluo 진단을 위한 CLI sidecar 및 React viewer workflow입니다. Node dev-r
|
|
|
21
21
|
|
|
22
22
|
대부분의 애플리케이션 프로젝트는 Studio를 개발 전용 의존성으로 설치합니다. CLI가 `fluo dev --studio`, `fluo inspect --mermaid`, 패키징된 viewer 접근을 위해 Studio를 해석하며, 애플리케이션 런타임 자체는 Studio를 직접 import하지 않습니다.
|
|
23
23
|
|
|
24
|
+
Studio는 Node.js tooling package이며 배포 package의 `engines.node` field와 동일하게 Node.js `>=20.0.0`을 요구합니다. 패키징된 viewer subpath는 Bun, Deno, Cloudflare Workers fallback workflow가 만든 artifact를 표시하는 경우에도 Node package resolution으로 해석합니다.
|
|
25
|
+
|
|
24
26
|
```bash
|
|
25
27
|
pnpm add -D @fluojs/studio
|
|
26
28
|
```
|
|
@@ -101,7 +103,7 @@ Studio는 여전히 fluo CLI가 내보낸 JSON 파일을 소비합니다. 런타
|
|
|
101
103
|
- Runtime ingestion과 browser state/SSE API는 실행마다 생성되는 token을 요구합니다.
|
|
102
104
|
- Sidecar는 기본적으로 CORS를 활성화하지 않습니다.
|
|
103
105
|
- Request body는 기본적으로 수집하지 않습니다. Live request event는 method/path/url/request id/route/handler/status/duration/error metadata만 포함합니다.
|
|
104
|
-
- Live request event validation은 Studio UI state가 값을 보관하기 전에 `body`, `rawBody`, `requestBody`, `responseBody
|
|
106
|
+
- Live request event validation은 Studio UI state가 값을 보관하기 전에 privacy-sensitive `body`, `headers`, `payload`, `rawBody`, `requestBody`, `responseBody`를 포함한 body-like payload field를 거부합니다.
|
|
105
107
|
- Runtime Studio instrumentation은 CLI가 제공한 명시적 Studio config가 있을 때만 활성화됩니다. Runtime package source는 `process.env`를 직접 읽지 않으며, 유효한 injected config가 없으면 runtime 동작은 no-op입니다.
|
|
106
108
|
|
|
107
109
|
## 런타임 지원 매트릭스
|
package/README.md
CHANGED
|
@@ -21,6 +21,8 @@ CLI sidecar and React viewer workflow for fluo diagnostics, with a Node dev-runn
|
|
|
21
21
|
|
|
22
22
|
Most application projects install Studio as a development-only dependency. The CLI resolves it for `fluo dev --studio`, `fluo inspect --mermaid`, and packaged viewer access, while the application runtime itself does not import Studio.
|
|
23
23
|
|
|
24
|
+
Studio is a Node.js tooling package and requires Node.js `>=20.0.0`, matching the published package `engines.node` field. The packaged viewer subpath is resolved by Node package resolution even when it displays artifacts produced by Bun, Deno, or Cloudflare Workers fallback workflows.
|
|
25
|
+
|
|
24
26
|
```bash
|
|
25
27
|
pnpm add -D @fluojs/studio
|
|
26
28
|
```
|
|
@@ -101,7 +103,7 @@ This file-first path is the compatibility and migration fallback for CI, support
|
|
|
101
103
|
- Runtime ingestion and browser state/SSE APIs require generated per-run tokens.
|
|
102
104
|
- The sidecar does not enable CORS by default.
|
|
103
105
|
- Request bodies are not captured by default. Live request events include method/path/url/request id/route/handler/status/duration/error metadata only.
|
|
104
|
-
- Live request event validation rejects body-like payload fields
|
|
106
|
+
- Live request event validation rejects body-like payload fields, including privacy-sensitive `body`, `headers`, `payload`, `rawBody`, `requestBody`, and `responseBody`, before Studio UI state can retain them.
|
|
105
107
|
- Runtime Studio instrumentation is activated only by explicit CLI-provided Studio config. Runtime package source does not read `process.env` directly; without valid injected config, runtime behavior is a no-op.
|
|
106
108
|
|
|
107
109
|
## Runtime Support Matrix
|