@go-to-k/cdkd 0.128.0 → 0.130.0

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.md CHANGED
@@ -468,14 +468,21 @@ preflight (HTTP API v2 `CorsConfiguration` + REST v1 OPTIONS MOCK
468
468
  preflight from `defaultCorsPreflightOptions`); hot reload via `--watch`;
469
469
  deploy-state-backed env var substitution via `--from-state`.
470
470
 
471
+ Function URL `InvokeMode: RESPONSE_STREAM` is supported (issue #467):
472
+ streaming Lambdas are invoked via the RIE streaming protocol and the
473
+ response is piped to the HTTP client with `Transfer-Encoding: chunked`.
474
+ Note that AWS's local RIE buffers the response — incremental chunk
475
+ delivery only manifests against the deployed Lambda runtime; locally
476
+ the response shape is correct but arrives in one block.
477
+
471
478
  Routes whose integration cdkd cannot emulate (non-AWS_PROXY REST v1
472
479
  types other than the MOCK CORS preflight subset, HTTP API v2 service
473
- integrations, WebSocket APIs, Function URLs with IAM auth or
474
- RESPONSE_STREAM, cross-stack Lambda Arn references) **do not block
475
- boot** — the server starts with a per-route `[warn]` summary and
476
- returns HTTP 501 + the reason in the JSON body if and when the route is
477
- hit. This lets you run the rest of your API surface locally while the
478
- unsupported routes stay on the deployed API.
480
+ integrations, WebSocket APIs, Function URLs with IAM auth, cross-stack
481
+ Lambda Arn references) **do not block boot** — the server starts with
482
+ a per-route `[warn]` summary and returns HTTP 501 + the reason in the
483
+ JSON body if and when the route is hit. This lets you run the rest of
484
+ your API surface locally while the unsupported routes stay on the
485
+ deployed API.
479
486
 
480
487
  ### `local run-task`
481
488