Skip to content

Commit 40a5123

Browse files
authored
refactor: drop support for Node.js <= 18.0.0 (#34925)
### Issue # (if applicable) Related to #33623. ### Reason for this change CDK has announced end of support for Node.js 14.x and 16.x on May 30th, 2025. ### Description of changes - Marked the Node 16 as deprecated in the custom resource provider (annotation) - Updated the linter rule - Replaced node versions in package.json - Ran the linter to verify ### Description of how you validated changes Ran the linter ### Checklist - [x] My code adheres to the [CONTRIBUTING GUIDE](https://github.com/aws/aws-cdk/blob/main/CONTRIBUTING.md) and [DESIGN GUIDELINES](https://github.com/aws/aws-cdk/blob/main/docs/DESIGN_GUIDELINES.md) ---- *By submitting this pull request, I confirm that my contribution is made under the terms of the Apache-2.0 license*
1 parent 4eda24b commit 40a5123

File tree

47 files changed

+47
-46
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

47 files changed

+47
-46
lines changed

packages/@aws-cdk-testing/framework-integ/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -64,7 +64,7 @@
6464
],
6565
"homepage": "https://github.com/aws/aws-cdk",
6666
"engines": {
67-
"node": ">= 14.15.0"
67+
"node": ">= 18.0.0"
6868
},
6969
"stability": "experimental",
7070
"maturity": "experimental",

packages/@aws-cdk/app-staging-synthesizer-alpha/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -75,7 +75,7 @@
7575
"license": "Apache-2.0",
7676
"homepage": "https://github.com/aws/aws-cdk",
7777
"engines": {
78-
"node": ">= 14.15.0"
78+
"node": ">= 18.0.0"
7979
},
8080
"stability": "experimental",
8181
"maturity": "experimental",

packages/@aws-cdk/aws-amplify-alpha/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -104,7 +104,7 @@
104104
"constructs": "^10.0.0"
105105
},
106106
"engines": {
107-
"node": ">= 14.15.0"
107+
"node": ">= 18.0.0"
108108
},
109109
"stability": "experimental",
110110
"maturity": "experimental",

packages/@aws-cdk/aws-applicationsignals-alpha/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -97,7 +97,7 @@
9797
"constructs": "^10.0.0"
9898
},
9999
"engines": {
100-
"node": ">= 14.15.0"
100+
"node": ">= 18.0.0"
101101
},
102102
"stability": "experimental",
103103
"maturity": "experimental",

packages/@aws-cdk/aws-apprunner-alpha/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -98,7 +98,7 @@
9898
"constructs": "^10.0.0"
9999
},
100100
"engines": {
101-
"node": ">= 14.15.0"
101+
"node": ">= 18.0.0"
102102
},
103103
"stability": "experimental",
104104
"maturity": "experimental",

packages/@aws-cdk/aws-bedrock-alpha/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -91,7 +91,7 @@
9191
"constructs": "^10.0.0"
9292
},
9393
"engines": {
94-
"node": ">= 14.15.0"
94+
"node": ">= 18.0.0"
9595
},
9696
"stability": "experimental",
9797
"maturity": "experimental",

packages/@aws-cdk/aws-cloud9-alpha/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -96,7 +96,7 @@
9696
"constructs": "^10.0.0"
9797
},
9898
"engines": {
99-
"node": ">= 14.15.0"
99+
"node": ">= 18.0.0"
100100
},
101101
"stability": "experimental",
102102
"maturity": "experimental",

packages/@aws-cdk/aws-codestar-alpha/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -96,7 +96,7 @@
9696
"constructs": "^10.0.0"
9797
},
9898
"engines": {
99-
"node": ">= 14.15.0"
99+
"node": ">= 18.0.0"
100100
},
101101
"stability": "experimental",
102102
"maturity": "experimental",

packages/@aws-cdk/aws-custom-resource-sdk-adapter/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -64,7 +64,7 @@
6464
],
6565
"homepage": "https://github.com/aws/aws-cdk",
6666
"engines": {
67-
"node": ">= 14.15.0"
67+
"node": ">= 18.0.0"
6868
},
6969
"stability": "experimental",
7070
"maturity": "experimental",

packages/@aws-cdk/aws-ec2-alpha/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -92,7 +92,7 @@
9292
},
9393
"separate-module": false,
9494
"engines": {
95-
"node": ">= 14.15.0"
95+
"node": ">= 18.0.0"
9696
},
9797
"stability": "experimental",
9898
"maturity": "developer-preview",

0 commit comments

Comments
 (0)