Skip to content
Merged
Show file tree
Hide file tree
Changes from all 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
5 changes: 5 additions & 0 deletions Directory.Packages.props
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,11 @@
GHSA-pgww-w46g-26qg. Pin the first patched 1.x release; Frontend.Tests.Unit references it
directly to force the fixed version into the graph. -->
<PackageVersion Include="AngleSharp" Version="1.5.2" />
<!-- Security override: OpenIddict.*.DataProtection 7.5.0 transitively pulls System.Security.Cryptography.Xml
10.0.7, which carries CVE-2026-50648 (GHSA-23rf-6693-g89p and four sibling advisories, all fixed in
10.0.10). Pin the patched release; the AuthSystem test projects reference it directly to force the fixed
version into the graph (the APIs get it from the shared framework, so only test graphs carry the package). -->
<PackageVersion Include="System.Security.Cryptography.Xml" Version="10.0.10" />
<PackageVersion Include="Microsoft.AspNetCore.Authentication.OpenIdConnect" Version="10.0.9" />
<PackageVersion Include="Microsoft.Extensions.Caching.Hybrid" Version="10.7.0" />
<PackageVersion Include="Microsoft.Extensions.Http.Resilience" Version="10.7.0" />
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,9 @@
<PackageReference Include="Microsoft.NET.Test.Sdk" />
<PackageReference Include="NSubstitute" />
<PackageReference Include="Shouldly" />
<!-- Direct pin forces the patched System.Security.Cryptography.Xml (CVE-2026-50648) over the vulnerable
10.0.7 pulled transitively by OpenIddict.*.DataProtection; version lives in Directory.Packages.props. -->
<PackageReference Include="System.Security.Cryptography.Xml" />
<PackageReference Include="Testcontainers" />
<PackageReference Include="Testcontainers.PostgreSql"/>
<PackageReference Include="xunit" />
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,9 @@
<PackageReference Include="Microsoft.NET.Test.Sdk" />
<PackageReference Include="NSubstitute" />
<PackageReference Include="Shouldly" />
<!-- Direct pin forces the patched System.Security.Cryptography.Xml (CVE-2026-50648) over the vulnerable
10.0.7 pulled transitively by OpenIddict.*.DataProtection; version lives in Directory.Packages.props. -->
<PackageReference Include="System.Security.Cryptography.Xml" />
<PackageReference Include="xunit" />
<PackageReference Include="xunit.runner.visualstudio">
<PrivateAssets>all</PrivateAssets>
Expand Down