Skip to content

Commit

Permalink
Update functions packages (#5239) (#5312)
Browse files Browse the repository at this point in the history
Microsoft.NET.Sdk.Functions Uses an webjobs extension for http which has an older version of Microsoft.AspNetCore.Http and System.Text.Encodings.Web. Needed to update those packages to use 2.1.22 and 4.5.1 respectively to fix security warning.
  • Loading branch information
ancaantochi authored Aug 11, 2021
1 parent 91abe15 commit 58cfa2b
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@

<ItemGroup>
<PackageReference Include="Microsoft.Azure.Devices.Client" Version="1.28.0" />
<PackageReference Include="Microsoft.Azure.WebJobs" Version="3.0.4" />
<PackageReference Include="Microsoft.Azure.WebJobs" Version="3.0.27" />
</ItemGroup>

<ItemGroup>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -19,12 +19,14 @@
</ItemGroup>

<ItemGroup>
<PackageReference Include="Microsoft.NET.Sdk.Functions" Version="3.0.9" />
<PackageReference Include="Microsoft.AspNetCore.Http" Version="2.1.22" />
<PackageReference Include="Microsoft.NET.Sdk.Functions" Version="3.0.13" />
<PackageReference Include="Newtonsoft.Json" Version="12.0.3" />
</ItemGroup>

<ItemGroup>
<PackageReference Include="Microsoft.Extensions.Logging.Console" Version="3.1.3" />
<PackageReference Include="System.Text.Encodings.Web" Version="4.5.1" />
</ItemGroup>
<ItemGroup>
<ProjectReference Include="..\..\binding\src\Microsoft.Azure.WebJobs.Extensions.EdgeHub\Microsoft.Azure.WebJobs.Extensions.EdgeHub.csproj" />
Expand Down

0 comments on commit 58cfa2b

Please sign in to comment.