Skip to content

Commit e704163

Browse files
authored
Release prep for worker packages and Otel extension (#3354)
1 parent efbc150 commit e704163

7 files changed

Lines changed: 11 additions & 11 deletions

File tree

release_notes.md

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

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

9-
- Update `Microsoft.Azure.Functions.Worker.Core` to <version>
10-
- Update `Microsoft.Azure.Functions.Worker.Grpc` to <version>
9+
- Update `Microsoft.Azure.Functions.Worker.Core` to 2.52.0
10+
- Update `Microsoft.Azure.Functions.Worker.Grpc` to 2.52.0
1111

12-
### Microsoft.Azure.Functions.Worker.Core <version>
12+
### Microsoft.Azure.Functions.Worker.Core 2.52.0
1313

1414
- Add support for propagating trace context tags from worker to host (#3303)
1515
- Add support for propagating OpenTelemetry Baggage to the worker. Requires use with the OpenTelemetry Extension to work end to end (#3319).
1616

17-
### Microsoft.Azure.Functions.Worker.Grpc <version>
17+
### Microsoft.Azure.Functions.Worker.Grpc 2.52.0
1818

1919
- Update protobuf version to v1.12.0-protofile and add support for propagating tags from the worker to the functions host (#3303).
2020
- Update protobuf version to v1.13.0-protofile to add support for propagating OpenTelemetry baggage to the worker (#3319).

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>51</MinorProductVersion>
12+
<MinorProductVersion>52</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>51</MinorProductVersion>
12+
<MinorProductVersion>52</MinorProductVersion>
1313
<PatchProductVersion>0</PatchProductVersion>
1414
<AllowUnsafeBlocks>true</AllowUnsafeBlocks>
1515
</PropertyGroup>

src/DotNetWorker.OpenTelemetry/DotNetWorker.OpenTelemetry.csproj

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
<AssemblyName>Microsoft.Azure.Functions.Worker.OpenTelemetry</AssemblyName>
77
<RootNamespace>Microsoft.Azure.Functions.Worker.OpenTelemetry</RootNamespace>
88
<MajorProductVersion>1</MajorProductVersion>
9-
<MinorProductVersion>1</MinorProductVersion>
9+
<MinorProductVersion>2</MinorProductVersion>
1010
<PatchProductVersion>0</PatchProductVersion>
1111
<PackageReadmeFile>README.md</PackageReadmeFile>
1212
<BeforePack>$(BeforePack);GetReleaseNotes</BeforePack>
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
## What's Changed
22

3-
### Microsoft.Azure.Functions.Worker.OpenTelemetry <version>
3+
### Microsoft.Azure.Functions.Worker.OpenTelemetry 1.2.0
44

55
- Add support for propagating OpenTelemetry baggage to the worker (#3319).
66
- `FunctionsResourceDetector` now respects `OTEL_SERVICE_NAME` and `OTEL_RESOURCE_ATTRIBUTES` — when either is set, the detector skips adding `service.name` and/or `service.version` so the OTel SDK picks them up without duplication (#3362).

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>51</MinorProductVersion>
12+
<MinorProductVersion>52</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.51.0.0, Culture=neutral, PublicKeyToken=551316b6919f366c";
142+
var defaultExecutorFullName = "Microsoft.Azure.Functions.Worker.Invocation.DefaultFunctionExecutor, Microsoft.Azure.Functions.Worker.Core, Version=2.52.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)