feat(lambda): add nodejs24.x, python3.14, java25, dotnet10 runtimes#787
Merged
vieiralucas merged 1 commit intomainfrom Apr 26, 2026
Merged
feat(lambda): add nodejs24.x, python3.14, java25, dotnet10 runtimes#787vieiralucas merged 1 commit intomainfrom
vieiralucas merged 1 commit intomainfrom
Conversation
Maps the four newest AWS Lambda managed runtimes (per https://docs.aws.amazon.com/lambda/latest/dg/lambda-runtimes.html) to the corresponding public.ecr.aws/lambda/* images so functions created with these identifiers actually execute. Smithy enums for these runtime values were already present on the Lambda model. - runtime_to_image: 4 new arms + matching unit-test assertions - e2e/lambda_invoke: cover newest version per language family - e2e_nextest_partitions: include the new tests in their family filters - docs/website: 13 -> 23 runtime count, full identifier list in lambda.md and test-lambda-locally landing Closes #772
Codecov Report✅ All modified and coverable lines are covered by tests. 📢 Thoughts on this report? Let us know! |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Summary
nodejs24.x,python3.14,java25,dotnet10) topublic.ecr.aws/lambda/*images soCreateFunction+Invokeactually run themvs/*comparison pages: 13 -> 23Closes #772
Test plan
cargo check -p fakecloud-lambda -p fakecloud-e2ecargo test -p fakecloud-lambda runtime::tests::test_runtime_to_imagecargo test -p fakecloud-e2e --bin e2e_nextest_partitions(8 tests)cargo run -p fakecloud-e2e --bin e2e_nextest_partitions -- checkconfirms all 1144 e2e tests covered exactly once across 10 partitionsSummary by cubic
Adds support for AWS Lambda runtimes
nodejs24.x,python3.14,java25, anddotnet10by mapping them to the correctpublic.ecr.aws/lambda/*images soCreateFunctionandInvokeexecute as expected. Updates docs to reflect 23 supported runtimes and adds e2e coverage for the newest versions.fakecloud-lambdaruntime_to_imagewith unit tests (Smithy enums already existed; no model change).fakecloud-e2efor Node.js 24, Python 3.14, Java 25, and .NET 10; included ine2e_nextest_partitionsfilters.Written for commit 6b99b5b. Summary will update on new commits.