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
2 changes: 1 addition & 1 deletion .autover/autover.json
Original file line number Diff line number Diff line change
Expand Up @@ -144,7 +144,7 @@
"Name": "Amazon.Lambda.TestTool",
"Path": "Tools/LambdaTestTool-v2/src/Amazon.Lambda.TestTool/Amazon.Lambda.TestTool.csproj"
},
{
{
"Name": "Amazon.Lambda.AppSyncEvents",
"Path": "Libraries/src/Amazon.Lambda.AppSyncEvents/Amazon.Lambda.AppSyncEvents.csproj"
}
Expand Down
11 changes: 0 additions & 11 deletions .autover/changes/38c5bace-4ca5-4f83-8094-ae6d912ca20a.json

This file was deleted.

11 changes: 0 additions & 11 deletions .autover/changes/78ee1265-f50d-434a-b25c-fcb8e9e7a26a.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 2025-04-25

### Amazon.Lambda.AspNetCoreServer (9.1.0)
* Add overrideable method GetBeforeSnapshotRequests() and AddAWSLambdaBeforeSnapshotRequest() extension method to support warming up the asp.net/lambda pipelines automatically during BeforeSnapshot callback.
### Amazon.Lambda.AspNetCoreServer.Hosting (1.8.0)
* Add overrideable method GetBeforeSnapshotRequests() and AddAWSLambdaBeforeSnapshotRequest() extension method to support warming up the asp.net/lambda pipelines automatically during BeforeSnapshot callback.
### Amazon.Lambda.AppSyncEvents (1.0.0)
* Added AppSyncResolverEvent to support direct lambda resolver

## Release 2025-04-10 #2

### Amazon.Lambda.TestTool (0.10.1)
Expand Down
Original file line number Diff line number Diff line change
@@ -1,12 +1,12 @@
<Project Sdk="Microsoft.NET.Sdk">
<Project Sdk="Microsoft.NET.Sdk">

<Import Project="..\..\..\buildtools\common.props" />

<PropertyGroup>
<Description>Amazon Lambda .NET support - AWS AppSync package.</Description>
<TargetFrameworks>net8.0</TargetFrameworks>
<AssemblyTitle>Amazon.Lambda.AppSyncEvents</AssemblyTitle>
<Version>0.0.1</Version>
<Version>1.0.0</Version>
<AssemblyName>Amazon.Lambda.AppSyncEvents</AssemblyName>
<PackageId>Amazon.Lambda.AppSyncEvents</PackageId>
<PackageTags>AWS;Amazon;Lambda</PackageTags>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
<TargetFrameworks>net6.0;net8.0</TargetFrameworks>
<ImplicitUsings>enable</ImplicitUsings>
<Nullable>enable</Nullable>
<Version>1.7.4</Version>
<Version>1.8.0</Version>
<PackageReadmeFile>README.md</PackageReadmeFile>
<AssemblyName>Amazon.Lambda.AspNetCoreServer.Hosting</AssemblyName>
<PackageId>Amazon.Lambda.AspNetCoreServer.Hosting</PackageId>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
<Description>Amazon.Lambda.AspNetCoreServer makes it easy to run ASP.NET Core Web API applications as AWS Lambda functions.</Description>
<TargetFrameworks>net6.0;net8.0</TargetFrameworks>
<AssemblyTitle>Amazon.Lambda.AspNetCoreServer</AssemblyTitle>
<Version>9.0.4</Version>
<Version>9.1.0</Version>
<AssemblyName>Amazon.Lambda.AspNetCoreServer</AssemblyName>
<PackageId>Amazon.Lambda.AspNetCoreServer</PackageId>
<PackageTags>AWS;Amazon;Lambda;aspnetcore</PackageTags>
Expand Down
Loading