File tree Expand file tree Collapse file tree 2 files changed +9
-0
lines changed
src/OpenTelemetry.Instrumentation.AspNetCore Expand file tree Collapse file tree 2 files changed +9
-0
lines changed Original file line number Diff line number Diff line change 22
33## Unreleased
44
5+ * Added direct reference to ` System.Text.Encodings.Web ` with minimum version of
6+ ` 4.7.2 ` due to [ CVE-2021 -26701] ( https://github.com/dotnet/runtime/issues/49377 ) .
7+ This impacts target frameworks ` netstandard2.0 ` and ` netstandard2.1 ` which has a
8+ reference to ` Microsoft.AspNetCore.Http.Abstractions ` that depends on
9+ ` System.Text.Encodings.Web ` >= 4.5.0.
10+ ([ #4399 ] ( https://github.com/open-telemetry/opentelemetry-dotnet/pull/4399 ) )
11+
512* Improve perf by avoiding boxing of common status codes values.
613 ([ #4360 ] ( https://github.com/open-telemetry/opentelemetry-dotnet/pull/4360 ) ,
714 [ #4363 ] ( https://github.com/open-telemetry/opentelemetry-dotnet/pull/4363 ) )
Original file line number Diff line number Diff line change 2121 </ItemGroup >
2222
2323 <ItemGroup Condition =" '$(TargetFramework)' == 'netstandard2.0'" >
24+ <PackageReference Include =" System.Text.Encodings.Web" Version =" $(SystemTextEncodingsWebPkgVer)" />
2425 <PackageReference Include =" Microsoft.AspNetCore.Http.Abstractions" Version =" $(MicrosoftAspNetCoreHttpAbstractionsPkgVer)" />
2526 <PackageReference Include =" Microsoft.AspNetCore.Http.Features" Version =" $(MicrosoftAspNetCoreHttpFeaturesPkgVer)" />
2627 </ItemGroup >
2728
2829 <ItemGroup Condition =" '$(TargetFramework)' == 'netstandard2.1'" >
30+ <PackageReference Include =" System.Text.Encodings.Web" Version =" $(SystemTextEncodingsWebPkgVer)" />
2931 <PackageReference Include =" Microsoft.AspNetCore.Http.Abstractions" Version =" $(MicrosoftAspNetCoreHttpAbstractionsPkgVer)" />
3032 <PackageReference Include =" Microsoft.AspNetCore.Http.Features" Version =" $(MicrosoftAspNetCoreHttpFeaturesPkgVer)" />
3133 </ItemGroup >
You can’t perform that action at this time.
0 commit comments