Skip to content

Release 2025-06-03 #2081

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 2 commits into from
Jun 3, 2025
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
48 changes: 0 additions & 48 deletions .autover/changes/16cc3c6a-8fa0-410b-ba57-74221abb086a.json

This file was deleted.

17 changes: 17 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,20 @@
## Release 2025-06-03

### Amazon.Lambda.RuntimeSupport (1.13.1)
* Add support for parameterized logging method with exception to global logger LambdaLogger in Amazon.Lambda.Core
### Amazon.Lambda.Core (2.6.0)
* Added log level version of the static logging functions on Amazon.Lambda.Core.LambdaLogger
### Amazon.Lambda.AspNetCoreServer (9.1.2)
* Update Amazon.Lambda.Logging.AspNetCore dependency
### Amazon.Lambda.AspNetCoreServer.Hosting (1.8.2)
* Update Amazon.Lambda.Logging.AspNetCore dependency
### Amazon.Lambda.Logging.AspNetCore (4.0.0)
* Add support Lambda log levels
* Change build target from .NET Standard 2.0 to .NET 6 and NET 8 to match Amazon.Lambda.AspNetCoreServer
### Amazon.Lambda.TestUtilities (3.0.0)
* Update Amazon.Lambda.TestUtitlies to have implementation of the newer logging methods
* Change build target from .NET Standard 2.0 to .NET 6 and NET 8 to match Amazon.Lambda.AspNetCoreServer

## Release 2025-05-15

### Amazon.Lambda.TestTool (0.10.3)
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.1</Version>
<Version>1.8.2</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.1</Version>
<Version>9.1.2</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.5.1</Version>
<Version>2.6.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>3.1.1</Version>
<Version>4.0.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 @@ -4,7 +4,7 @@

<PropertyGroup>
<TargetFrameworks>netstandard2.0;net6.0;net8.0;net9.0</TargetFrameworks>
<Version>1.13.0</Version>
<Version>1.13.1</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>
<AssemblyName>Amazon.Lambda.RuntimeSupport</AssemblyName>
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.TestUtilties includes stub implementations of interfaces defined in Amazon.Lambda.Core and helper methods.</Description>
<TargetFrameworks>net6.0;net8.0</TargetFrameworks>
<AssemblyTitle>Amazon.Lambda.TestUtilities</AssemblyTitle>
<Version>2.0.0</Version>
<Version>3.0.0</Version>
<AssemblyName>Amazon.Lambda.TestUtilities</AssemblyName>
<PackageId>Amazon.Lambda.TestUtilities</PackageId>
<PackageTags>AWS;Amazon;Lambda</PackageTags>
Expand Down
Loading