Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update System.Text.Encodings.Web version 4.5.1 #234

Merged
merged 4 commits into from
Nov 26, 2021
Merged
Show file tree
Hide file tree
Changes from 3 commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,13 @@
<ItemGroup>
<PackageReference Include="Microsoft.Azure.Kusto.Ingest" Version="8.1.3" />
<PackageReference Include="Microsoft.NET.Sdk.Functions" Version="3.0.9" />

<!-- This package has vulnerabilities below version 4.5.1.
We do not need to directly reference this package, but it is one of the dependencies of Microsoft.NET.Sdk.Functions.
Latest version of Microsoft.NET.Sdk.Functions package today is 4.0.1,
which depends on version 4.5.0 of System.Text.Encodings.Web (a version that is known to have vulnerabilities).
To force the project to use 4.5.1 instead of 4.5.0, we need to add this package reference explicitly. -->
<PackageReference Include="System.Text.Encodings.Web" Version="4.5.1" />
bekir-ozturk marked this conversation as resolved.
Show resolved Hide resolved
</ItemGroup>

</Project>
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,13 @@
<PackageReference Include="Microsoft.AspNetCore.AzureKeyVault.HostingStartup" Version="2.0.4" />
<PackageReference Include="Microsoft.Azure.WebJobs.Extensions.Storage" Version="3.0.10" />
<PackageReference Include="Microsoft.NET.Sdk.Functions" Version="3.0.9" />

<!-- This package has vulnerabilities below version 4.5.1.
We do not need to directly reference this package, but it is one of the dependencies of Microsoft.NET.Sdk.Functions.
Latest version of Microsoft.NET.Sdk.Functions package today is 4.0.1,
which depends on version 4.5.0 of System.Text.Encodings.Web (a version that is known to have vulnerabilities).
To force the project to use 4.5.1 instead of 4.5.0, we need to add this package reference explicitly. -->
<PackageReference Include="System.Text.Encodings.Web" Version="4.5.1" />
bekir-ozturk marked this conversation as resolved.
Show resolved Hide resolved
</ItemGroup>
<ItemGroup>
<None Update="host.json">
Expand All @@ -21,4 +28,4 @@
<ItemGroup>
<ProjectReference Include="..\MonitoringFunctions.Common\MonitoringFunctions.Common.csproj" />
</ItemGroup>
</Project>
</Project>
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,13 @@
<PackageReference Include="Microsoft.Azure.WebJobs.Extensions.Storage" Version="4.0.2" />
<PackageReference Include="Microsoft.NET.Sdk.Functions" Version="3.0.9" />
<PackageReference Include="Microsoft.TeamFoundationServer.Client" Version="16.153.0" />

<!-- This package has vulnerabilities below version 4.5.1.
We do not need to directly reference this package, but it is one of the dependencies of Microsoft.NET.Sdk.Functions.
Latest version of Microsoft.NET.Sdk.Functions package today is 4.0.1,
which depends on version 4.5.0 of System.Text.Encodings.Web (a version that is known to have vulnerabilities).
To force the project to use 4.5.1 instead of 4.5.0, we need to add this package reference explicitly. -->
<PackageReference Include="System.Text.Encodings.Web" Version="4.5.1" />
bekir-ozturk marked this conversation as resolved.
Show resolved Hide resolved
</ItemGroup>
<ItemGroup>
<ProjectReference Include="..\MonitoringFunctions.Common\MonitoringFunctions.Common.csproj" />
Expand All @@ -29,4 +36,4 @@
<CopyToPublishDirectory>Never</CopyToPublishDirectory>
</None>
</ItemGroup>
</Project>
</Project>