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 CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,8 @@
# Changes in 7.0.4-beta.3
- Removed: Deprecated `FluentValidation.AspNetCore` package reference from test project (Issue #164)
- Replaced with `FluentValidation.DependencyInjectionExtensions` 12.0.0, the official non-deprecated successor
- Aligns test project with sample projects that already use `FluentValidation.DependencyInjectionExtensions`

# Changes in 7.0.4-beta.2
- Added: Support for keyed DI services (Issue #165)
- Validators registered via `AddKeyedScoped`, `AddKeyedTransient`, `AddKeyedSingleton` are now discovered automatically
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@

<ItemGroup>
<PackageReference Include="FluentAssertions" Version="8.2.0" />
<PackageReference Include="FluentValidation.AspNetCore" Version="11.3.1" />
<PackageReference Include="FluentValidation.DependencyInjectionExtensions" Version="12.0.0" />
<PackageReference Include="Microsoft.NET.Test.Sdk" Version="17.14.0" />
<PackageReference Include="xunit" Version="2.9.3" />
<PackageReference Include="xunit.runner.visualstudio" Version="3.1.0" PrivateAssets="all" />
Expand Down
2 changes: 1 addition & 1 deletion version.props
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
<Project>
<PropertyGroup>
<VersionPrefix>7.0.4</VersionPrefix>
<VersionSuffix>beta.2</VersionSuffix>
<VersionSuffix>beta.3</VersionSuffix>
</PropertyGroup>
</Project>
Loading