Skip to content

Commit 6beb65d

Browse files
Release 2025-09-17 (#2140)
1 parent f37bba0 commit 6beb65d

File tree

6 files changed

+16
-30
lines changed

6 files changed

+16
-30
lines changed

.autover/changes/6298bf78-28f9-45b6-a978-12313b7ea849.json

Lines changed: 0 additions & 25 deletions
This file was deleted.

CHANGELOG.md

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,12 @@
1+
## Release 2025-09-17
2+
3+
### Amazon.Lambda.RuntimeSupport (1.13.4)
4+
* Add missing TraceId property on the ILambdaContext
5+
### Amazon.Lambda.Core (2.7.1)
6+
* Add missing TraceId property on the ILambdaContext
7+
### Amazon.Lambda.TestUtilities (3.0.1)
8+
* Add missing TraceId property on the ILambdaContext
9+
110
## Release 2025-09-16
211

312
### Amazon.Lambda.RuntimeSupport (1.13.3)

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

Lines changed: 1 addition & 1 deletion
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.7.0</Version>
9+
<Version>2.7.1</Version>
1010
<AssemblyName>Amazon.Lambda.Core</AssemblyName>
1111
<PackageId>Amazon.Lambda.Core</PackageId>
1212
<PackageTags>AWS;Amazon;Lambda</PackageTags>

Libraries/src/Amazon.Lambda.Core/ILambdaContext.cs

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -85,14 +85,16 @@ public interface ILambdaContext
8585
/// </summary>
8686
TimeSpan RemainingTime { get; }
8787

88+
#if NET8_0_OR_GREATER
8889
/// <summary>
8990
/// Gets the tenant id for the Lambda function.
9091
/// </summary>
91-
string TenantId { get; }
92+
string TenantId { get { return string.Empty; } }
9293

9394
/// <summary>
9495
/// The trace id generated by Lambda for distributed tracing across AWS services.
9596
/// </summary>
96-
string TraceId { get; }
97+
string TraceId { get { return string.Empty; } }
98+
#endif
9799
}
98100
}

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

Lines changed: 1 addition & 1 deletion
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;net10.0</TargetFrameworks>
7-
<Version>1.13.3</Version>
7+
<Version>1.13.4</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/src/Amazon.Lambda.TestUtilities/Amazon.Lambda.TestUtilities.csproj

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
<Description>Amazon.Lambda.TestUtilties includes stub implementations of interfaces defined in Amazon.Lambda.Core and helper methods.</Description>
77
<TargetFrameworks>net6.0;net8.0</TargetFrameworks>
88
<AssemblyTitle>Amazon.Lambda.TestUtilities</AssemblyTitle>
9-
<Version>3.0.0</Version>
9+
<Version>3.0.1</Version>
1010
<AssemblyName>Amazon.Lambda.TestUtilities</AssemblyName>
1111
<PackageId>Amazon.Lambda.TestUtilities</PackageId>
1212
<PackageTags>AWS;Amazon;Lambda</PackageTags>

0 commit comments

Comments
 (0)