File tree Expand file tree Collapse file tree 12 files changed +45
-36
lines changed
Expand file tree Collapse file tree 12 files changed +45
-36
lines changed Original file line number Diff line number Diff line change 3030 "source-map-support" : " ^0.5.21"
3131 },
3232 "peerDependencies" : {
33- "aws-cdk-lib" : " ^2.113 .0" ,
33+ "aws-cdk-lib" : " ^2.168 .0" ,
3434 "constructs" : " ^10.4.2"
3535 }
3636}
Original file line number Diff line number Diff line change 2424 "source-map-support" : " ^0.5.21"
2525 },
2626 "peerDependencies" : {
27- "aws-cdk-lib" : " ^2.113 .0" ,
27+ "aws-cdk-lib" : " ^2.168 .0" ,
2828 "constructs" : " ^10.4.2"
2929 }
3030}
Original file line number Diff line number Diff line change 1818 "typescript" : " ^5.3.2"
1919 },
2020 "dependencies" : {
21- "aws-cdk-lib" : " ^2.113 .0" ,
21+ "aws-cdk-lib" : " ^2.168 .0" ,
2222 "constructs" : " ^10.3.0" ,
2323 "esbuild" : " ^0.18.0" ,
2424 "source-map-support" : " ^0.5.21"
Original file line number Diff line number Diff line change 3030 "source-map-support" : " ^0.5.21"
3131 },
3232 "peerDependencies" : {
33- "aws-cdk-lib" : " ^2.113 .0" ,
33+ "aws-cdk-lib" : " ^2.168 .0" ,
3434 "constructs" : " ^10.4.2"
3535 }
3636}
Original file line number Diff line number Diff line change @@ -128,7 +128,7 @@ export class Maintenance extends Construct {
128128 "../assets/handlers/maintenance/maintenance.ts"
129129 ) ,
130130 description : "Lambda manage the maintenance mode status" ,
131- runtime : lambda . Runtime . NODEJS_20_X ,
131+ runtime : lambda . Runtime . NODEJS_22_X ,
132132 handler : "index.handler" ,
133133 timeout : Duration . seconds ( 5 ) ,
134134 filesystem : lambda . FileSystem . fromEfsAccessPoint (
@@ -151,7 +151,7 @@ export class Maintenance extends Construct {
151151 "../assets/handlers/maintenance/whitelist.ts"
152152 ) ,
153153 description : "Lambda to manage the maintenance whitelist" ,
154- runtime : lambda . Runtime . NODEJS_20_X ,
154+ runtime : lambda . Runtime . NODEJS_22_X ,
155155 handler : "index.handler" ,
156156 timeout : Duration . seconds ( 5 ) ,
157157 filesystem : lambda . FileSystem . fromEfsAccessPoint (
Original file line number Diff line number Diff line change 3333 "yaml" : " ^2.3.1"
3434 },
3535 "peerDependencies" : {
36- "aws-cdk-lib" : " ^2.113 .0" ,
36+ "aws-cdk-lib" : " ^2.168 .0" ,
3737 "constructs" : " ^10.4.2"
3838 }
3939}
Original file line number Diff line number Diff line change @@ -103,7 +103,7 @@ export class HeaderChangeDetection extends Construct {
103103
104104 const lambda = new Function ( this , "HeaderCheck" , {
105105 architecture : Architecture . X86_64 ,
106- runtime : Runtime . NODEJS_20_X ,
106+ runtime : Runtime . NODEJS_22_X ,
107107 handler : "header-check.handler" ,
108108 timeout : props . lambdaTimeout || Duration . seconds ( 10 ) ,
109109 code : Code . fromAsset ( join ( __dirname , "lambda" ) , {
Original file line number Diff line number Diff line change 2727 "source-map-support" : " ^0.5.21"
2828 },
2929 "peerDependencies" : {
30- "aws-cdk-lib" : " ^2.113 .0" ,
30+ "aws-cdk-lib" : " ^2.168 .0" ,
3131 "constructs" : " ^10.4.2"
3232 }
3333}
Original file line number Diff line number Diff line change 3131 "source-map-support" : " ^0.5.21"
3232 },
3333 "peerDependencies" : {
34- "aws-cdk-lib" : " ^2.113 .0" ,
34+ "aws-cdk-lib" : " ^2.168 .0" ,
3535 "constructs" : " ^10.4.2"
3636 }
3737}
Original file line number Diff line number Diff line change @@ -61,7 +61,7 @@ class EdgeLambdaFunction extends Construct {
6161 } ) ,
6262 } ,
6363 } ) ,
64- runtime : Runtime . NODEJS_20_X ,
64+ runtime : Runtime . NODEJS_22_X ,
6565 handler : `${ options . handlerName } .handler` ,
6666 ...options . functionOptions ,
6767 }
You can’t perform that action at this time.
0 commit comments