@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 +13 -6
- package/dist/cli.js +1038 -24
- package/dist/cli.js.map +1 -1
- package/dist/{deploy-engine-DWpeb9wT.js → deploy-engine-B-w4C_7O.js} +4 -3
- package/dist/deploy-engine-B-w4C_7O.js.map +1 -0
- package/dist/index.d.ts.map +1 -1
- package/dist/index.js +1 -1
- package/package.json +1 -1
- package/dist/deploy-engine-DWpeb9wT.js.map +0 -1
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
|
|
474
|
-
|
|
475
|
-
|
|
476
|
-
|
|
477
|
-
|
|
478
|
-
|
|
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
|
|