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/40022108-c9b1-45ba-9b5e-a3b2ae56fc4e.json

This file was deleted.

32 changes: 0 additions & 32 deletions .autover/changes/5e73fa84-6603-4a1e-b957-2e1e926c5aa9.json

This file was deleted.

13 changes: 13 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,16 @@
## Release 2025-07-14 #2

### Amazon.Lambda.TestTool (0.11.1)
* Fix issue causing sample requests to not be applied if a config path is not supplied
### Amazon.Lambda.AspNetCoreServer (9.2.0)
* Update Amazon.Lambda.Logging.AspNetCore dependency
### Amazon.Lambda.AspNetCoreServer.Hosting (1.9.0)
* Update Amazon.Lambda.Logging.AspNetCore dependency
### Amazon.Lambda.Core (2.7.0)
* Added log level with exception version of the static logging functions on Amazon.Lambda.Core.LambdaLogger
### Amazon.Lambda.Logging.AspNetCore (4.1.0)
* Convert logging parameters into JSON properties when Lambda log format is configured as JSON

## Release 2025-06-25

### Amazon.Lambda.TestTool (0.11.0)
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.8.2</Version>
<Version>1.9.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.1.2</Version>
<Version>9.2.0</Version>
<AssemblyName>Amazon.Lambda.AspNetCoreServer</AssemblyName>
<PackageId>Amazon.Lambda.AspNetCoreServer</PackageId>
<PackageTags>AWS;Amazon;Lambda;aspnetcore</PackageTags>
Expand Down
2 changes: 1 addition & 1 deletion Libraries/src/Amazon.Lambda.Core/Amazon.Lambda.Core.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
<TargetFrameworks>netstandard2.0;net6.0;net8.0</TargetFrameworks>
<Description>Amazon Lambda .NET Core support - Core package.</Description>
<AssemblyTitle>Amazon.Lambda.Core</AssemblyTitle>
<Version>2.6.0</Version>
<Version>2.7.0</Version>
<AssemblyName>Amazon.Lambda.Core</AssemblyName>
<PackageId>Amazon.Lambda.Core</PackageId>
<PackageTags>AWS;Amazon;Lambda</PackageTags>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
<Description>Amazon Lambda .NET Core support - Logging ASP.NET Core package.</Description>
<TargetFrameworks>net6.0;net8.0</TargetFrameworks>
<AssemblyTitle>Amazon.Lambda.Logging.AspNetCore</AssemblyTitle>
<Version>4.0.0</Version>
<Version>4.1.0</Version>
<AssemblyName>Amazon.Lambda.Logging.AspNetCore</AssemblyName>
<PackageId>Amazon.Lambda.Logging.AspNetCore</PackageId>
<PackageTags>AWS;Amazon;Lambda;Logging</PackageTags>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@
<PackAsTool>true</PackAsTool>
<PackageId>Amazon.Lambda.TestTool</PackageId>
<ToolCommandName>dotnet-lambda-test-tool</ToolCommandName>
<Version>0.11.0</Version>
<Version>0.11.1</Version>
<NoWarn>NU5100</NoWarn>
<RollForward>Major</RollForward>
<PackageReadmeFile>README.md</PackageReadmeFile>
Expand Down