Skip to content

Commit 456cca3

Browse files
2.51.0 worker packages release prep (#3250)
* 2.51.0 release prep.
1 parent 705a2bf commit 456cca3

File tree

7 files changed

+12
-13
lines changed

7 files changed

+12
-13
lines changed

release_notes.md

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

7-
### Microsoft.Azure.Functions.Worker (metapackage) <version>
7+
### Microsoft.Azure.Functions.Worker (metapackage) 2.51.0
88

9-
- <entry>
9+
- Updated worker instrumentation to improve telemetry handling. (#3195)
1010

11-
### Microsoft.Azure.Functions.Worker.Core <version>
11+
### Microsoft.Azure.Functions.Worker.Core 2.51.0
1212

13-
- <entry>
13+
- Improved telemetry handling, added OpenTelemetry schema compatibility, and streamlined context propagation. (#3195)
1414

15-
### Microsoft.Azure.Functions.Worker.Grpc <version>
15+
### Microsoft.Azure.Functions.Worker.Grpc 2.51.0
1616

17-
- <entry>
17+
- Added `Attributes` to FunctionContext.TraceContext. (#3195)

src/DotNetWorker.Core/DotNetWorker.Core.csproj

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99
<RootNamespace>Microsoft.Azure.Functions.Worker.Core</RootNamespace>
1010
<GenerateDocumentationFile>true</GenerateDocumentationFile>
1111
<MajorProductVersion>2</MajorProductVersion>
12-
<MinorProductVersion>50</MinorProductVersion>
12+
<MinorProductVersion>51</MinorProductVersion>
1313
<PatchProductVersion>0</PatchProductVersion>
1414
</PropertyGroup>
1515

src/DotNetWorker.Grpc/DotNetWorker.Grpc.csproj

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99
<RootNamespace>Microsoft.Azure.Functions.Worker.Grpc</RootNamespace>
1010
<GenerateDocumentationFile>true</GenerateDocumentationFile>
1111
<MajorProductVersion>2</MajorProductVersion>
12-
<MinorProductVersion>50</MinorProductVersion>
12+
<MinorProductVersion>51</MinorProductVersion>
1313
<PatchProductVersion>0</PatchProductVersion>
1414
<AllowUnsafeBlocks>true</AllowUnsafeBlocks>
1515
</PropertyGroup>

src/DotNetWorker.OpenTelemetry/DotNetWorker.OpenTelemetry.csproj

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,6 @@
88
<MajorProductVersion>1</MajorProductVersion>
99
<MinorProductVersion>1</MinorProductVersion>
1010
<PatchProductVersion>0</PatchProductVersion>
11-
<VersionSuffix>-preview6</VersionSuffix>
1211
<PackageReadmeFile>README.md</PackageReadmeFile>
1312
<BeforePack>$(BeforePack);GetReleaseNotes</BeforePack>
1413
</PropertyGroup>
Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
## What's Changed
22

3-
### Microsoft.Azure.Functions.Worker.OpenTelemetry 1.0.0 (Preview 2)
3+
### Microsoft.Azure.Functions.Worker.OpenTelemetry 1.1.0
44

5-
- `UseFunctionsWorkerDefaults` signature now uses `IOpenTelemetryBuilder` (from `OpenTelemetryBuilder`) (#2839)
5+
- Updated OpenTelemetry NuGet packages and aligned implementation with Semantic Conventions v1.37. (#3195)

src/DotNetWorker/DotNetWorker.csproj

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99
<RootNamespace>Microsoft.Azure.Functions.Worker</RootNamespace>
1010
<GenerateDocumentationFile>true</GenerateDocumentationFile>
1111
<MajorProductVersion>2</MajorProductVersion>
12-
<MinorProductVersion>50</MinorProductVersion>
12+
<MinorProductVersion>51</MinorProductVersion>
1313
<PatchProductVersion>0</PatchProductVersion>
1414
</PropertyGroup>
1515

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.50.0.0, Culture=neutral, PublicKeyToken=551316b6919f366c";
142+
var defaultExecutorFullName = "Microsoft.Azure.Functions.Worker.Invocation.DefaultFunctionExecutor, Microsoft.Azure.Functions.Worker.Core, Version=2.51.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)