| Name | Modified | Size | Downloads / Week |
|---|---|---|---|
| Parent folder | |||
| aws-cdk-python-docs-2.259.0.zip.sig | 2026-06-12 | 566 Bytes | |
| aws-cdk-python-docs-2.259.0.zip | 2026-06-12 | 329.6 MB | |
| aws-cdk-java-docs-2.259.0.zip.sig | 2026-06-12 | 566 Bytes | |
| aws-cdk-java-docs-2.259.0.zip | 2026-06-12 | 657.2 MB | |
| aws-cdk-dotnet-docs-2.259.0.zip.sig | 2026-06-12 | 566 Bytes | |
| aws-cdk-dotnet-docs-2.259.0.zip | 2026-06-12 | 226.5 MB | |
| aws-cdk-2.259.0.zip.sig | 2026-06-12 | 566 Bytes | |
| aws-cdk-2.259.0.zip | 2026-06-12 | 1.3 GB | |
| README.md | 2026-06-11 | 2.7 kB | |
| v2.259.0 source code.tar.gz | 2026-06-11 | 265.4 MB | |
| v2.259.0 source code.zip | 2026-06-11 | 282.0 MB | |
| Totals: 11 Items | 3.1 GB | 0 | |
⚠ BREAKING CHANGES
- lambda:
Runtime.NODEJS_LATESTnow resolves tonodejs24.xin every region. Customers who pin to a concrete runtime (Runtime.NODEJS_22_X,useLatestRuntimeVersion: falseinaws-lambda-nodejs.NodejsFunction) are unaffected. ExistingAWS::Lambda::Functionresources synthesized withNODEJS_LATESTwill seeRuntime: nodejs22.x→Runtime: nodejs24.xon next deploy. Lambda accepts runtime updates in place.
Customer-code compatibility — IMPORTANT: Node.js 24 removes support for callback-style asynchronous handlers ((event, context, callback) => {...}) per the launch blog. Customers whose Lambda code still uses callback-based handlers will see runtime errors after the bump. Customers should migrate to async (event, context) => {...} or pin to Runtime.NODEJS_22_X explicitly.
Features
- core: recommend the use of weak references if no choice has been made (#38070) (6e74e5e)
- ecs: add forceNewDeployment option for Fargate and EC2 services (#36797) (3d9c4df), closes #27762
- eks: use the recommended AL2023 instead of AL2 AMI type (under feature flag) (#37850) (6a2dcb7), closes #32211
- lambda: upgrade lambda and custom resource default runtime to nodejs24.x (#38031) (36c84c6)
Bug Fixes
- spec2cdk: sanitize hyphens in EventBridge event namespace names (#38088) (b8f41bf), closes 40aws-cdk/spec2cdk/lib/naming/conventions.ts#L195