Skip to content

Commit 0b26855

Browse files
authored
Merge branch 'master' into master
2 parents 57cbcb3 + 9bbe65d commit 0b26855

File tree

2 files changed

+10
-1
lines changed

2 files changed

+10
-1
lines changed

CHANGELOG.md

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,13 @@
22

33
All notable changes to this project will be documented in this file.
44

5+
## [7.17.1](https://github.com/terraform-aws-modules/terraform-aws-lambda/compare/v7.17.0...v7.17.1) (2025-01-07)
6+
7+
8+
### Bug Fixes
9+
10+
* Rename npm_package_json to npm_requirements ([#621](https://github.com/terraform-aws-modules/terraform-aws-lambda/issues/621)) ([4bc61eb](https://github.com/terraform-aws-modules/terraform-aws-lambda/commit/4bc61eb58005e149dc1ca87ba79f42b0cba944fd))
11+
512
## [7.17.0](https://github.com/terraform-aws-modules/terraform-aws-lambda/compare/v7.16.0...v7.17.0) (2024-12-08)
613

714

package.py

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -821,7 +821,9 @@ def commands_step(path, commands):
821821
pip_requirements = claim.get("pip_requirements")
822822
poetry_install = claim.get("poetry_install")
823823
poetry_export_extra_args = claim.get("poetry_export_extra_args", [])
824-
npm_requirements = claim.get("npm_package_json")
824+
npm_requirements = claim.get(
825+
"npm_requirements", claim.get("npm_package_json")
826+
)
825827
runtime = claim.get("runtime", query.runtime)
826828

827829
if pip_requirements and runtime.startswith("python"):

0 commit comments

Comments
 (0)