Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
11 changes: 0 additions & 11 deletions .autover/changes/9cf844c3-1a90-46ec-9430-93724dcb4512.json

This file was deleted.

11 changes: 0 additions & 11 deletions .autover/changes/a119819e-ba57-424d-a0be-d941eea599f9.json

This file was deleted.

11 changes: 0 additions & 11 deletions .autover/changes/function-url-annotations-support.json

This file was deleted.

9 changes: 9 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,12 @@
## Release 2026-04-14

### Amazon.Lambda.TestTool.BlazorTester (0.17.1)
* Minor fixes to improve the testability of the package
### Amazon.Lambda.RuntimeSupport (1.14.3)
* Minor fixes to improve the testability of the package
### Amazon.Lambda.Annotations (1.13.0)
* Added [FunctionUrl] attribute for configuring Lambda functions with Function URL endpoints, including optional CORS support

## Release 2026-04-13 #2

### Amazon.Lambda.Annotations (1.12.0)
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@
<CopyLocalLockFileAssemblies>true</CopyLocalLockFileAssemblies>
<IncludeBuildOutput>false</IncludeBuildOutput>

<Version>1.12.0</Version>
<Version>1.13.0</Version>
<TreatWarningsAsErrors>true</TreatWarningsAsErrors>
</PropertyGroup>

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@
<AssemblyOriginatorKeyFile>..\..\..\buildtools\public.snk</AssemblyOriginatorKeyFile>
<SignAssembly>true</SignAssembly>

<Version>1.12.0</Version>
<Version>1.13.0</Version>
<TreatWarningsAsErrors>true</TreatWarningsAsErrors>
</PropertyGroup>

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@

<PropertyGroup>
<TargetFrameworks>netstandard2.0;net6.0;net8.0;net9.0;net10.0;net11.0</TargetFrameworks>
<Version>1.14.2</Version>
<Version>1.14.3</Version>
<Description>Provides a bootstrap and Lambda Runtime API Client to help you to develop custom .NET Core Lambda Runtimes.</Description>
<AssemblyTitle>Amazon.Lambda.RuntimeSupport</AssemblyTitle>
<PackageId>Amazon.Lambda.RuntimeSupport</PackageId>
Expand Down
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"AWSTemplateFormatVersion": "2010-09-09",
"Transform": "AWS::Serverless-2016-10-31",
"Description": "This template is partially managed by Amazon.Lambda.Annotations (v1.12.0.0).",
"Description": "This template is partially managed by Amazon.Lambda.Annotations (v1.13.0.0).",
"Resources": {
"AnnotationsHttpApi": {
"Type": "AWS::Serverless::HttpApi",
Expand Down
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"AWSTemplateFormatVersion": "2010-09-09",
"Transform": "AWS::Serverless-2016-10-31",
"Description": "An AWS Serverless Application. This template is partially managed by Amazon.Lambda.Annotations (v1.12.0.0).",
"Description": "An AWS Serverless Application. This template is partially managed by Amazon.Lambda.Annotations (v1.13.0.0).",
"Parameters": {
"ArchitectureTypeParameter": {
"Type": "String",
Expand Down
2 changes: 1 addition & 1 deletion Libraries/test/TestServerlessApp.ALB/serverless.template
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"AWSTemplateFormatVersion": "2010-09-09",
"Transform": "AWS::Serverless-2016-10-31",
"Description": "ALB Integration Test Stack - VPC and ALB infrastructure for testing Lambda ALB annotations This template is partially managed by Amazon.Lambda.Annotations (v1.12.0.0).",
"Description": "ALB Integration Test Stack - VPC and ALB infrastructure for testing Lambda ALB annotations This template is partially managed by Amazon.Lambda.Annotations (v1.13.0.0).",
"Resources": {
"ALBTestVPC": {
"Type": "AWS::EC2::VPC",
Expand Down
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"AWSTemplateFormatVersion": "2010-09-09",
"Transform": "AWS::Serverless-2016-10-31",
"Description": "This template is partially managed by Amazon.Lambda.Annotations (v1.12.0.0).",
"Description": "This template is partially managed by Amazon.Lambda.Annotations (v1.13.0.0).",
"Resources": {
"TestServerlessAppNET8FunctionsToUpperGenerated": {
"Type": "AWS::Serverless::Function",
Expand Down
20 changes: 10 additions & 10 deletions Libraries/test/TestServerlessApp/serverless.template
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"AWSTemplateFormatVersion": "2010-09-09",
"Transform": "AWS::Serverless-2016-10-31",
"Description": "This template is partially managed by Amazon.Lambda.Annotations (v1.12.0.0).",
"Description": "This template is partially managed by Amazon.Lambda.Annotations (v1.13.0.0).",
"Resources": {
"AnnotationsHttpApi": {
"Type": "AWS::Serverless::HttpApi",
Expand Down Expand Up @@ -1045,9 +1045,6 @@
"TestS3Bucket": {
"Type": "S3",
"Properties": {
"Bucket": {
"Ref": "TestS3Bucket"
},
"Events": [
"s3:ObjectCreated:*"
],
Expand All @@ -1060,6 +1057,9 @@
}
]
}
},
"Bucket": {
"Ref": "TestS3Bucket"
}
}
}
Expand Down Expand Up @@ -1329,12 +1329,6 @@
"TestQueueEvent": {
"Type": "SQS",
"Properties": {
"Queue": {
"Fn::GetAtt": [
"TestQueue",
"Arn"
]
},
"BatchSize": 50,
"FilterCriteria": {
"Filters": [
Expand All @@ -1349,6 +1343,12 @@
"MaximumBatchingWindowInSeconds": 5,
"ScalingConfig": {
"MaximumConcurrency": 5
},
"Queue": {
"Fn::GetAtt": [
"TestQueue",
"Arn"
]
}
}
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
<OutputType>Exe</OutputType>
<Description>A tool to help debug and test your .NET Core AWS Lambda functions locally.</Description>
<LangVersion>Latest</LangVersion>
<Version>0.17.0</Version>
<Version>0.17.1</Version>
<Product>AWS .NET Lambda Test Tool</Product>
<Copyright>Apache 2</Copyright>
<PackageTags>AWS;Amazon;Lambda</PackageTags>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
<PropertyGroup>
<OutputType>Exe</OutputType>
<Description>A tool to help debug and test your .NET 10.0 AWS Lambda functions locally.</Description>
<Version>0.17.0</Version>
<Version>0.17.1</Version>
<Product>AWS .NET Lambda Test Tool</Product>
<Copyright>Apache 2</Copyright>
<PackageTags>AWS;Amazon;Lambda</PackageTags>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
<PropertyGroup>
<OutputType>Exe</OutputType>
<Description>A tool to help debug and test your .NET 8.0 AWS Lambda functions locally.</Description>
<Version>0.17.0</Version>
<Version>0.17.1</Version>
<Product>AWS .NET Lambda Test Tool</Product>
<Copyright>Apache 2</Copyright>
<PackageTags>AWS;Amazon;Lambda</PackageTags>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
<PropertyGroup>
<OutputType>Exe</OutputType>
<Description>A tool to help debug and test your .NET 9.0 AWS Lambda functions locally.</Description>
<Version>0.17.0</Version>
<Version>0.17.1</Version>
<Product>AWS .NET Lambda Test Tool</Product>
<Copyright>Apache 2</Copyright>
<PackageTags>AWS;Amazon;Lambda</PackageTags>
Expand Down
Loading