Skip to content

Commit

Permalink
[v1.x] Update release notes & core version for release (#2890)
Browse files Browse the repository at this point in the history
  • Loading branch information
liliankasem authored Dec 9, 2024
1 parent 8e01d91 commit 91230aa
Show file tree
Hide file tree
Showing 7 changed files with 16 additions and 17 deletions.
18 changes: 8 additions & 10 deletions release_notes.md
Original file line number Diff line number Diff line change
Expand Up @@ -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.
- Changed exception handling in function invocation path to ensure fatal exceptions bubble up. (#2789)
- Updated service registrations for bootstrapping methods to ensure idempotency. (#2820)
2 changes: 1 addition & 1 deletion sdk/release_notes.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@

### Microsoft.Azure.Functions.Worker.Sdk <version>

- Changed exception handling in function invocation path to ensure fatal exceptions bubble up.
- <entry>

### Microsoft.Azure.Functions.Worker.Sdk.Generators <version>

Expand Down
5 changes: 3 additions & 2 deletions src/DotNetWorker.ApplicationInsights/release_notes.md
Original file line number Diff line number Diff line change
@@ -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 <version>

- <entry>
2 changes: 1 addition & 1 deletion src/DotNetWorker.Core/DotNetWorker.Core.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
<AssemblyName>Microsoft.Azure.Functions.Worker.Core</AssemblyName>
<RootNamespace>Microsoft.Azure.Functions.Worker.Core</RootNamespace>
<GenerateDocumentationFile>true</GenerateDocumentationFile>
<MinorProductVersion>19</MinorProductVersion>
<MinorProductVersion>20</MinorProductVersion>
<PatchProductVersion>0</PatchProductVersion>
<VersionSuffix></VersionSuffix>
</PropertyGroup>
Expand Down
2 changes: 1 addition & 1 deletion src/DotNetWorker.Grpc/DotNetWorker.Grpc.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
<AssemblyName>Microsoft.Azure.Functions.Worker.Grpc</AssemblyName>
<RootNamespace>Microsoft.Azure.Functions.Worker.Grpc</RootNamespace>
<GenerateDocumentationFile>true</GenerateDocumentationFile>
<MinorProductVersion>17</MinorProductVersion>
<MinorProductVersion>18</MinorProductVersion>
<PatchProductVersion>0</PatchProductVersion>
<VersionSuffix></VersionSuffix>
<AllowUnsafeBlocks>true</AllowUnsafeBlocks>
Expand Down
2 changes: 1 addition & 1 deletion src/DotNetWorker/DotNetWorker.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
<AssemblyName>Microsoft.Azure.Functions.Worker</AssemblyName>
<RootNamespace>Microsoft.Azure.Functions.Worker</RootNamespace>
<GenerateDocumentationFile>true</GenerateDocumentationFile>
<MinorProductVersion>23</MinorProductVersion>
<MinorProductVersion>24</MinorProductVersion>
<PatchProductVersion>0</PatchProductVersion>
<VersionSuffix></VersionSuffix>
</PropertyGroup>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -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;
Expand Down

0 comments on commit 91230aa

Please sign in to comment.