diff --git a/.autover/changes/durable-execution-blueprints.json b/.autover/changes/durable-execution-blueprints.json deleted file mode 100644 index e5c11f05c..000000000 --- a/.autover/changes/durable-execution-blueprints.json +++ /dev/null @@ -1,11 +0,0 @@ -{ - "Projects": [ - { - "Name": "Amazon.Lambda.Templates", - "Type": "Minor", - "ChangelogMessages": [ - "Add lambda.DurableFunction and serverless.DurableFunction blueprints (vs2026) for Lambda durable execution workflows. lambda.DurableFunction uses the class-library static-wrapper model (DurableFunction.WrapAsync) and deploys via dotnet lambda deploy-function; serverless.DurableFunction uses the annotations model ([LambdaFunction] + [DurableExecution]) and deploys via CloudFormation (serverless.template). Both target the managed dotnet10 runtime and ship a sample ProcessOrder workflow plus a local test project driven by Amazon.Lambda.DurableExecution.Testing. Preview." - ] - } - ] -} diff --git a/Blueprints/BlueprintDefinitions/vs2026/Templates.csproj b/Blueprints/BlueprintDefinitions/vs2026/Templates.csproj index 88c84b633..940343c01 100644 --- a/Blueprints/BlueprintDefinitions/vs2026/Templates.csproj +++ b/Blueprints/BlueprintDefinitions/vs2026/Templates.csproj @@ -2,7 +2,7 @@ Template - 8.0.3 + 8.1.0 Amazon.Lambda.Templates AWS Lambda Templates Amazon Web Services diff --git a/CHANGELOG.md b/CHANGELOG.md index 51f46bc64..cdf7eb016 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,8 @@ +## Release 2026-07-02 #2 + +### Amazon.Lambda.Templates (8.1.0) +* Add lambda.DurableFunction and serverless.DurableFunction blueprints (vs2026) for Lambda durable execution workflows. lambda.DurableFunction uses the class-library static-wrapper model (DurableFunction.WrapAsync) and deploys via dotnet lambda deploy-function; serverless.DurableFunction uses the annotations model ([LambdaFunction] + [DurableExecution]) and deploys via CloudFormation (serverless.template). Both target the managed dotnet10 runtime and ship a sample ProcessOrder workflow plus a local test project driven by Amazon.Lambda.DurableExecution.Testing. Preview. + ## Release 2026-07-02 ### Amazon.Lambda.DurableExecution (0.2.0-preview)