@go-to-k/cdkd 0.75.2 → 0.76.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 +2 -2
- package/dist/cli.js +6 -4
- package/dist/cli.js.map +2 -2
- package/dist/go-to-k-cdkd-0.76.0.tgz +0 -0
- package/package.json +1 -1
- package/dist/go-to-k-cdkd-0.75.2.tgz +0 -0
package/README.md
CHANGED
|
@@ -565,8 +565,8 @@ but reusing cdkd's synthesis / asset / construct-path plumbing — no
|
|
|
565
565
|
`template.yaml` to maintain, no `cdk synth | sam ...` round-trip.
|
|
566
566
|
|
|
567
567
|
Requires Docker. v1 supports Node.js and Python runtimes (`nodejs18.x` /
|
|
568
|
-
`nodejs20.x` / `nodejs22.x` / `
|
|
569
|
-
other runtimes follow in subsequent PRs.
|
|
568
|
+
`nodejs20.x` / `nodejs22.x` / `nodejs24.x` / `python3.11` / `python3.12` /
|
|
569
|
+
`python3.13` / `python3.14`); other runtimes follow in subsequent PRs.
|
|
570
570
|
|
|
571
571
|
**Container Lambdas (PR 5 of #224)** — `lambda.DockerImageFunction(...)` /
|
|
572
572
|
`Code.ImageUri` is supported alongside ZIP Lambdas. cdkd reads the
|
package/dist/cli.js
CHANGED
|
@@ -70567,9 +70567,11 @@ var SUPPORTED_RUNTIMES = {
|
|
|
70567
70567
|
"nodejs18.x": { image: "public.ecr.aws/lambda/nodejs:18", fileExtension: ".js" },
|
|
70568
70568
|
"nodejs20.x": { image: "public.ecr.aws/lambda/nodejs:20", fileExtension: ".js" },
|
|
70569
70569
|
"nodejs22.x": { image: "public.ecr.aws/lambda/nodejs:22", fileExtension: ".js" },
|
|
70570
|
+
"nodejs24.x": { image: "public.ecr.aws/lambda/nodejs:24", fileExtension: ".js" },
|
|
70570
70571
|
"python3.11": { image: "public.ecr.aws/lambda/python:3.11", fileExtension: ".py" },
|
|
70571
70572
|
"python3.12": { image: "public.ecr.aws/lambda/python:3.12", fileExtension: ".py" },
|
|
70572
|
-
"python3.13": { image: "public.ecr.aws/lambda/python:3.13", fileExtension: ".py" }
|
|
70573
|
+
"python3.13": { image: "public.ecr.aws/lambda/python:3.13", fileExtension: ".py" },
|
|
70574
|
+
"python3.14": { image: "public.ecr.aws/lambda/python:3.14", fileExtension: ".py" }
|
|
70573
70575
|
};
|
|
70574
70576
|
var UnsupportedRuntimeError = class _UnsupportedRuntimeError extends Error {
|
|
70575
70577
|
constructor(runtime, message) {
|
|
@@ -70598,12 +70600,12 @@ function resolveRuntimeSpec(runtime) {
|
|
|
70598
70600
|
if (runtime.startsWith("java") || runtime.startsWith("dotnet") || runtime.startsWith("ruby") || runtime.startsWith("go") || runtime.startsWith("provided")) {
|
|
70599
70601
|
throw new UnsupportedRuntimeError(
|
|
70600
70602
|
runtime,
|
|
70601
|
-
`Runtime '${runtime}' is not supported in cdkd local invoke v1. Only Node.js (nodejs18.x / nodejs20.x / nodejs22.x) and Python (python3.11 / python3.12 / python3.13) runtimes are supported. Other runtimes follow in subsequent PRs.`
|
|
70603
|
+
`Runtime '${runtime}' is not supported in cdkd local invoke v1. Only Node.js (nodejs18.x / nodejs20.x / nodejs22.x / nodejs24.x) and Python (python3.11 / python3.12 / python3.13 / python3.14) runtimes are supported. Other runtimes follow in subsequent PRs.`
|
|
70602
70604
|
);
|
|
70603
70605
|
}
|
|
70604
70606
|
throw new UnsupportedRuntimeError(
|
|
70605
70607
|
runtime,
|
|
70606
|
-
`Unknown runtime '${runtime}'. cdkd local invoke v1 supports nodejs18.x / nodejs20.x / nodejs22.x / python3.11 / python3.12 / python3.13.`
|
|
70608
|
+
`Unknown runtime '${runtime}'. cdkd local invoke v1 supports nodejs18.x / nodejs20.x / nodejs22.x / nodejs24.x / python3.11 / python3.12 / python3.13 / python3.14.`
|
|
70607
70609
|
);
|
|
70608
70610
|
}
|
|
70609
70611
|
|
|
@@ -77028,7 +77030,7 @@ function reorderArgs(argv) {
|
|
|
77028
77030
|
}
|
|
77029
77031
|
async function main() {
|
|
77030
77032
|
const program = new Command16();
|
|
77031
|
-
program.name("cdkd").description("CDK Direct - Deploy AWS CDK apps directly via SDK/Cloud Control API").version("0.
|
|
77033
|
+
program.name("cdkd").description("CDK Direct - Deploy AWS CDK apps directly via SDK/Cloud Control API").version("0.76.0");
|
|
77032
77034
|
program.addCommand(createBootstrapCommand());
|
|
77033
77035
|
program.addCommand(createSynthCommand());
|
|
77034
77036
|
program.addCommand(createListCommand());
|