Skip to content

Commit 91230aa

Browse files
authored
[v1.x] Update release notes & core version for release (#2890)
1 parent 8e01d91 commit 91230aa

File tree

7 files changed

+16
-17
lines changed

7 files changed

+16
-17
lines changed

release_notes.md

Lines changed: 8 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -4,18 +4,16 @@
44
- My change description (#PR/#issue)
55
-->
66

7-
### Microsoft.Azure.Functions.Worker (metapackage) 1.23.0
7+
### Microsoft.Azure.Functions.Worker (metapackage) 1.24.0
88

9-
- Updating `Microsoft.Azure.Functions.Worker.Core` to 1.19.0
10-
- Updating `Microsoft.Azure.Functions.Worker.Grpc` to 1.17.0
11-
- Updating `Azure.Core` to 1.41.0
9+
- Updating `Microsoft.Azure.Functions.Worker.Core` to 1.20.0
10+
- Updating `Microsoft.Azure.Functions.Worker.Grpc` to 1.18.0
1211

13-
### Microsoft.Azure.Functions.Worker.Core 1.19.0
12+
### Microsoft.Azure.Functions.Worker.Core 1.20.0
1413

15-
- Updating `Azure.Core` to 1.41.0
16-
- Updated service registrations for bootstrapping methods to ensure idempotency.
14+
- Updated service registrations for bootstrapping methods to ensure idempotency. (#2820)
1715

18-
### Microsoft.Azure.Functions.Worker.Grpc 1.17.0
16+
### Microsoft.Azure.Functions.Worker.Grpc 1.18.0
1917

20-
- Updating `Azure.Core` to 1.41.0
21-
- Updated service registrations for bootstrapping methods to ensure idempotency.
18+
- Changed exception handling in function invocation path to ensure fatal exceptions bubble up. (#2789)
19+
- Updated service registrations for bootstrapping methods to ensure idempotency. (#2820)

sdk/release_notes.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66

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

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

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

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
11
## What's Changed
22

3-
### Microsoft.Azure.Functions.Worker.ApplicationInsights 1.4.0
4-
- Updating `Azure.Identity` to 1.12.0
3+
### Microsoft.Azure.Functions.Worker.ApplicationInsights <version>
4+
5+
- <entry>

src/DotNetWorker.Core/DotNetWorker.Core.csproj

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88
<AssemblyName>Microsoft.Azure.Functions.Worker.Core</AssemblyName>
99
<RootNamespace>Microsoft.Azure.Functions.Worker.Core</RootNamespace>
1010
<GenerateDocumentationFile>true</GenerateDocumentationFile>
11-
<MinorProductVersion>19</MinorProductVersion>
11+
<MinorProductVersion>20</MinorProductVersion>
1212
<PatchProductVersion>0</PatchProductVersion>
1313
<VersionSuffix></VersionSuffix>
1414
</PropertyGroup>

src/DotNetWorker.Grpc/DotNetWorker.Grpc.csproj

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88
<AssemblyName>Microsoft.Azure.Functions.Worker.Grpc</AssemblyName>
99
<RootNamespace>Microsoft.Azure.Functions.Worker.Grpc</RootNamespace>
1010
<GenerateDocumentationFile>true</GenerateDocumentationFile>
11-
<MinorProductVersion>17</MinorProductVersion>
11+
<MinorProductVersion>18</MinorProductVersion>
1212
<PatchProductVersion>0</PatchProductVersion>
1313
<VersionSuffix></VersionSuffix>
1414
<AllowUnsafeBlocks>true</AllowUnsafeBlocks>

src/DotNetWorker/DotNetWorker.csproj

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88
<AssemblyName>Microsoft.Azure.Functions.Worker</AssemblyName>
99
<RootNamespace>Microsoft.Azure.Functions.Worker</RootNamespace>
1010
<GenerateDocumentationFile>true</GenerateDocumentationFile>
11-
<MinorProductVersion>23</MinorProductVersion>
11+
<MinorProductVersion>24</MinorProductVersion>
1212
<PatchProductVersion>0</PatchProductVersion>
1313
<VersionSuffix></VersionSuffix>
1414
</PropertyGroup>

test/Sdk.Generator.Tests/FunctionExecutor/DependentAssemblyTest.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -138,7 +138,7 @@ public DirectFunctionExecutor(global::Microsoft.Azure.Functions.Worker.IFunction
138138
139139
private global::Microsoft.Azure.Functions.Worker.Invocation.IFunctionExecutor CreateDefaultExecutorInstance(global::Microsoft.Azure.Functions.Worker.FunctionContext context)
140140
{
141-
var defaultExecutorFullName = "Microsoft.Azure.Functions.Worker.Invocation.DefaultFunctionExecutor, Microsoft.Azure.Functions.Worker.Core, Version=1.19.0.0, Culture=neutral, PublicKeyToken=551316b6919f366c";
141+
var defaultExecutorFullName = "Microsoft.Azure.Functions.Worker.Invocation.DefaultFunctionExecutor, Microsoft.Azure.Functions.Worker.Core, Version=1.20.0.0, Culture=neutral, PublicKeyToken=551316b6919f366c";
142142
var defaultExecutorType = global::System.Type.GetType(defaultExecutorFullName);
143143
144144
return ActivatorUtilities.CreateInstance(context.InstanceServices, defaultExecutorType) as global::Microsoft.Azure.Functions.Worker.Invocation.IFunctionExecutor;

0 commit comments

Comments
 (0)