You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
This commit was created on GitHub.com and signed with GitHub’s verified signature.
The key has expired.
Updates for .NET 7.0.0 GA
Dropped prerelease suffix
Drops specific support for .NET Core 3.1 (out of support in December 2022)
Library includes targets for netstandard2.0 so can be installed in .NET Core 3.1 projects but I no longer test on .NET Core 3.1
Validation behavior now matches ASP.NET Core MVC Model Validation behavior WRT to recursive validation
Adds support for async validation for objects that implement new interface IAsyncValidatableObject
Adds support for validation attributes defined on parameters of record type primary constructors, e.g.: public record Todo(int Id, [Required] string Title)