Description
Note
AWS Lambda has updated the table of Supported Runtimes to reflect that the deprecation has been delayed to Mar 31, 2023.
Description of the feature request
Problem statement
AWS is ending support for Node.js 12 in AWS Lambda. This follows Node.js 12 End-Of-Life (EOL) reached on April 30, 2022.
Starting November 14, 2022, Lambda will no longer apply security patches and other updates to the Node.js 12 runtime used by Lambda functions, and functions using Node.js 12 will no longer be eligible for technical support. In addition, customers will no longer be able to create new Lambda functions using the Node.js 12 runtime.
Starting December 14, 2022, customers will no longer be able to update existing functions using the Node.js 12 runtime.
Summary of the feature
Remove support and references of Node.js 12 included but not limited to:
- CI/CD pipelines
- Documentation (readme, docs)
- Examples
Code examples
Benefits for you and the wider AWS community
Migration to the latest stable Node.js runtime with improved performance and new features.
Describe alternatives you've considered
N/A
Additional context
AWS recommends that customers upgrade their existing Node.js 12 functions to Node.js 16 before November 14, 2022.
End of support does not impact function execution. Customer's functions will continue to run. However, they will be running on an unsupported runtime which is no longer maintained or patched by the AWS Lambda team.
The following command shows how to use the AWS CLI to list all functions in a specific region using Node.js 12. To find all such functions in an AWS account, customers can repeat this command for each region:
aws lambda list-functions --function-version ALL --region us-east-1 --output text --query "Functions[?Runtime=='nodejs12.x'].FunctionArn"
For more information, refer to the AWS Lambda runtime deprecation policy.
Related issues, RFCs
N/A