WARNING: THIS SITE IS A MIRROR OF GITHUB.COM / IT CANNOT LOGIN OR REGISTER ACCOUNTS / THE CONTENTS ARE PROVIDED AS-IS / THIS SITE ASSUMES NO RESPONSIBILITY FOR ANY DISPLAYED CONTENT OR LINKS / IF YOU FOUND SOMETHING MAY NOT GOOD FOR EVERYONE, CONTACT ADMIN AT ilovescratch@foxmail.com
Skip to content

Commit a50707e

Browse files
kshyjujviau
andauthored
2.50.0 worker packages release prep (#3237)
* Adding net10 TFM to worker packages (#3123) * Fix steps indentation (#3117) * .NET 10 TFM support changes. --------- Co-authored-by: Jacob Viau <[email protected]> * Updating the dependencies from P6 to NET10. * Switch sdk to 10.0.100 GA --------- Co-authored-by: Jacob Viau <[email protected]>
1 parent 3a7d27e commit a50707e

File tree

13 files changed

+39
-43
lines changed

13 files changed

+39
-43
lines changed

global.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"sdk": {
3-
"version": "9.0.306",
3+
"version": "10.0.100",
44
"allowPrerelease": true,
55
"rollForward": "latestFeature"
66
},

release_notes.md

Lines changed: 9 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -4,11 +4,14 @@
44
- My change description (#PR/#issue)
55
-->
66

7-
### Microsoft.Azure.Functions.Worker (metapackage) 2.2.0
8-
-
7+
### Microsoft.Azure.Functions.Worker (metapackage) 2.50.0
98

10-
### Microsoft.Azure.Functions.Worker.Core 2.2.0
11-
- Support setting `IFunctionExecutor` in invocation features: `FunctionContext.Features` (#3200)
9+
- Adding `net10.0` TFM support.
1210

13-
### Microsoft.Azure.Functions.Worker.Grpc 2.2.0
14-
-
11+
### Microsoft.Azure.Functions.Worker.Core 2.50.0
12+
13+
- Adding `net10.0` TFM support.
14+
15+
### Microsoft.Azure.Functions.Worker.Grpc 2.50.0
16+
17+
- Adding `net10.0` TFM support.

src/DotNetWorker.ApplicationInsights/DotNetWorker.ApplicationInsights.csproj

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
<AssemblyName>Microsoft.Azure.Functions.Worker.ApplicationInsights</AssemblyName>
77
<RootNamespace>Microsoft.Azure.Functions.Worker.ApplicationInsights</RootNamespace>
88
<MajorProductVersion>2</MajorProductVersion>
9-
<MinorProductVersion>0</MinorProductVersion>
9+
<MinorProductVersion>50</MinorProductVersion>
1010
<PatchProductVersion>0</PatchProductVersion>
1111
<PackageReadmeFile>README.md</PackageReadmeFile>
1212
<BeforePack>$(BeforePack);GetReleaseNotes</BeforePack>
@@ -17,7 +17,7 @@
1717
<ItemGroup>
1818
<PackageReference Include="Azure.Identity" Version="1.17.0" />
1919
<PackageReference Include="Microsoft.ApplicationInsights.PerfCounterCollector" Version="2.23.0" />
20-
<PackageReference Include="Microsoft.Bcl.AsyncInterfaces" Version="8.0.0" />
20+
<PackageReference Include="Microsoft.Bcl.AsyncInterfaces" Version="10.0.0" />
2121
</ItemGroup>
2222

2323
<ItemGroup>

src/DotNetWorker.Core/DotNetWorker.Core.csproj

Lines changed: 6 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -2,15 +2,15 @@
22

33
<PropertyGroup>
44
<OutputType>Library</OutputType>
5-
<TargetFrameworks>net6.0;net8.0;net9.0;netstandard2.0</TargetFrameworks>
5+
<TargetFrameworks>net6.0;net8.0;net9.0;net10.0;netstandard2.0</TargetFrameworks>
66
<PackageId>Microsoft.Azure.Functions.Worker.Core</PackageId>
77
<Description>This library provides the core functionality to build an Azure Functions .NET Worker, adding support for the isolated, out-of-process execution model.</Description>
88
<AssemblyName>Microsoft.Azure.Functions.Worker.Core</AssemblyName>
99
<RootNamespace>Microsoft.Azure.Functions.Worker.Core</RootNamespace>
1010
<GenerateDocumentationFile>true</GenerateDocumentationFile>
1111
<MajorProductVersion>2</MajorProductVersion>
12-
<MinorProductVersion>2</MinorProductVersion>
13-
<PatchProductVersion>0</PatchProductVersion>
12+
<MinorProductVersion>50</MinorProductVersion>
13+
<PatchProductVersion>0</PatchProductVersion>
1414
</PropertyGroup>
1515

1616
<Import Project="..\..\build\Common.props" />
@@ -22,19 +22,12 @@
2222

2323
<ItemGroup>
2424
<PackageReference Include="Azure.Core" Version="1.44.1" />
25+
<PackageReference Include="Microsoft.Extensions.Hosting" Version="10.0.0" />
2526
</ItemGroup>
2627

2728
<ItemGroup Condition="'$(TargetFramework)' == 'netstandard2.0'">
28-
<PackageReference Include="System.Collections.Immutable" Version="8.0.0" />
29-
<PackageReference Include="Microsoft.Bcl.Memory" Version="9.0.0" />
30-
</ItemGroup>
31-
32-
<ItemGroup Condition="'$(TargetFramework)' != 'net9.0'">
33-
<PackageReference Include="Microsoft.Extensions.Hosting" Version="8.0.1" />
34-
</ItemGroup>
35-
36-
<ItemGroup Condition="'$(TargetFramework)' == 'net9.0'">
37-
<PackageReference Include="Microsoft.Extensions.Hosting" Version="9.0.0" />
29+
<PackageReference Include="System.Collections.Immutable" Version="10.0.0" />
30+
<PackageReference Include="Microsoft.Bcl.Memory" Version="10.0.0" />
3831
</ItemGroup>
3932

4033
</Project>

src/DotNetWorker.Grpc/DotNetWorker.Grpc.csproj

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -2,15 +2,15 @@
22

33
<PropertyGroup>
44
<OutputType>Library</OutputType>
5-
<TargetFrameworks>net6.0;net7.0;net8.0;net9.0;netstandard2.0</TargetFrameworks>
5+
<TargetFrameworks>net6.0;net7.0;net8.0;net9.0;net10.0;netstandard2.0</TargetFrameworks>
66
<PackageId>Microsoft.Azure.Functions.Worker.Grpc</PackageId>
77
<Description>This library provides gRPC support for Azure Functions .NET Worker communication with the Azure Functions Host.</Description>
88
<AssemblyName>Microsoft.Azure.Functions.Worker.Grpc</AssemblyName>
99
<RootNamespace>Microsoft.Azure.Functions.Worker.Grpc</RootNamespace>
1010
<GenerateDocumentationFile>true</GenerateDocumentationFile>
1111
<MajorProductVersion>2</MajorProductVersion>
12-
<MinorProductVersion>2</MinorProductVersion>
13-
<PatchProductVersion>0</PatchProductVersion>
12+
<MinorProductVersion>50</MinorProductVersion>
13+
<PatchProductVersion>0</PatchProductVersion>
1414
<AllowUnsafeBlocks>true</AllowUnsafeBlocks>
1515
</PropertyGroup>
1616

src/DotNetWorker/DotNetWorker.csproj

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,14 +2,14 @@
22

33
<PropertyGroup>
44
<OutputType>Library</OutputType>
5-
<TargetFrameworks>net6.0;net7.0;net8.0;net9.0;netstandard2.0</TargetFrameworks>
5+
<TargetFrameworks>net6.0;net7.0;net8.0;net9.0;net10.0;netstandard2.0</TargetFrameworks>
66
<PackageId>Microsoft.Azure.Functions.Worker</PackageId>
77
<Description>This library enables you to create an Azure Functions .NET Worker, adding support for the isolated, out-of-process execution model.</Description>
88
<AssemblyName>Microsoft.Azure.Functions.Worker</AssemblyName>
99
<RootNamespace>Microsoft.Azure.Functions.Worker</RootNamespace>
1010
<GenerateDocumentationFile>true</GenerateDocumentationFile>
1111
<MajorProductVersion>2</MajorProductVersion>
12-
<MinorProductVersion>2</MinorProductVersion>
12+
<MinorProductVersion>50</MinorProductVersion>
1313
<PatchProductVersion>0</PatchProductVersion>
1414
</PropertyGroup>
1515

test/E2ETests/E2EApps/E2EApp/E2EApp.csproj

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -47,6 +47,6 @@
4747
<PackageReference Include="Microsoft.AspNetCore.WebUtilities" Version="8.0.8" Condition="'$(TargetFramework)' != 'net48'" />
4848
<PackageReference Include="Microsoft.Azure.Functions.Worker.Sdk" Version="1.17.4" />
4949
<PackageReference Condition="$(TestBuild) != 'true'" Include="Microsoft.Azure.Functions.Worker" Version="1.23.0" />
50-
<PackageReference Include="System.Text.Json" Version="8.0.5" />
50+
<PackageReference Include="System.Text.Json" Version="10.0.0" />
5151
</ItemGroup>
5252
</Project>

test/E2ETests/E2ETests/E2ETests.csproj

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -12,10 +12,10 @@
1212
<PackageReference Include="Azure.Storage.Blobs" Version="12.21.2" />
1313
<PackageReference Include="Azure.Storage.Queues" Version="12.19.1" />
1414
<PackageReference Include="Microsoft.Azure.Cosmos" Version="3.46.1" />
15-
<PackageReference Include="Microsoft.Extensions.Logging" Version="8.0.1" />
15+
<PackageReference Include="Microsoft.Extensions.Logging" Version="10.0.0" />
1616
<PackageReference Include="Microsoft.NET.Test.Sdk" Version="17.11.0" />
1717
<PackageReference Include="Moq" Version="4.20.70" />
18-
<PackageReference Include="System.Text.Json" Version="8.0.5" />
18+
<PackageReference Include="System.Text.Json" Version="10.0.0" />
1919
<PackageReference Include="xunit" Version="2.9.0" />
2020
<PackageReference Include="xunit.runner.visualstudio" Version="2.8.2">
2121
<PrivateAssets>all</PrivateAssets>

test/Sdk.Analyzers.Tests/Sdk.Analyzers.Tests.csproj

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@
1313
<PackageReference Include="SmartAnalyzers.RoslynTestKit" Version="5.0.2" />
1414
<PackageReference Include="System.Data.SqlClient" Version="4.8.6" />
1515
<PackageReference Include="System.Drawing.Common" Version="8.0.8" />
16-
<PackageReference Include="System.Text.Json" Version="8.0.5" />
16+
<PackageReference Include="System.Text.Json" Version="10.0.0" />
1717
<PackageReference Include="xunit" Version="2.9.0" />
1818
<PackageReference Include="xunit.runner.visualstudio" Version="2.8.2">
1919
<PrivateAssets>all</PrivateAssets>

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

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

0 commit comments

Comments
 (0)