Add dotnet 10 lambda runtime support#138
Open
blair55 wants to merge 4 commits into
Open
Conversation
Agent-Logs-Url: https://github.com/blair55/sst-v2/sessions/91af2de5-171b-4316-acee-633f0b80d24a Co-authored-by: blair55 <702272+blair55@users.noreply.github.com>
…01 SDK Agent-Logs-Url: https://github.com/blair55/sst-v2/sessions/f49344cd-31ce-4e4f-827f-42df30a7f3f9 Co-authored-by: blair55 <702272+blair55@users.noreply.github.com>
feat: add dotnet10 runtime support
✅ Deploy Preview for sst-docs canceled.
|
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.
as per this PR from 2024 anomalyco/sst#3734 🙏
Summary
Adds support for the
dotnet10Lambda runtime, including local dev workflows.Changes
packages/sst/package.json: Updatedaws-cdk-libfrom2.224.0to2.233.0— the minimum version that includesCDKRuntime.DOTNET_10.packages/sst/src/constructs/Function.ts: Addeddotnet10: CDKRuntime.DOTNET_10to thesupportedRuntimesmap, making"dotnet10"a validRuntimetype.packages/sst/src/runtime/handlers/dotnet.ts: Addeddotnet10entries to bothFRAMEWORK_MAP("net10.0") andBOOTSTRAP_MAP("dotnet10-bootstrap"), enabling local dev invocation viadotnet exec.packages/sst/support/dotnet10-bootstrap/: New bootstrap project targetingnet10.0, with pre-builtrelease/binaries (built with dotnet 10 SDK).packages/sst/build.mjs: Added"dotnet10-bootstrap"to the list of support packages copied during build.Usage