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
3 changes: 2 additions & 1 deletion .github/dependabot.yml
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,6 @@ updates:
- "*Test*"
- "Moq"
- "xunit*"
- "FluentAssertions"
# Critical: Don't update Lidarr-specific dependencies
ignore:
- dependency-name: "Newtonsoft.Json"
Expand All @@ -38,6 +37,8 @@ updates:
# Keep aligned with Lidarr's NLog version
- dependency-name: "FluentValidation"
versions: [">11.0.0"] # Match Lidarr's version
- dependency-name: "FluentAssertions"
versions: [">6.12.0"] # v7+ Apache 2.0, v8+ commercial license — stay on 6.12.0 (MIT)

# Monitor GitHub Actions
- package-ecosystem: "github-actions"
Expand Down
5 changes: 4 additions & 1 deletion Directory.Packages.props
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,10 @@
<PackageVersion Include="xunit.runner.visualstudio" Version="3.0.2" />
<PackageVersion Include="coverlet.collector" Version="6.0.4" />
<PackageVersion Include="Moq" Version="4.20.72" />
<!-- FluentAssertions pinned to 6.12.0 (MIT). 7.x+ requires commercial license. -->
<!-- FluentAssertions pinned to 6.12.0 (MIT, last free version).
v7.x = Apache 2.0 (free), v8.x+ = Xceed commercial license ($130/dev/year).
Decision: stay on 6.12.0 indefinitely — no license cost, API is stable.
See: https://www.infoq.com/news/2025/01/fluent-assertions-v8-license/ -->
<PackageVersion Include="FluentAssertions" Version="6.12.0" />
<PackageVersion Include="Bogus" Version="35.6.5" />
<!-- Build Tools -->
Expand Down
Loading