Skip to content

Commit 73db869

Browse files
authored
[Backport] Update Python Worker Version to 4.35.0 (#10806)
* [Backport] Update Python Worker Version to 4.35.0 * update codeowners * Remove python target * remove target
1 parent ebdd597 commit 73db869

File tree

4 files changed

+6
-12
lines changed

4 files changed

+6
-12
lines changed

CODEOWNERS

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88
* @azure/azure-functions-core
99

1010
# Adding codeowner for Python specific files such that GitHub automatically adds python folks as a reviewer.
11-
eng/build/Workers.Python.props @vrdmr @gavin-aguiar @YunchuWang @pdthummar @hallvictoria
11+
eng/build/Workers.Python.props @vrdmr @gavin-aguiar @hallvictoria
1212

1313
# Deps.json validation file
1414
test/WebJobs.Script.Tests/Microsoft.Azure.WebJobs.Script.WebHost.deps.json @fabiocav @brettsam @mathewc

eng/build/Workers.Python.props

Lines changed: 1 addition & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -2,14 +2,7 @@
22

33
<ItemGroup>
44
<!-- Python worker does not ship with the host for windows. -->
5-
<PackageReference Include="Microsoft.Azure.Functions.PythonWorker" Version="4.34.0" Condition="!$(RuntimeIdentifier.StartsWith('win'))" />
5+
<PackageReference Include="Microsoft.Azure.Functions.PythonWorker" Version="4.35.0" Condition="!$(RuntimeIdentifier.StartsWith('win'))" />
66
</ItemGroup>
77

8-
<!-- PythonWorker package injects its content files through custom targets. -->
9-
<Target Name="SuppressPythonWorker" AfterTargets="Initialize" BeforeTargets="CopyOnPublish" Condition="$(RuntimeIdentifier.StartsWith('win'))">
10-
<ItemGroup>
11-
<SourceFiles Remove="@(SourceFiles)" />
12-
</ItemGroup>
13-
</Target>
14-
158
</Project>

release_notes.md

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,4 +9,5 @@
99
- Update the `DefaultHttpProxyService` to better handle client disconnect scenarios (#10688)
1010
- Replaced `InvalidOperationException` with `HttpForwardingException` when there is a ForwarderError
1111
- [In-proc] Codeql : Fix to remove exception details from the response (#10751)
12-
- Update PowerShell 7.4 worker to [4.0.4134](https://github.com/Azure/azure-functions-powershell-worker/releases/tag/v4.0.4134)
12+
- Update PowerShell 7.4 worker to [4.0.4134](https://github.com/Azure/azure-functions-powershell-worker/releases/tag/v4.0.4134)
13+
- Update Python Worker Version to [4.35.0](https://github.com/Azure/azure-functions-python-worker/releases/tag/4.35.0)

test/WebJobs.Script.Tests/WebJobs.Script.Tests.csproj

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
<Project Sdk="Microsoft.NET.Sdk">
1+
<Project Sdk="Microsoft.NET.Sdk">
22

33
<PropertyGroup>
44
<TargetFrameworks>net8.0;net6.0</TargetFrameworks>
@@ -29,7 +29,7 @@
2929
<PackageReference Include="appinsights.testlogger" Version="1.0.0" />
3030
<PackageReference Include="FluentAssertions" Version="5.9.0" />
3131
<PackageReference Include="Microsoft.AspNetCore.TestHost" Version="6.0.0" />
32-
<PackageReference Include="Microsoft.Azure.Functions.PythonWorker" Version="4.34.0" />
32+
<PackageReference Include="Microsoft.Azure.Functions.PythonWorker" Version="4.35.0" />
3333
<PackageReference Include="Microsoft.NET.Test.Sdk" Version="16.9.4" />
3434
<PackageReference Include="Moq" Version="4.18.4" />
3535
<PackageReference Include="StyleCop.Analyzers" Version="1.2.0-beta.435">

0 commit comments

Comments
 (0)