Skip to content

Commit d6f1fa3

Browse files
committed
updating version to be latest
1 parent 5e06646 commit d6f1fa3

File tree

2 files changed

+10
-11
lines changed

2 files changed

+10
-11
lines changed

src/Azure.Functions.Cli/Azure.Functions.Cli.csproj

+9-10
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
<Project Sdk="Microsoft.NET.Sdk" InitialTargets="ExcludeWorkersFromReadyToRun">
1+
<Project Sdk="Microsoft.NET.Sdk" InitialTargets="ExcludeWorkersFromReadyToRun">
22
<PropertyGroup>
33
<OutputType>Exe</OutputType>
44
<TargetFrameworks>net6.0;net8.0</TargetFrameworks>
@@ -66,9 +66,9 @@
6666
<EmbeddedResource Include="StaticResources\Dockerfile.dotnet8Isolated">
6767
<LogicalName>$(AssemblyName).Dockerfile.dotnet8Isolated</LogicalName>
6868
</EmbeddedResource>
69-
<EmbeddedResource Include="StaticResources\Dockerfile.dotnet9Isolated">
69+
<EmbeddedResource Include="StaticResources\Dockerfile.dotnet9Isolated">
7070
<LogicalName>$(AssemblyName).Dockerfile.dotnet9Isolated</LogicalName>
71-
</EmbeddedResource>
71+
</EmbeddedResource>
7272
<EmbeddedResource Include="StaticResources\ExtensionsProj.csproj.template">
7373
<LogicalName>$(AssemblyName).ExtensionsProj.csproj</LogicalName>
7474
</EmbeddedResource>
@@ -287,15 +287,14 @@
287287
<PackageReference Include="Microsoft.ApplicationInsights" Version="2.22.0" />
288288
<PackageReference Include="Microsoft.AspNetCore.DataProtection" Version="2.2.0" />
289289
<PackageReference Include="Microsoft.Azure.DurableTask.AzureStorage.Internal" Version="1.4.0" />
290-
<PackageReference Include="Microsoft.Azure.WebJobs.Script.WebHost" Version="4.35.4" />
290+
<PackageReference Include="Microsoft.Azure.WebJobs.Script.WebHost" Version="4.37.0" />
291291
<PackageReference Include="Microsoft.Build" Version="17.0.0" />
292292
<PackageReference Include="Microsoft.Identity.Client" Version="4.61.3" />
293293
<PackageReference Include="Newtonsoft.Json" Version="13.0.3" />
294294
<PackageReference Include="NuGet.Packaging" Version="5.11.6" />
295295
<PackageReference Include="System.Formats.Asn1" Version="6.0.1" />
296296
<PackageReference Include="WindowsAzure.Storage" Version="9.3.1" />
297297
<PackageReference Include="YamlDotNet" Version="6.0.0" />
298-
299298
<!-- Transitive dependency -->
300299
<PackageReference Include="System.Text.Json" Version="8.0.5" />
301300
</ItemGroup>
@@ -307,12 +306,12 @@
307306
<PackageReference Include="System.Text.Json" Version="8.0.5" />
308307
</ItemGroup>
309308
<ItemGroup Condition="'$(NoWorkers)' != 'true'">
310-
<PackageReference Include="Microsoft.Azure.Functions.JavaWorker" Version="2.14.0" />
311-
<PackageReference Include="Microsoft.Azure.Functions.NodeJsWorker" Version="3.10.0" />
309+
<PackageReference Include="Microsoft.Azure.Functions.JavaWorker" Version="2.17.0" />
310+
<PackageReference Include="Microsoft.Azure.Functions.NodeJsWorker" Version="3.10.1" />
312311
<PackageReference Include="Microsoft.Azure.Functions.PowerShellWorker.PS7.0" Version="4.0.3148" />
313-
<PackageReference Include="Microsoft.Azure.Functions.PowerShellWorker.PS7.2" Version="4.0.3220" />
314-
<PackageReference Include="Microsoft.Azure.Functions.PowerShellWorker.PS7.4" Version="4.0.3219" />
315-
<PackageReference Include="Microsoft.Azure.Functions.PythonWorker" Version="4.29.0" />
312+
<PackageReference Include="Microsoft.Azure.Functions.PowerShellWorker.PS7.2" Version="4.0.4025" />
313+
<PackageReference Include="Microsoft.Azure.Functions.PowerShellWorker.PS7.4" Version="4.0.4026" />
314+
<PackageReference Include="Microsoft.Azure.Functions.PythonWorker" Version="4.34.0" />
316315
</ItemGroup>
317316
<Target Name="ExcludeWorkersFromReadyToRun">
318317
<CreateItem Include="%(None.Filename)%(None.Extension)" Condition="$([System.String]::new('%(None.TargetPath)').StartsWith('workers'))" PreserveExistingMetadata="false">

validateWorkerVersions.ps1

+1-1
Original file line numberDiff line numberDiff line change
@@ -59,7 +59,7 @@ if (-Not $hostVersion) {
5959

6060
function getHostFileContent([string]$filePath) {
6161
$uri = "https://raw.githubusercontent.com/Azure/azure-functions-host/v$hostVersion/$filePath"
62-
return removeBomIfExists((Invoke-WebRequest -Uri $uri -MaximumRetryCount 5 -RetryIntervalSec 2).Content)
62+
return removeBomIfExists((Invoke-WebRequest -Uri $uri).Content)
6363
}
6464
$hostCsprojContent = getHostFileContent "src/WebJobs.Script/WebJobs.Script.csproj"
6565
$pythonPropsContent = getHostFileContent "build/python.props"

0 commit comments

Comments
 (0)