diff --git a/README.md b/README.md index c0babed..90115e7 100644 --- a/README.md +++ b/README.md @@ -46,6 +46,7 @@ A CLI to install the New Relic AWS Lambda integration and layers. * nodejs16.x * nodejs18.x * nodejs20.x +* nodejs22.x * provided * provided.al2 * provided.al2023 @@ -55,6 +56,7 @@ A CLI to install the New Relic AWS Lambda integration and layers. * python3.10 * python3.11 * python3.12 +* python3.13 * ruby3.2 * ruby3.3 diff --git a/newrelic_lambda_cli/utils.py b/newrelic_lambda_cli/utils.py index 54d1daf..416f32b 100644 --- a/newrelic_lambda_cli/utils.py +++ b/newrelic_lambda_cli/utils.py @@ -40,6 +40,10 @@ "Handler": "newrelic-lambda-wrapper.handler", "LambdaExtension": True, }, + "nodejs22.x": { + "Handler": "newrelic-lambda-wrapper.handler", + "LambdaExtension": True, + }, "provided": {"LambdaExtension": True}, "provided.al2": {"LambdaExtension": True}, "provided.al2023": {"LambdaExtension": True}, @@ -67,6 +71,10 @@ "Handler": "newrelic_lambda_wrapper.handler", "LambdaExtension": True, }, + "python3.13": { + "Handler": "newrelic_lambda_wrapper.handler", + "LambdaExtension": True, + }, "ruby3.2": { "Handler": "newrelic_lambda_wrapper.handler", "LambdaExtension": True, diff --git a/setup.py b/setup.py index ea32a01..c310cdb 100644 --- a/setup.py +++ b/setup.py @@ -6,7 +6,7 @@ setup( name="newrelic-lambda-cli", - version="0.9.4", + version="0.9.5", python_requires=">=3.3", description="A CLI to install the New Relic AWS Lambda integration and layers.", long_description=README,