Skip to content
Merged
Show file tree
Hide file tree
Changes from 2 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.

7 changes: 7 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,10 @@
## Release 2025-04-25

### Amazon.Lambda.AspNetCoreServer.Hosting (1.7.5)
Comment thread
philasmar marked this conversation as resolved.
Outdated
* 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.7.5</Version>
<PackageReadmeFile>README.md</PackageReadmeFile>
<AssemblyName>Amazon.Lambda.AspNetCoreServer.Hosting</AssemblyName>
<PackageId>Amazon.Lambda.AspNetCoreServer.Hosting</PackageId>
Expand Down
Loading