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
25 changes: 0 additions & 25 deletions .autover/changes/6298bf78-28f9-45b6-a978-12313b7ea849.json

This file was deleted.

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

### Amazon.Lambda.RuntimeSupport (1.13.4)
* Add missing TraceId property on the ILambdaContext
### Amazon.Lambda.Core (2.7.1)
* Add missing TraceId property on the ILambdaContext
### Amazon.Lambda.TestUtilities (3.0.1)
* Add missing TraceId property on the ILambdaContext

## Release 2025-09-16

### Amazon.Lambda.RuntimeSupport (1.13.3)
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.7.0</Version>
<Version>2.7.1</Version>
<AssemblyName>Amazon.Lambda.Core</AssemblyName>
<PackageId>Amazon.Lambda.Core</PackageId>
<PackageTags>AWS;Amazon;Lambda</PackageTags>
Expand Down
6 changes: 4 additions & 2 deletions Libraries/src/Amazon.Lambda.Core/ILambdaContext.cs
Original file line number Diff line number Diff line change
Expand Up @@ -85,14 +85,16 @@ public interface ILambdaContext
/// </summary>
TimeSpan RemainingTime { get; }

#if NET8_0_OR_GREATER
/// <summary>
/// Gets the tenant id for the Lambda function.
/// </summary>
string TenantId { get; }
string TenantId { get { return string.Empty; } }

/// <summary>
/// The trace id generated by Lambda for distributed tracing across AWS services.
/// </summary>
string TraceId { get; }
string TraceId { get { return string.Empty; } }
#endif
}
}
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;net10.0</TargetFrameworks>
<Version>1.13.3</Version>
<Version>1.13.4</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
Expand Up @@ -6,7 +6,7 @@
<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>3.0.0</Version>
<Version>3.0.1</Version>
<AssemblyName>Amazon.Lambda.TestUtilities</AssemblyName>
<PackageId>Amazon.Lambda.TestUtilities</PackageId>
<PackageTags>AWS;Amazon;Lambda</PackageTags>
Expand Down
Loading