From c67eb1d5bf02f6454154eb054a205c50994c47f3 Mon Sep 17 00:00:00 2001 From: Jonas Ha Date: Thu, 4 Dec 2025 16:45:23 -0500 Subject: [PATCH 1/5] docs(license): update license reference in IFeatureProvider's source comment - Updated the URL to reflect the specific version (2.51.0) of the source file. - Corrected the copyright holder to reference Microsoft Corporation. --- src/AwsLambda.Host.Abstractions/Features/IFeatureProvider.cs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/AwsLambda.Host.Abstractions/Features/IFeatureProvider.cs b/src/AwsLambda.Host.Abstractions/Features/IFeatureProvider.cs index be7a5e80..940de008 100644 --- a/src/AwsLambda.Host.Abstractions/Features/IFeatureProvider.cs +++ b/src/AwsLambda.Host.Abstractions/Features/IFeatureProvider.cs @@ -1,7 +1,7 @@ // Portions of this file are derived from azure-functions-dotnet-worker // Source: -// https://github.com/Azure/azure-functions-dotnet-worker/blob/main/src/DotNetWorker.Core/Context/Features/IInvocationFeatureProvider.cs -// Copyright (c) .NET Foundation +// https://github.com/Azure/azure-functions-dotnet-worker/blob/2.51.0/src/DotNetWorker.Core/Context/Features/IInvocationFeatureProvider.cs +// Copyright (c) Microsoft Corporation. // Licensed under the MIT License // See THIRD-PARTY-LICENSES.txt file in the project root or visit // https://github.com/Azure/azure-functions-dotnet-worker/blob/2.51.0/LICENSE From 00ec0d3bed7a419306039b083ee3e6ba6107d8b9 Mon Sep 17 00:00:00 2001 From: Jonas Ha Date: Thu, 4 Dec 2025 16:46:08 -0500 Subject: [PATCH 2/5] docs(license): update reference URL in IFeatureCollection source comment - Updated the URL to point to the specific version (2.51.0) of the source file. --- src/AwsLambda.Host.Abstractions/Features/IFeatureCollection.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/AwsLambda.Host.Abstractions/Features/IFeatureCollection.cs b/src/AwsLambda.Host.Abstractions/Features/IFeatureCollection.cs index 6669fcec..b48a7e81 100644 --- a/src/AwsLambda.Host.Abstractions/Features/IFeatureCollection.cs +++ b/src/AwsLambda.Host.Abstractions/Features/IFeatureCollection.cs @@ -1,6 +1,6 @@ // Portions of this file are derived from azure-functions-dotnet-worker // Source: -// https://github.com/Azure/azure-functions-dotnet-worker/blob/main/src/DotNetWorker.Core/Context/Features/IInvocationFeatures.cs +// https://github.com/Azure/azure-functions-dotnet-worker/blob/2.51.0/src/DotNetWorker.Core/Context/Features/IInvocationFeatures.cs // Copyright (c) Microsoft Corporation. // Licensed under the MIT License // See THIRD-PARTY-LICENSES.txt file in the project root or visit From 35dc590b34810417149fdf2f1c8662c877854379 Mon Sep 17 00:00:00 2001 From: Jonas Ha Date: Thu, 4 Dec 2025 16:47:13 -0500 Subject: [PATCH 3/5] docs(license): update copyright holder in LambdaApplicationBuilder - Updated the copyright holder to include ".NET Foundation and Contributors". --- src/AwsLambda.Host/Builder/LambdaApplicationBuilder.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/AwsLambda.Host/Builder/LambdaApplicationBuilder.cs b/src/AwsLambda.Host/Builder/LambdaApplicationBuilder.cs index b7012114..46980047 100644 --- a/src/AwsLambda.Host/Builder/LambdaApplicationBuilder.cs +++ b/src/AwsLambda.Host/Builder/LambdaApplicationBuilder.cs @@ -1,7 +1,7 @@ // Portions of this file are derived from aspnetcore // Source: // https://github.com/dotnet/aspnetcore/blob/v10.0.0/src/DefaultBuilder/src/WebApplicationBuilder.cs -// Copyright (c) .NET Foundation +// Copyright (c) .NET Foundation and Contributors // Licensed under the MIT License // See THIRD-PARTY-LICENSES.txt file in the project root or visit // https://github.com/dotnet/aspnetcore/blob/v10.0.0/LICENSE.txt From 9efa296af56e1244f10ed01087a77595687e8028 Mon Sep 17 00:00:00 2001 From: Jonas Ha Date: Thu, 4 Dec 2025 16:47:42 -0500 Subject: [PATCH 4/5] docs(license): update copyright holder in LambdaHostContextAccessor - Added "and Contributors" to the copyright holder for alignment with upstream source. --- src/AwsLambda.Host/Core/Context/LambdaHostContextAccessor.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/AwsLambda.Host/Core/Context/LambdaHostContextAccessor.cs b/src/AwsLambda.Host/Core/Context/LambdaHostContextAccessor.cs index 0aa97f12..63745206 100644 --- a/src/AwsLambda.Host/Core/Context/LambdaHostContextAccessor.cs +++ b/src/AwsLambda.Host/Core/Context/LambdaHostContextAccessor.cs @@ -1,7 +1,7 @@ // Portions of this file are derived from aspnetcore // Source: // https://github.com/dotnet/aspnetcore/blob/v10.0.0/src/Http/Http/src/HttpContextAccessor.cs -// Copyright (c) .NET Foundation +// Copyright (c) .NET Foundation and Contributors // Licensed under the MIT License // See THIRD-PARTY-LICENSES.txt file in the project root or visit // https://github.com/dotnet/aspnetcore/blob/v10.0.0/LICENSE.txt From 3a8d72c2afddc1a0bbb47106222cf8978e0f01bf Mon Sep 17 00:00:00 2001 From: Jonas Ha Date: Thu, 4 Dec 2025 16:48:21 -0500 Subject: [PATCH 5/5] docs(license): update copyright holder in LambdaApplicationOptions - Added "and Contributors" to the copyright holder for consistency with upstream source. --- src/AwsLambda.Host/Core/Options/LambdaApplicationOptions.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/AwsLambda.Host/Core/Options/LambdaApplicationOptions.cs b/src/AwsLambda.Host/Core/Options/LambdaApplicationOptions.cs index 640eba0e..9b08b475 100644 --- a/src/AwsLambda.Host/Core/Options/LambdaApplicationOptions.cs +++ b/src/AwsLambda.Host/Core/Options/LambdaApplicationOptions.cs @@ -1,7 +1,7 @@ // Portions of this file are derived from dotnet // Source: // https://github.com/dotnet/dotnet/blob/v10.0.100/src/runtime/src/libraries/Microsoft.Extensions.Hosting/src/HostApplicationBuilderSettings.cs -// Copyright (c) .NET Foundation +// Copyright (c) .NET Foundation and Contributors // Licensed under the MIT License // See THIRD-PARTY-LICENSES.txt file in the project root or visit // https://github.com/dotnet/dotnet/blob/v10.0.100/LICENSE.TXT