From 91230aa4f91271079dc006f872ac0e9b3c6eaf3b Mon Sep 17 00:00:00 2001 From: Lilian Kasem Date: Mon, 9 Dec 2024 12:30:54 -0800 Subject: [PATCH] [v1.x] Update release notes & core version for release (#2890) --- release_notes.md | 18 ++++++++---------- sdk/release_notes.md | 2 +- .../release_notes.md | 5 +++-- src/DotNetWorker.Core/DotNetWorker.Core.csproj | 2 +- src/DotNetWorker.Grpc/DotNetWorker.Grpc.csproj | 2 +- src/DotNetWorker/DotNetWorker.csproj | 2 +- .../FunctionExecutor/DependentAssemblyTest.cs | 2 +- 7 files changed, 16 insertions(+), 17 deletions(-) diff --git a/release_notes.md b/release_notes.md index 0260c95a..a389dff5 100644 --- a/release_notes.md +++ b/release_notes.md @@ -4,18 +4,16 @@ - My change description (#PR/#issue) --> -### Microsoft.Azure.Functions.Worker (metapackage) 1.23.0 +### Microsoft.Azure.Functions.Worker (metapackage) 1.24.0 -- Updating `Microsoft.Azure.Functions.Worker.Core` to 1.19.0 -- Updating `Microsoft.Azure.Functions.Worker.Grpc` to 1.17.0 -- Updating `Azure.Core` to 1.41.0 +- Updating `Microsoft.Azure.Functions.Worker.Core` to 1.20.0 +- Updating `Microsoft.Azure.Functions.Worker.Grpc` to 1.18.0 -### Microsoft.Azure.Functions.Worker.Core 1.19.0 +### Microsoft.Azure.Functions.Worker.Core 1.20.0 -- Updating `Azure.Core` to 1.41.0 -- Updated service registrations for bootstrapping methods to ensure idempotency. +- Updated service registrations for bootstrapping methods to ensure idempotency. (#2820) -### Microsoft.Azure.Functions.Worker.Grpc 1.17.0 +### Microsoft.Azure.Functions.Worker.Grpc 1.18.0 -- Updating `Azure.Core` to 1.41.0 -- Updated service registrations for bootstrapping methods to ensure idempotency. \ No newline at end of file +- Changed exception handling in function invocation path to ensure fatal exceptions bubble up. (#2789) +- Updated service registrations for bootstrapping methods to ensure idempotency. (#2820) \ No newline at end of file diff --git a/sdk/release_notes.md b/sdk/release_notes.md index 67afe6f1..216f4dfc 100644 --- a/sdk/release_notes.md +++ b/sdk/release_notes.md @@ -6,7 +6,7 @@ ### Microsoft.Azure.Functions.Worker.Sdk -- Changed exception handling in function invocation path to ensure fatal exceptions bubble up. +- ### Microsoft.Azure.Functions.Worker.Sdk.Generators diff --git a/src/DotNetWorker.ApplicationInsights/release_notes.md b/src/DotNetWorker.ApplicationInsights/release_notes.md index a24d892c..addb34ce 100644 --- a/src/DotNetWorker.ApplicationInsights/release_notes.md +++ b/src/DotNetWorker.ApplicationInsights/release_notes.md @@ -1,4 +1,5 @@ ## What's Changed -### Microsoft.Azure.Functions.Worker.ApplicationInsights 1.4.0 -- Updating `Azure.Identity` to 1.12.0 +### Microsoft.Azure.Functions.Worker.ApplicationInsights + +- diff --git a/src/DotNetWorker.Core/DotNetWorker.Core.csproj b/src/DotNetWorker.Core/DotNetWorker.Core.csproj index 3bcc803a..e8f2c298 100644 --- a/src/DotNetWorker.Core/DotNetWorker.Core.csproj +++ b/src/DotNetWorker.Core/DotNetWorker.Core.csproj @@ -8,7 +8,7 @@ Microsoft.Azure.Functions.Worker.Core Microsoft.Azure.Functions.Worker.Core true - 19 + 20 0 diff --git a/src/DotNetWorker.Grpc/DotNetWorker.Grpc.csproj b/src/DotNetWorker.Grpc/DotNetWorker.Grpc.csproj index fd9d7605..a31ebe03 100644 --- a/src/DotNetWorker.Grpc/DotNetWorker.Grpc.csproj +++ b/src/DotNetWorker.Grpc/DotNetWorker.Grpc.csproj @@ -8,7 +8,7 @@ Microsoft.Azure.Functions.Worker.Grpc Microsoft.Azure.Functions.Worker.Grpc true - 17 + 18 0 true diff --git a/src/DotNetWorker/DotNetWorker.csproj b/src/DotNetWorker/DotNetWorker.csproj index 2ed0d2a7..c32fb1f9 100644 --- a/src/DotNetWorker/DotNetWorker.csproj +++ b/src/DotNetWorker/DotNetWorker.csproj @@ -8,7 +8,7 @@ Microsoft.Azure.Functions.Worker Microsoft.Azure.Functions.Worker true - 23 + 24 0 diff --git a/test/Sdk.Generator.Tests/FunctionExecutor/DependentAssemblyTest.cs b/test/Sdk.Generator.Tests/FunctionExecutor/DependentAssemblyTest.cs index 6a446b73..3824e239 100644 --- a/test/Sdk.Generator.Tests/FunctionExecutor/DependentAssemblyTest.cs +++ b/test/Sdk.Generator.Tests/FunctionExecutor/DependentAssemblyTest.cs @@ -138,7 +138,7 @@ public DirectFunctionExecutor(global::Microsoft.Azure.Functions.Worker.IFunction private global::Microsoft.Azure.Functions.Worker.Invocation.IFunctionExecutor CreateDefaultExecutorInstance(global::Microsoft.Azure.Functions.Worker.FunctionContext context) { - var defaultExecutorFullName = "Microsoft.Azure.Functions.Worker.Invocation.DefaultFunctionExecutor, Microsoft.Azure.Functions.Worker.Core, Version=1.19.0.0, Culture=neutral, PublicKeyToken=551316b6919f366c"; + var defaultExecutorFullName = "Microsoft.Azure.Functions.Worker.Invocation.DefaultFunctionExecutor, Microsoft.Azure.Functions.Worker.Core, Version=1.20.0.0, Culture=neutral, PublicKeyToken=551316b6919f366c"; var defaultExecutorType = global::System.Type.GetType(defaultExecutorFullName); return ActivatorUtilities.CreateInstance(context.InstanceServices, defaultExecutorType) as global::Microsoft.Azure.Functions.Worker.Invocation.IFunctionExecutor;