Skip to content

Commit e53cc64

Browse files
authored
Bump version to 4.8.0 with host version 4.1046.100 (#4803)
1 parent efab3d5 commit e53cc64

4 files changed

Lines changed: 11 additions & 7 deletions

File tree

eng/build/Packages.props

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -17,10 +17,10 @@
1717
<PackageVersion Include="Azure.Identity" Version="1.14.2" />
1818
<PackageVersion Include="Azure.Security.KeyVault.Secrets" Version="4.7.0" />
1919
<PackageVersion Include="AccentedCommandLineParser" Version="2.0.0" />
20-
<PackageVersion Include="Microsoft.ApplicationInsights" Version="2.22.0" />
20+
<PackageVersion Include="Microsoft.ApplicationInsights" Version="2.23.0" />
2121
<PackageVersion Include="Microsoft.AspNetCore.DataProtection" Version="2.2.0" />
2222
<PackageVersion Include="Microsoft.Azure.DurableTask.AzureStorage.Internal" Version="1.4.0" />
23-
<PackageVersion Include="Microsoft.Azure.WebJobs.Script.WebHost" Version="4.1045.200" />
23+
<PackageVersion Include="Microsoft.Azure.WebJobs.Script.WebHost" Version="4.1046.100" />
2424
<PackageVersion Include="Microsoft.Build" Version="17.0.0" />
2525
<PackageVersion Include="Microsoft.Identity.Client" Version="4.73.1" />
2626
<PackageVersion Include="NuGet.Packaging" Version="5.11.6" />
@@ -36,7 +36,7 @@
3636
<PackageVersion Include="Microsoft.Azure.Functions.PowerShellWorker.PS7.0" Version="4.0.3148" />
3737
<PackageVersion Include="Microsoft.Azure.Functions.PowerShellWorker.PS7.2" Version="4.0.4025" />
3838
<PackageVersion Include="Microsoft.Azure.Functions.PowerShellWorker.PS7.4" Version="4.0.4581" />
39-
<PackageVersion Include="Microsoft.Azure.Functions.PythonWorker" Version="4.40.2" />
39+
<PackageVersion Include="Microsoft.Azure.Functions.PythonWorker" Version="4.41.2" />
4040
</ItemGroup>
4141
<!-- host -->
4242
<ItemGroup>
@@ -45,7 +45,7 @@
4545
<!-- test projects -->
4646
<ItemGroup>
4747
<PackageVersion Include="Azure.Data.Tables" Version="12.9.0" />
48-
<PackageVersion Include="Azure.Storage.Blobs" Version="12.21.2" />
48+
<PackageVersion Include="Azure.Storage.Blobs" Version="12.22.1" />
4949
<PackageVersion Include="Azure.Storage.Queues" Version="12.19.1" />
5050
<PackageVersion Include="FluentAssertions" Version="5.2.0" />
5151
<PackageVersion Include="Microsoft.NET.Test.Sdk" Version="15.6.2" />

eng/scripts/validate-worker-versions.ps1

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -41,6 +41,10 @@ function getPackageVersion([string]$packageName, [xml]$propsXml, [bool]$isPackag
4141

4242
$node = Select-Xml -Xml $propsXml -XPath $xpath | Select-Object -ExpandProperty Node
4343
if ($node) {
44+
# Host repo changed from Version to VersionOverride; support both
45+
if ($node.VersionOverride) {
46+
return $node.VersionOverride
47+
}
4448
return $node.Version
4549
} else {
4650
throw "Failed to find version for package $packageName in Packages.props"

release_notes.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
1-
# Azure Functions CLI 4.7.0
1+
# Azure Functions CLI 4.8.0
22

33
#### Host Version
44

5-
- Host Runtime Version: 4.1045.200
5+
- Host Runtime Version: 4.1046.100
66
- In-Proc CLI:
77
- CLI Version: 4.3.0
88
- Host Runtime Version: 4.44.100 (includes 4.844.100, 4.644.100)

src/Cli/func/Directory.Version.props

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
<Project>
22

33
<PropertyGroup>
4-
<VersionPrefix>4.7.0</VersionPrefix>
4+
<VersionPrefix>4.8.0</VersionPrefix>
55
<VersionSuffix></VersionSuffix>
66
<UpdateBuildNumber>true</UpdateBuildNumber>
77
</PropertyGroup>

0 commit comments

Comments
 (0)