Skip to content

Commit fb186a3

Browse files
authored
Bump host version to 3.1.1, update Python worker to 1.2.4 (#7520)
1 parent 3499952 commit fb186a3

File tree

4 files changed

+8
-21
lines changed

4 files changed

+8
-21
lines changed

build/common.props

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -5,13 +5,13 @@
55
<LangVersion>7.2</LangVersion>
66
<MajorVersion>3</MajorVersion>
77
<MinorVersion>1</MinorVersion>
8-
<PatchVersion>0</PatchVersion>
8+
<PatchVersion>1</PatchVersion>
99
<VersionPrefix>$(MajorVersion).$(MinorVersion).$(PatchVersion)</VersionPrefix>
1010
<Version Condition=" '$(BuildNumber)' != '' ">$(VersionPrefix)-$(BuildNumber)</Version>
1111
<Version Condition=" '$(Version)' == '' ">$(VersionPrefix)</Version>
1212
<AssemblyVersion>$(MajorVersion).$(MinorVersion).0.0</AssemblyVersion>
1313
<FileVersion>$(VersionPrefix).0</FileVersion>
14-
<CommitHash Condition="$(CommitHash) == ''">N/A</CommitHash>
14+
<CommitHash Condition="$(CommitHash) == ''">N/A</CommitHash>
1515
<InformationalVersion>$(Version) Commit hash: $(CommitHash)</InformationalVersion>
1616
<CodeAnalysisRuleSet>$(MSBuildThisFileDirectory)..\src.ruleset</CodeAnalysisRuleSet>
1717
<NoWarn>$(NoWarn);NU1701</NoWarn>
@@ -23,7 +23,7 @@
2323
<PropertyGroup Condition="'$(UseSourceLink)' == 'true'">
2424
<SourceLink>$(BaseIntermediateOutputPath)source_link.json</SourceLink>
2525
</PropertyGroup>
26-
26+
2727
<Target Name="GenerateSourceLink" BeforeTargets="CoreCompile" Condition="'$(UseSourceLink)' == 'true'">
2828
<PropertyGroup>
2929
<SrcRootDirectory>$([System.IO.Directory]::GetParent($(MSBuildThisFileDirectory.TrimEnd("\"))))</SrcRootDirectory>
@@ -41,7 +41,7 @@
4141
<!-- Write out the source file for this project to point at raw.githubusercontent.com -->
4242
<WriteLinesToFile File="$(BaseIntermediateOutputPath)source_link.json" Overwrite="true" Lines='{"documents": { "$(SourceLinkRoot)\\*" : "$(RemoteUri.Replace(".git", "").Replace("github.com", "raw.githubusercontent.com"))/$(LatestCommit)/*" }}' />
4343
</Target>
44-
44+
4545
<ItemGroup>
4646
<AdditionalFiles Include="$(MSBuildThisFileDirectory)..\stylecop.json" Link="stylecop.json" />
4747
</ItemGroup>
@@ -50,4 +50,4 @@
5050
<PackageReference Include="Microsoft.CodeAnalysis.Common" Version="3.3.1" />
5151
<PackageReference Include="Microsoft.CodeAnalysis.CSharp" Version="3.3.1" />
5252
</ItemGroup>
53-
</Project>
53+
</Project>

build/python.props

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
<Project>
22
<ItemGroup>
3-
<PackageReference Include="Microsoft.Azure.Functions.PythonWorker" Version="3.1.2.3" />
3+
<PackageReference Include="Microsoft.Azure.Functions.PythonWorker" Version="3.1.2.4" />
44
</ItemGroup>
55
</Project>

release_notes.md

Lines changed: 1 addition & 14 deletions
Original file line numberDiff line numberDiff line change
@@ -2,17 +2,4 @@
22
<!-- Please add your release notes in the following format:
33
- My change description (#PR)
44
-->
5-
- Capture diagnostic events
6-
- Added a feature flag to opt out of the default behavior where the host sets the environment name to `Development` when running in debug mode. To disable the behavior, set the app setting: `AzureWebJobsFeatureFlags` to `DisableDevModeInDebug`
7-
- Reorder CORS and EasyAuth middleware to prevent EasyAuth from blocking CORS requests (#7315)
8-
- Updated PowerShell Worker (PS7) to [3.0.833](https://github.com/Azure/azure-functions-powershell-worker/releases/tag/v3.0.833)
9-
- Add IDistributedLockManager for Kubernetes environment (#7327)
10-
- Call EnableDrainModeAsync on ApplicationStopping (#7262)
11-
- Added Roslyn analyzer projects and avoid async void analyzer (#5612)
12-
- Updated Node Worker to [2.1.2](https://github.com/Azure/azure-functions-nodejs-worker/releases/tag/v2.1.2)
13-
- Updated Python Worker to [1.2.3](https://github.com/Azure/azure-functions-python-worker/releases/tag/1.2.3)
14-
15-
**Release sprint:** Sprint 100
16-
[ [bugs](https://github.com/Azure/azure-functions-host/issues?q=is%3Aissue+milestone%3A%22Functions+Sprint+100%22+label%3Abug+is%3Aclosed) | [features](https://github.com/Azure/azure-functions-host/issues?q=is%3Aissue+milestone%3A%22Functions+Sprint+100%22+label%3Afeature+is%3Aclosed) ]
17-
- Update App Service Authentication/Authorization on Linux Consumption from 1.4.0 to 1.4.5. Release notes for this feature captured at https://github.com/Azure/app-service-announcements/issues. (#7205)
18-
- Add v12 Storage-dependent implementations to Functions Host to support Managed Identity integration
5+
- Update Python Worker Version to [1.2.4](https://github.com/Azure/azure-functions-python-worker/releases/tag/1.2.4)

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -51,7 +51,7 @@
5151
<PackageReference Include="appinsights.testlogger" Version="1.0.0" />
5252
<PackageReference Include="FluentAssertions" Version="5.9.0" />
5353
<PackageReference Include="Microsoft.AspNetCore.TestHost" Version="3.1.0" />
54-
<PackageReference Include="Microsoft.Azure.Functions.PythonWorker" Version="3.1.2.3" />
54+
<PackageReference Include="Microsoft.Azure.Functions.PythonWorker" Version="3.1.2.4" />
5555
<PackageReference Include="Microsoft.NET.Test.Sdk" Version="15.8.0" />
5656
<PackageReference Include="Moq" Version="4.9.0" />
5757
<PackageReference Include="StyleCop.Analyzers" Version="1.1.0-beta004" />

0 commit comments

Comments
 (0)