Skip to content

Commit 2f2e7df

Browse files
committed
Pin FluentAssertions to 7.x as the license changes in 8.x
See #270 (comment)
1 parent 3a710a2 commit 2f2e7df

File tree

4 files changed

+18
-0
lines changed

4 files changed

+18
-0
lines changed

.github/dependabot.yml

+6
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,12 @@ updates:
55
schedule:
66
interval: daily
77
open-pull-requests-limit: 10
8+
ignore:
9+
# Do not upgrade FluentAssertions beyond 7.x, as the license changes in v8.
10+
# See https://github.com/JoshKeegan/xRetry/pull/270#issuecomment-2614457485
11+
- dependency-name: "FluentAssertions"
12+
update-types:
13+
- major
814
- package-ecosystem: "github-actions"
915
directory: "/"
1016
schedule:

test/UnitTests.Reqnroll/UnitTests.Reqnroll.csproj

+4
Original file line numberDiff line numberDiff line change
@@ -17,6 +17,10 @@
1717

1818
<ItemGroup>
1919
<PackageReference Include="AutoFixture" Version="4.18.1" />
20+
<!--
21+
Do not upgrade FluentAssertions beyond 7.x, as the license changes in v8.
22+
See https://github.com/JoshKeegan/xRetry/pull/270#issuecomment-2614457485
23+
-->
2024
<PackageReference Include="FluentAssertions" Version="7.0.0" />
2125
<PackageReference Include="Microsoft.NET.Test.Sdk" Version="17.12.0" />
2226
<PackageReference Include="Reqnroll.xUnit" Version="2.2.1" />

test/UnitTests.SpecFlow/UnitTests.SpecFlow.csproj

+4
Original file line numberDiff line numberDiff line change
@@ -18,6 +18,10 @@
1818

1919
<ItemGroup>
2020
<PackageReference Include="AutoFixture" Version="4.18.1" />
21+
<!--
22+
Do not upgrade FluentAssertions beyond 7.x, as the license changes in v8.
23+
See https://github.com/JoshKeegan/xRetry/pull/270#issuecomment-2614457485
24+
-->
2125
<PackageReference Include="FluentAssertions" Version="7.0.0" />
2226
<PackageReference Include="Microsoft.NET.Test.Sdk" Version="17.12.0" />
2327
<PackageReference Include="SpecFlow.xUnit" Version="3.9.74" />

test/UnitTests/UnitTests.csproj

+4
Original file line numberDiff line numberDiff line change
@@ -18,6 +18,10 @@
1818

1919
<ItemGroup>
2020
<PackageReference Include="AutoFixture" Version="4.18.1" />
21+
<!--
22+
Do not upgrade FluentAssertions beyond 7.x, as the license changes in v8.
23+
See https://github.com/JoshKeegan/xRetry/pull/270#issuecomment-2614457485
24+
-->
2125
<PackageReference Include="FluentAssertions" Version="7.0.0" />
2226
<PackageReference Include="Microsoft.NET.Test.Sdk" Version="17.12.0" />
2327
<PackageReference Include="xunit" Version="2.9.3" />

0 commit comments

Comments
 (0)