Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .nvmrc
Original file line number Diff line number Diff line change
@@ -1 +1 @@
20.7.0
v22.14.0
2 changes: 1 addition & 1 deletion packages/basic-auth/lib/basic-auth-construct.ts
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@ export class BasicAuthFunction extends Construct {
}),
},
}),
runtime: Runtime.NODEJS_18_X,
runtime: Runtime.NODEJS_22_X,
handler: "basic-auth.handler",
}
);
Expand Down
2 changes: 1 addition & 1 deletion packages/cloudfront-security-headers/lib/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,7 @@ export class SecurityHeaderFunction extends Construct {
}),
},
}),
runtime: Runtime.NODEJS_18_X,
runtime: Runtime.NODEJS_22_X,
handler: "security-header.handler",
}
);
Expand Down
2 changes: 1 addition & 1 deletion packages/esbuild/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -123,7 +123,7 @@ export class ExampleFunction extends Construct {
}),
},
}),
runtime: Runtime.NODEJS_18_X,
runtime: Runtime.NODEJS_22_X,
handler: "example.handler",
});
}
Expand Down
2 changes: 1 addition & 1 deletion packages/geoip-redirect/lib/redirect-construct.ts
Original file line number Diff line number Diff line change
Expand Up @@ -72,7 +72,7 @@ export class RedirectFunction extends Construct {
}),
},
}),
runtime: Runtime.NODEJS_18_X,
runtime: Runtime.NODEJS_22_X,
handler: "redirect.handler",
}
);
Expand Down
4 changes: 2 additions & 2 deletions packages/graphql-mesh-server/lib/pipeline.ts
Original file line number Diff line number Diff line change
Expand Up @@ -136,7 +136,7 @@ export class CodePipelineService extends Construct {
"../assets/handlers/invalidate-cloudfront-cache.ts"
),
description: "Lambda function to invalidate CloudFront cache.",
runtime: Runtime.NODEJS_18_X,
runtime: Runtime.NODEJS_22_X,
handler: "index.handler",
timeout: Duration.seconds(5),
environment: {
Expand Down Expand Up @@ -174,7 +174,7 @@ export class CodePipelineService extends Construct {
entry: path.resolve(__dirname, "../assets/handlers/notify-sns.ts"),
description:
"Lambda function to forward SNS messages to another account.",
runtime: Runtime.NODEJS_18_X,
runtime: Runtime.NODEJS_22_X,
handler: "index.handler",
timeout: Duration.seconds(10),
environment: {
Expand Down
2 changes: 1 addition & 1 deletion packages/prerender-proxy/lib/error-response-construct.ts
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,7 @@ export class ErrorResponseFunction extends Construct {
}),
},
}),
runtime: Runtime.NODEJS_18_X,
runtime: Runtime.NODEJS_22_X,
handler: "error-response.handler",
}
);
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,7 @@ export class CloudFrontCacheControl extends Construct {
}),
},
}),
runtime: Runtime.NODEJS_18_X,
runtime: Runtime.NODEJS_22_X,
handler: "cache-control.handler",
}
);
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@ export class PrerenderCheckFunction extends Construct {
}),
},
}),
runtime: Runtime.NODEJS_18_X,
runtime: Runtime.NODEJS_22_X,
handler: "prerender-check.handler",
}
);
Expand Down
2 changes: 1 addition & 1 deletion packages/prerender-proxy/lib/prerender-construct.ts
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,7 @@ export class PrerenderFunction extends Construct {
}),
},
}),
runtime: Runtime.NODEJS_18_X,
runtime: Runtime.NODEJS_22_X,
handler: "prerender.handler",
}
);
Expand Down
2 changes: 1 addition & 1 deletion packages/static-hosting/lib/path-remap.ts
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ export class PathRemapFunction extends Construct {
}),
},
}),
runtime: Runtime.NODEJS_18_X,
runtime: Runtime.NODEJS_22_X,
handler: "remap.handler",
}
);
Expand Down