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
6 changes: 6 additions & 0 deletions .github/dependabot.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,12 @@ updates:
commit-message:
prefix: chore
include: scope
ignore:
# FluentAssertions v8+ is governed by the Xceed Commercial license and
# requires a paid subscription for commercial use. This repo migrated to
# AwesomeAssertions (Apache 2.0 community fork). Any future Dependabot PR
# that tries to re-add FluentAssertions must be rejected.
- dependency-name: "FluentAssertions"
groups:
ef-core:
patterns:
Expand Down
11 changes: 10 additions & 1 deletion tests/ExpertiseApi.Tests/ExpertiseApi.Tests.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,16 @@
<PackageReference Include="Microsoft.Extensions.Diagnostics.Testing" Version="10.5.0" />
<PackageReference Include="Testcontainers.PostgreSql" Version="4.*" />
<PackageReference Include="NSubstitute" Version="5.*" />
<PackageReference Include="FluentAssertions" Version="8.*" />
<!--
AwesomeAssertions is the community Apache 2.0 fork of FluentAssertions v7.
Pinning at the 8.x line preserves the FluentAssertions namespace verbatim,
so existing `using FluentAssertions;` statements continue to compile with
zero source changes. v9 renamed the namespace to AwesomeAssertions; defer
that sweep to a follow-up PR. Dependabot has an explicit ignore rule for
the original FluentAssertions package (which is now Xceed-commercial v8+)
so it cannot re-land here.
-->
<PackageReference Include="AwesomeAssertions" Version="8.*" />
<PackageReference Include="xunit" Version="2.9.*" />
<PackageReference Include="xunit.runner.visualstudio" Version="3.1.*">
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
Expand Down
Loading