Skip to content

Commit d2b3988

Browse files
committed
Merge branch 'dev' into normj/aspnercore-hosting-extensions
2 parents 4a70b46 + c8ee7bd commit d2b3988

129 files changed

Lines changed: 5911 additions & 619 deletions

File tree

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

.autover/autover.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -127,9 +127,9 @@
127127
"Name": "Amazon.Lambda.TestTool.BlazorTester",
128128
"Paths": [
129129
"Tools/LambdaTestTool/src/Amazon.Lambda.TestTool.BlazorTester/Amazon.Lambda.TestTool.BlazorTester.csproj",
130-
"Tools/LambdaTestTool/src/Amazon.Lambda.TestTool.BlazorTester/Amazon.Lambda.TestTool.BlazorTester60-pack.csproj",
131130
"Tools/LambdaTestTool/src/Amazon.Lambda.TestTool.BlazorTester/Amazon.Lambda.TestTool.BlazorTester80-pack.csproj",
132-
"Tools/LambdaTestTool/src/Amazon.Lambda.TestTool.BlazorTester/Amazon.Lambda.TestTool.BlazorTester90-pack.csproj"
131+
"Tools/LambdaTestTool/src/Amazon.Lambda.TestTool.BlazorTester/Amazon.Lambda.TestTool.BlazorTester90-pack.csproj",
132+
"Tools/LambdaTestTool/src/Amazon.Lambda.TestTool.BlazorTester/Amazon.Lambda.TestTool.BlazorTester10_0-pack.csproj"
133133
]
134134
},
135135
{

CHANGELOG.md

Lines changed: 30 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,33 @@
1+
## Release 2026-02-18
2+
3+
### Amazon.Lambda.TestTool (0.13.0)
4+
* Add support for configuring HTTPS endpoints for the Lambda UI emulator and API Gateway emulator
5+
* Add .NET 10 build target
6+
* Update to latest versions of the AWS SDK for .NET
7+
8+
### AWSLambdaPSCore PowerShell Module (5.0.0)
9+
* Updated to target the .NET 10 Lambda runtime
10+
11+
## Release 2026-02-10
12+
13+
### Amazon.Lambda.Annotations (1.9.0)
14+
* Added FromCustomAuthorizerAttribute
15+
16+
## Release 2026-02-04
17+
18+
### Amazon.Lambda.Core (2.8.1)
19+
* Add the InternalsVisibleToAttribute to the renamed version of Amazon.Lambda.RuntimeSupport embedded with the Lambda Test Tool
20+
### Amazon.Lambda.RuntimeSupport (1.14.2)
21+
* Add defensive checks for scenarios where a Lambda function uses an older Amazon.Lambda.Core together with the renamed Amazon.Lambda.RuntimeSupport.TestTool assembly embedded in the Lambda Test Tool
22+
### Amazon.Lambda.TestTool (0.12.0)
23+
* Rename embedded Amazon.Lambda.RuntimeSupport assembly to Amazon.Lambda.RuntimeSupport.TestTool to avoid conflicts with Lambda function that might include Amazon.Lambda.RuntimeSupport
24+
25+
## Release 2026-01-30
26+
27+
### Amazon.Lambda.TestTool.BlazorTester (0.17.0)
28+
* Add support for .NET 10
29+
* Removed support for .NET 6
30+
131
## Release 2026-01-16
232

333
### Amazon.Lambda.S3Events (3.1.2)

LambdaRuntimeDockerfiles/Images/net10/amd64/Dockerfile

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,14 +1,14 @@
11
# Based on Docker image from: https://github.com/dotnet/dotnet-docker/
22

3-
ARG ASPNET_VERSION=10.0.2
4-
ARG ASPNET_SHA512=41ecfe6a6ef9e587a58f1336fe667e90585f0bca2227e25d0de9340c634967b180ef8c7c93a61fe390949a9fddc1e656ba717bc132f6947e6e450fcfc4966020
3+
ARG ASPNET_VERSION=10.0.3
4+
ARG ASPNET_SHA512=a4bcf75a734c72ab87f356eeabfdbcc01212d1fa4629bf2ccdf8fa1cd9e9236daf0fb63499afa5923de56593aae57038283ffb518c6753a20b34552529a11c37
55

66
ARG LAMBDA_RUNTIME_NAME=dotnet10
77
ARG AMAZON_LINUX=public.ecr.aws/lambda/provided:al2023
88

99
FROM $AMAZON_LINUX AS base
1010

11-
RUN dnf install libicu-67.1-7.amzn2023.0.3.x86_64 --assumeyes
11+
RUN dnf install libicu-67.1-7.amzn2023.0.4.x86_64 --assumeyes
1212

1313
FROM base AS builder-net10
1414
ARG ASPNET_VERSION

LambdaRuntimeDockerfiles/Images/net10/arm64/Dockerfile

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,14 +1,14 @@
11
# Based on Docker image from: https://github.com/dotnet/dotnet-docker/
22

3-
ARG ASPNET_VERSION=10.0.2
4-
ARG ASPNET_SHA512=52ec81492d6d4253c00d7f51f12d5fddb10252ce664db020c4a90e4433e7eb7862529737400d5862f6fba41cb2bcf223f802e01d194b82908ce84530b03800b1
3+
ARG ASPNET_VERSION=10.0.3
4+
ARG ASPNET_SHA512=6c174c466dbc495bac6a6ba9dae99cdd5185999dc91eca9db540ca424a294a43d47994c4cb5b59bc125451ce4d5670683df39e2f9af2f0f0b4547a810f95ffd3
55

66
ARG LAMBDA_RUNTIME_NAME=dotnet10
77
ARG AMAZON_LINUX=public.ecr.aws/lambda/provided:al2023
88

99
FROM $AMAZON_LINUX AS base
1010

11-
RUN dnf install libicu-67.1-7.amzn2023.0.3.aarch64 --assumeyes
11+
RUN dnf install libicu-67.1-7.amzn2023.0.4.aarch64 --assumeyes
1212

1313
FROM base AS builder-net10
1414
ARG ASPNET_VERSION

LambdaRuntimeDockerfiles/Images/net8/amd64/Dockerfile

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,14 +1,14 @@
11
# Based on Docker image from: https://github.com/dotnet/dotnet-docker/
22

3-
ARG ASPNET_VERSION=8.0.23
4-
ARG ASPNET_SHA512=e785fe2a7b06a56a0070862d4fbf41df0e1c04b89a76f4cca2d75de320642274ccc49cdd79dd6d781b504e5631e2f25b0b3566474b9f4b347a929d8b176483de
3+
ARG ASPNET_VERSION=8.0.24
4+
ARG ASPNET_SHA512=9a5cb25990649fc1c75675e94e2e4699dfc5979a99a2eec36babb240ca5278f1ac2552ecfec16834449ac3d5482a0fd303ac4ba53ca4749fabfb2b0194ba4635
55

66
ARG LAMBDA_RUNTIME_NAME=dotnet8
77
ARG AMAZON_LINUX=public.ecr.aws/lambda/provided:al2023
88

99
FROM $AMAZON_LINUX AS base
1010

11-
RUN dnf install libicu-67.1-7.amzn2023.0.3.x86_64 --assumeyes
11+
RUN dnf install libicu-67.1-7.amzn2023.0.4.x86_64 --assumeyes
1212

1313
FROM base AS builder-net8
1414
ARG ASPNET_VERSION

LambdaRuntimeDockerfiles/Images/net8/arm64/Dockerfile

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,14 +1,14 @@
11
# Based on Docker image from: https://github.com/dotnet/dotnet-docker/
22

3-
ARG ASPNET_VERSION=8.0.23
4-
ARG ASPNET_SHA512=c237c886b328a8b79fa6e341590ec6739325450d3f10be9c26bf908e4e1082b03bdf389ab794318187bb4694f261f87e3d4b466017b21980ffe7b4d70d028bb9
3+
ARG ASPNET_VERSION=8.0.24
4+
ARG ASPNET_SHA512=e269491953c552ecfd31e620052eec84e60b28da39ce06c2d64c322da9a164a6c896a1da9bf965df78e6dfdec6ab9e42ad5c36b2c641d6ea05a5243930a6391c
55

66
ARG LAMBDA_RUNTIME_NAME=dotnet8
77
ARG AMAZON_LINUX=public.ecr.aws/lambda/provided:al2023
88

99
FROM $AMAZON_LINUX AS base
1010

11-
RUN dnf install libicu-67.1-7.amzn2023.0.3.aarch64 --assumeyes
11+
RUN dnf install libicu-67.1-7.amzn2023.0.4.aarch64 --assumeyes
1212

1313
FROM base AS builder-net8
1414
ARG ASPNET_VERSION

LambdaRuntimeDockerfiles/Images/net9/amd64/Dockerfile

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,14 +1,14 @@
11
# Based on Docker image from: https://github.com/dotnet/dotnet-docker/
22

3-
ARG ASPNET_VERSION=9.0.12
4-
ARG ASPNET_SHA512=489b8077f2661eaebe421140774b0769519c4963a4bb2fe7d5eff72c99b29a81d5ac6684707449a0ff889a074b6ee58fb4d00a346b859fb75d1d5470e8fb9296
3+
ARG ASPNET_VERSION=9.0.13
4+
ARG ASPNET_SHA512=9f4895d2479fa91dc8007e089ad861de989e52455a93cee19de0bd0607cce4ae00c542742527f76d3be55ff1d4790064775095f582e46bde68f8d714b021b624
55

66
ARG LAMBDA_RUNTIME_NAME=dotnet9
77
ARG AMAZON_LINUX=public.ecr.aws/lambda/provided:al2023
88

99
FROM $AMAZON_LINUX AS base
1010

11-
RUN dnf install libicu-67.1-7.amzn2023.0.3.x86_64 --assumeyes
11+
RUN dnf install libicu-67.1-7.amzn2023.0.4.x86_64 --assumeyes
1212

1313
FROM base AS builder-net9
1414
ARG ASPNET_VERSION

LambdaRuntimeDockerfiles/Images/net9/arm64/Dockerfile

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,14 +1,14 @@
11
# Based on Docker image from: https://github.com/dotnet/dotnet-docker/
22

3-
ARG ASPNET_VERSION=9.0.12
4-
ARG ASPNET_SHA512=9459fd465ac014188b440e0dd785427e3538224d37578a4734382e2a7069c0d87014eb07e98309386e195b4487536f8d8ccb126f7178f2e2521ac934bf63de6d
3+
ARG ASPNET_VERSION=9.0.13
4+
ARG ASPNET_SHA512=6a80ccbadb5dec1df3e584cf99b454f8bf55ac0da432f4facfd01a5e023e5c56e4e3c53d83aa98e39242d9d72d05775a7661dee78f77bb9dcb841205cfd7080c
55

66
ARG LAMBDA_RUNTIME_NAME=dotnet9
77
ARG AMAZON_LINUX=public.ecr.aws/lambda/provided:al2023
88

99
FROM $AMAZON_LINUX AS base
1010

11-
RUN dnf install libicu-67.1-7.amzn2023.0.3.aarch64 --assumeyes
11+
RUN dnf install libicu-67.1-7.amzn2023.0.4.aarch64 --assumeyes
1212

1313
FROM base AS builder-net9
1414
ARG ASPNET_VERSION

Libraries/Amazon.Lambda.Annotations.slnf

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,9 +11,12 @@
1111
"src\\Amazon.Lambda.Serialization.SystemTextJson\\Amazon.Lambda.Serialization.SystemTextJson.csproj",
1212
"test\\Amazon.Lambda.Annotations.SourceGenerators.Tests\\Amazon.Lambda.Annotations.SourceGenerators.Tests.csproj",
1313
"test\\TestExecutableServerlessApp\\TestExecutableServerlessApp.csproj",
14+
"test\\IntegrationTests.Helpers\\IntegrationTests.Helpers.csproj",
15+
"test\\TestCustomAuthorizerApp\\TestCustomAuthorizerApp.csproj",
16+
"test\\TestCustomAuthorizerApp.IntegrationTests\\TestCustomAuthorizerApp.IntegrationTests.csproj",
1417
"test\\TestServerlessApp.IntegrationTests\\TestServerlessApp.IntegrationTests.csproj",
1518
"test\\TestServerlessApp.NET8\\TestServerlessApp.NET8.csproj",
1619
"test\\TestServerlessApp\\TestServerlessApp.csproj"
1720
]
1821
}
19-
}
22+
}

0 commit comments

Comments
 (0)