Skip to content

Commit

Permalink
Modify CLI to support AWS Lambda python3.13 & nodejs22 runtimes (#303)
Browse files Browse the repository at this point in the history
* modify cli to support python3.13 & nodejs22 runtimes
  • Loading branch information
chaudharysaket authored Dec 2, 2024
1 parent e088ac9 commit 963a19c
Show file tree
Hide file tree
Showing 3 changed files with 11 additions and 1 deletion.
2 changes: 2 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand All @@ -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

Expand Down
8 changes: 8 additions & 0 deletions newrelic_lambda_cli/utils.py
Original file line number Diff line number Diff line change
Expand Up @@ -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},
Expand Down Expand Up @@ -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,
Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -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,
Expand Down

0 comments on commit 963a19c

Please sign in to comment.