Skip to content

Commit 6eca899

Browse files
Merge pull request #2014 from aws/releases/next-release
Release 2025-03-13
2 parents b0d7cce + 2e59f62 commit 6eca899

File tree

10 files changed

+17
-37
lines changed

10 files changed

+17
-37
lines changed

.autover/changes/792302e7-fe01-4ebe-9357-577bc4097f41.json

-11
This file was deleted.

.autover/changes/d0822afd-daf4-437a-9437-2a9492c135b7.json

-18
This file was deleted.

CHANGELOG.md

+9
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,12 @@
1+
## Release 2025-03-13
2+
3+
### Amazon.Lambda.Annotations (1.7.0)
4+
* Add ConfigureHostBuilder function to `Startup` class for allowing the Lambda function to configure an `IHostApplicationBuilder`.
5+
### Amazon.Lambda.RuntimeSupport (1.13.0)
6+
* Add support for parameterized logging method to global logger LambdaLogger in Amazon.Lambda.Core
7+
### Amazon.Lambda.Core (2.5.1)
8+
* Add support for parameterized logging method to global logger LambdaLogger. Method is marked as preview till new version of Amazon.Lambda.RuntimeSupport is deployed to managed runtime.
9+
110
## Release 2025-03-05
211

312
### Amazon.Lambda.TestTool (0.9.1)

Libraries/src/Amazon.Lambda.Annotations.SourceGenerator/Amazon.Lambda.Annotations.SourceGenerator.csproj

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
<Project Sdk="Microsoft.NET.Sdk">
1+
<Project Sdk="Microsoft.NET.Sdk">
22

33
<PropertyGroup>
44
<TargetFrameworks>netstandard2.0;net6.0;net8.0</TargetFrameworks>
@@ -20,7 +20,7 @@
2020
<CopyLocalLockFileAssemblies>true</CopyLocalLockFileAssemblies>
2121
<IncludeBuildOutput>false</IncludeBuildOutput>
2222

23-
<Version>1.6.3</Version>
23+
<Version>1.7.0</Version>
2424
</PropertyGroup>
2525

2626
<!-- Delay setting the package id till after resolving dependencies to avoid ambigious errors. -->

Libraries/src/Amazon.Lambda.Annotations/Amazon.Lambda.Annotations.csproj

+1-1
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@
1111
<AssemblyOriginatorKeyFile>..\..\..\buildtools\public.snk</AssemblyOriginatorKeyFile>
1212
<SignAssembly>true</SignAssembly>
1313

14-
<Version>1.6.3</Version>
14+
<Version>1.7.0</Version>
1515
</PropertyGroup>
1616

1717
<PropertyGroup Condition="'$(TargetFramework)' == 'net8.0'">

Libraries/src/Amazon.Lambda.Core/Amazon.Lambda.Core.csproj

+1-1
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
<TargetFrameworks>netstandard2.0;net6.0;net8.0</TargetFrameworks>
77
<Description>Amazon Lambda .NET Core support - Core package.</Description>
88
<AssemblyTitle>Amazon.Lambda.Core</AssemblyTitle>
9-
<Version>2.5.0</Version>
9+
<Version>2.5.1</Version>
1010
<AssemblyName>Amazon.Lambda.Core</AssemblyName>
1111
<PackageId>Amazon.Lambda.Core</PackageId>
1212
<PackageTags>AWS;Amazon;Lambda</PackageTags>

Libraries/src/Amazon.Lambda.RuntimeSupport/Amazon.Lambda.RuntimeSupport.csproj

+1-1
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44

55
<PropertyGroup>
66
<TargetFrameworks>netstandard2.0;net6.0;net8.0;net9.0</TargetFrameworks>
7-
<Version>1.12.3</Version>
7+
<Version>1.13.0</Version>
88
<Description>Provides a bootstrap and Lambda Runtime API Client to help you to develop custom .NET Core Lambda Runtimes.</Description>
99
<AssemblyTitle>Amazon.Lambda.RuntimeSupport</AssemblyTitle>
1010
<AssemblyName>Amazon.Lambda.RuntimeSupport</AssemblyName>

Libraries/test/TestExecutableServerlessApp/serverless.template

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"AWSTemplateFormatVersion": "2010-09-09",
33
"Transform": "AWS::Serverless-2016-10-31",
4-
"Description": "An AWS Serverless Application. This template is partially managed by Amazon.Lambda.Annotations (v1.6.3.0).",
4+
"Description": "An AWS Serverless Application. This template is partially managed by Amazon.Lambda.Annotations (v1.7.0.0).",
55
"Parameters": {
66
"ArchitectureTypeParameter": {
77
"Type": "String",

Libraries/test/TestServerlessApp.NET8/serverless.template

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"AWSTemplateFormatVersion": "2010-09-09",
33
"Transform": "AWS::Serverless-2016-10-31",
4-
"Description": "This template is partially managed by Amazon.Lambda.Annotations (v1.6.3.0).",
4+
"Description": "This template is partially managed by Amazon.Lambda.Annotations (v1.7.0.0).",
55
"Resources": {
66
"TestServerlessAppNET8FunctionsToUpperGenerated": {
77
"Type": "AWS::Serverless::Function",

Libraries/test/TestServerlessApp/serverless.template

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"AWSTemplateFormatVersion": "2010-09-09",
33
"Transform": "AWS::Serverless-2016-10-31",
4-
"Description": "An AWS Serverless Application. This template is partially managed by Amazon.Lambda.Annotations (v1.6.3.0).",
4+
"Description": "An AWS Serverless Application. This template is partially managed by Amazon.Lambda.Annotations (v1.7.0.0).",
55
"Parameters": {
66
"ArchitectureTypeParameter": {
77
"Type": "String",

0 commit comments

Comments
 (0)