Skip to content

Commit

Permalink
python worker hotfix (#9719)
Browse files Browse the repository at this point in the history
Co-authored-by: gavin-aguiar <[email protected]>
  • Loading branch information
hallvictoria and gavin-aguiar authored Dec 4, 2023
1 parent 66ab5f5 commit 8a2a1f4
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 32 deletions.
2 changes: 1 addition & 1 deletion build/common.props
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
<LangVersion>latest</LangVersion>
<MajorVersion>4</MajorVersion>
<MinorVersion>28</MinorVersion>
<PatchVersion>1</PatchVersion>
<PatchVersion>2</PatchVersion>
<BuildNumber Condition="'$(BuildNumber)' == '' ">0</BuildNumber>
<PreviewVersion></PreviewVersion>

Expand Down
2 changes: 1 addition & 1 deletion build/python.props
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
<Project>
<ItemGroup>
<PackageReference Include="Microsoft.Azure.Functions.PythonWorker" Version="4.22.0" />
<PackageReference Include="Microsoft.Azure.Functions.PythonWorker" Version="4.23.0" />
</ItemGroup>
</Project>
30 changes: 1 addition & 29 deletions release_notes.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,32 +3,4 @@
<!-- Please add your release notes in the following format:
- My change description (#PR)
-->
- Update Python Worker Version to [4.22.0](https://github.com/Azure/azure-functions-python-worker/releases/tag/4.22.0)
- Update Java Worker Version to [2.13.0](https://github.com/Azure/azure-functions-java-worker/releases/tag/2.13.0)
- Update WebJobsScriptHostService to remove hardcoded sleep during application shut down (#9520)
- Update PowerShell 7.2 Worker Version to [4.0.2974](https://github.com/Azure/azure-functions-powershell-worker/releases/tag/v4.0.2974)
- Update PowerShell 7.0 Worker Version to [4.0.2973](https://github.com/Azure/azure-functions-powershell-worker/releases/tag/v4.0.2973)
- Add support for standalone executable (ie: `dotnet build --standalone`) for out-of-proc workers in Linux Consumption. (#9550)
- Bug fix: Do not restart worker channels or JobHost when an API request is made to get or update the function metadata (unless the config was changed) (#9510)
- This fixes a bug where requests to 'admin/functions' lead to a "Did not find initialized workers" error when
worker indexing is enabled.
- Bug fix: If there are no channels created and the host is running, restart the JobHost instead of shutting down worker channels (#9510)
- This fixes a bug with worker indexing where we are shutting down worker channels and creating a new channel that never
gets properly initialized as the invocation buffers are not created - this leads to a "Did not find initialized workers" error.
- Check if a blob container or table exists before trying to create it (#9555)
- Limit dotnet-isolated specialization to 64 bit host process (#9548)
- Sending command line arguments to language workers with `functions-` prefix to prevent conflicts (#9514)
- Adding code to simulate placeholder and specilization locally (#9618)
- Enable worker indexing by default without the need for hosting config (#9574)
- Delaying execution of `LogWorkerMetadata` method until after coldstart is done. (#9627)
- Update PowerShell Worker 7.2 to 4.0.3070 [Release Note](https://github.com/Azure/azure-functions-powershell-worker/releases/tag/v4.0.3070)
- Update PowerShell Worker 7.4 to 4.0.3030 [Release Note](https://github.com/Azure/azure-functions-powershell-worker/releases/tag/v4.0.3030)
- Update Node.js Worker Version to [3.9.0](https://github.com/Azure/azure-functions-nodejs-worker/releases/tag/v3.9.0)
- Upgrading dependent packages to latest versions. #9646
- Azure.Identity (1.10.0 to 1.10.3)
- Azure.Core (1.34.0 to 1.35.0)
- Updating HostWarmupMiddleware to trigger warmup code on home page request when testing locally using DebugPlaceholder or ReleasePlaceholder configuration.
- Bug fix: Comparisons in the Azure Key Vault Secrets Repository are now case insensitive (#9644)
- This fixes a bug where keys could be automatically recreated if they had been manually added to Key Vault with all lowercase secret names
- Update DotNetIsolatedNativeHost version to 1.0.3 (#9671)
- Update PowerShell Worker 7.4 to 4.0.3085 [Release Note](https://github.com/Azure/azure-functions-powershell-worker/releases/tag/v4.0.3085)
- Update Python Worker Version to [4.23.0](https://github.com/Azure/azure-functions-python-worker/releases/tag/4.23.0)
2 changes: 1 addition & 1 deletion test/WebJobs.Script.Tests/WebJobs.Script.Tests.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -58,7 +58,7 @@
<PackageReference Include="appinsights.testlogger" Version="1.0.0" />
<PackageReference Include="FluentAssertions" Version="5.9.0" />
<PackageReference Include="Microsoft.AspNetCore.TestHost" Version="6.0.0" />
<PackageReference Include="Microsoft.Azure.Functions.PythonWorker" Version="4.22.0" />
<PackageReference Include="Microsoft.Azure.Functions.PythonWorker" Version="4.23.0" />
<PackageReference Include="Microsoft.NET.Test.Sdk" Version="16.9.4" />
<PackageReference Include="Moq" Version="4.9.0" />
<PackageReference Include="StyleCop.Analyzers" Version="1.2.0-beta.435">
Expand Down

0 comments on commit 8a2a1f4

Please sign in to comment.