Skip to content

Commit

Permalink
fix: mark published AWS Lambda layers as supporting 'nodejs20.x' runt…
Browse files Browse the repository at this point in the history
…ime (#4035)

Closes: #4033
  • Loading branch information
trentm committed Jun 5, 2024
1 parent 127fd2b commit b8f46bd
Show file tree
Hide file tree
Showing 2 changed files with 26 additions and 2 deletions.
2 changes: 1 addition & 1 deletion .ci/Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -60,7 +60,7 @@ publish: validate-layer-name validate-aws-default-region
--layer-name "$(ELASTIC_LAYER_NAME)" \
--description "AWS Lambda Extension Layer for the Elastic APM Node.js Agent" \
--license "Apache-2.0" \
--compatible-runtimes nodejs18.x nodejs16.x nodejs14.x \
--compatible-runtimes nodejs20.x nodejs18.x nodejs16.x nodejs14.x \
--zip-file "fileb://./$(AWS_FOLDER)/elastic-apm-node-lambda-layer-$(GITHUB_REF_NAME).zip"

# Grant public access to the given LAYER in the given AWS region
Expand Down
26 changes: 25 additions & 1 deletion CHANGELOG.asciidoc
Original file line number Diff line number Diff line change
Expand Up @@ -33,13 +33,37 @@ Notes:
See the <<upgrade-to-v4>> guide.
==== Unreleased
[float]
===== Breaking changes
[float]
===== Features
[float]
===== Bug fixes
* Mark the published AWS Lambda layers as supporting the "nodejs20.x" Lambda
Runtime (`--compatible-runtimes`). The "nodejs20.x" runtime was released by
AWS on 2023-11-15. ({issues}4033[#4033])
+
Note that this Node.js APM agent supports Node.js 20.x, so the new AWS Lambda
runtime was supported when it was released. However, the metadata stating
compatible runtimes (which is advisory) was not updated until now.
[float]
===== Chores
[[release-notes-4.5.4]]
==== 4.5.4 - 2024/05/13
[float]
===== Bug fixes
- Change how the "cookie" HTTP request header is represented in APM transaction
* Change how the "cookie" HTTP request header is represented in APM transaction
data to avoid a rare, but possible, intake bug where the transaction could be
rejected due to a mapping conflict.
+
Expand Down

0 comments on commit b8f46bd

Please sign in to comment.