All Versions
29
Latest Version
Avg Release Cycle
37 days
Latest Release
1262 days ago

Changelog History
Page 1

  • v9.3.0 Changes

    November 10, 2020

    🚀 Release notes

    ⬆️ Please read the upgrade guide if you are moving from 8.x to 9.x

    🔄 Changes in 9.3.0

    • 👌 Support for .NET 5 and ASP.NET Core 5
    • 👌 Improvements to LanguageManager's lazy loading of resources.
    • 🗄 Deprecate IStringSource and its implementors. Use delegates instead.
    • CustomizeValidatorAttribute now works in Razor pages (netcore 3.1 and net 5.0 only) (#1541)
    • RuleSetForClientSideMessagesAttribute now works in Razor pages (netcore 3.1 and net 5.0 only) (#1544)
    • 🛠 Fixes to Spanish translations.

    🔄 Changes in 9.2.2

    • 🛠 Fix one of the inheritance validator overloads not working correctly (#1528)

    🔄 Changes 9.2.1

    • ➕ Add non-generic extensibility point to inheritance validator
    • ⚡️ Updates to Persian translations (#1513)
    • ➕ Added Bengali translations (#1517)

    🔄 Changes in 9.2.0

    🔄 Changes in 9.1.3

    • 🛠 Fix an issue with IncludeRulesNotInRuleSet not working correctly (#1493)

    🔄 Changes in 9.1.2

    • 👉 Make the ValidationContext.ThrowOnFailures getter public.

    🔄 Changes in 9.1.1

    • ⚡️ Update incorrect wording in CascadeMode.StopOnFirstFailure deprecation warning.

    🔄 Changes in 9.1.0

    • ➕ Add new Validate extension methods that allow options to be configured using a strategy (#1467)
    • 🗄 Introduce CascadeMode.Stop and deprecate CascadeMode.StopOnFirstFailure to resolve confusion/abiguity about setting the cascade mode at validator-level (#1437)
    • 👻 RaiseValidationException can be overridden to customize the exception throwing process (#1162)
    • 👉 Make ruleset separator character splitting consistent (#1424)
    • Transform now works with RuleForEach (#1450)
    • Introduce constants for rulesets (#1435)
    • 🔀 Resolve issue when attempting to use asynchronous conditions in a synchornous validaiton run (#1438)
    • ➕ Added asynchronous versions of the TestHelper methods (#1423)

    Example of using the new validation strategy:

    // Validate specific rulesetsvalidator.Validate(instance, opt =\> { opt.IncludeRuleSets("MyRuleSet", "SomeOtherRuleSet"); // Can also force rules not in a ruleset to be runopt.IncludeRulesNotInRuleSet(); });// Validate specific propertiesvalidator.Validate(instance, opt =\> { opt.IncludeProperties("Forename", "Surname"); // oropt.IncludeProperties(x =\> x.Surname, x.Forename); });// Throw exceptions on failurevalidator.Validate(instance, opt =\> { opt.ThrowOnFailures(); });// Combine various optionsvalidator.Validate(instance, opt =\> { opt.IncludeRuleSets("MyRuleSet", "SomeOtherRuleSet").IncludeRulesNotInRuleSet(); opt.ThrowOnFailures(); });
    

    Downloads

    Binaries can be downloaded from nuget:

  • v9.2.2 Changes

    September 20, 2020

    🚀 Release notes

    ⬆️ Please read the upgrade guide if you are moving from 8.x to 9.x

    🔄 Changes in 9.2.1

    • 🛠 Fix one of the inheritance validator overloads not working correctly (#1528)

    🔄 Changes 9.2.1

    • ➕ Add non-generic extensibility point to inheritance validator
    • ⚡️ Updates to Persian translations (#1513)
    • ➕ Added Bengali translations (#1517)

    🔄 Changes in 9.2.0

    🔄 Changes in 9.1.3

    • 🛠 Fix an issue with IncludeRulesNotInRuleSet not working correctly (#1493)

    🔄 Changes in 9.1.2

    • 👉 Make the ValidationContext.ThrowOnFailures getter public.

    🔄 Changes in 9.1.1

    • ⚡️ Update incorrect wording in CascadeMode.StopOnFirstFailure deprecation warning.

    🔄 Changes in 9.1.0

    • ➕ Add new Validate extension methods that allow options to be configured using a strategy (#1467)
    • 🗄 Introduce CascadeMode.Stop and deprecate CascadeMode.StopOnFirstFailure to resolve confusion/abiguity about setting the cascade mode at validator-level (#1437)
    • 👻 RaiseValidationException can be overridden to customize the exception throwing process (#1162)
    • 👉 Make ruleset separator character splitting consistent (#1424)
    • Transform now works with RuleForEach (#1450)
    • Introduce constants for rulesets (#1435)
    • 🔀 Resolve issue when attempting to use asynchronous conditions in a synchornous validaiton run (#1438)
    • ➕ Added asynchronous versions of the TestHelper methods (#1423)

    Example of using the new validation strategy:

    // Validate specific rulesetsvalidator.Validate(instance, opt =\> { opt.IncludeRuleSets("MyRuleSet", "SomeOtherRuleSet"); // Can also force rules not in a ruleset to be runopt.IncludeRulesNotInRuleSet(); });// Validate specific propertiesvalidator.Validate(instance, opt =\> { opt.IncludeProperties("Forename", "Surname"); // oropt.IncludeProperties(x =\> x.Surname, x.Forename); });// Throw exceptions on failurevalidator.Validate(instance, opt =\> { opt.ThrowOnFailures(); });// Combine various optionsvalidator.Validate(instance, opt =\> { opt.IncludeRuleSets("MyRuleSet", "SomeOtherRuleSet").IncludeRulesNotInRuleSet(); opt.ThrowOnFailures(); });
    

    Downloads

    Binaries can be downloaded from nuget:

  • v9.2.1 Changes

    September 19, 2020

    🚀 Release notes

    ⬆️ Please read the upgrade guide if you are moving from 8.x to 9.x

    🔄 Changes 9.2.1

    • ➕ Add non-generic extensibility point to inheritance validator
    • ⚡️ Updates to Persian translations (#1513)
    • ➕ Added Bengali translations (#1517)

    🔄 Changes in 9.2.0

    🔄 Changes in 9.1.3

    • 🛠 Fix an issue with IncludeRulesNotInRuleSet not working correctly (#1493)

    🔄 Changes in 9.1.2

    • 👉 Make the ValidationContext.ThrowOnFailures getter public.

    🔄 Changes in 9.1.1

    • ⚡️ Update incorrect wording in CascadeMode.StopOnFirstFailure deprecation warning.

    🔄 Changes in 9.1.0

    • ➕ Add new Validate extension methods that allow options to be configured using a strategy (#1467)
    • 🗄 Introduce CascadeMode.Stop and deprecate CascadeMode.StopOnFirstFailure to resolve confusion/abiguity about setting the cascade mode at validator-level (#1437)
    • 👻 RaiseValidationException can be overridden to customize the exception throwing process (#1162)
    • 👉 Make ruleset separator character splitting consistent (#1424)
    • Transform now works with RuleForEach (#1450)
    • Introduce constants for rulesets (#1435)
    • 🔀 Resolve issue when attempting to use asynchronous conditions in a synchornous validaiton run (#1438)
    • ➕ Added asynchronous versions of the TestHelper methods (#1423)

    Example of using the new validation strategy:

    // Validate specific rulesetsvalidator.Validate(instance, opt =\> { opt.IncludeRuleSets("MyRuleSet", "SomeOtherRuleSet"); // Can also force rules not in a ruleset to be runopt.IncludeRulesNotInRuleSet(); });// Validate specific propertiesvalidator.Validate(instance, opt =\> { opt.IncludeProperties("Forename", "Surname"); // oropt.IncludeProperties(x =\> x.Surname, x.Forename); });// Throw exceptions on failurevalidator.Validate(instance, opt =\> { opt.ThrowOnFailures(); });// Combine various optionsvalidator.Validate(instance, opt =\> { opt.IncludeRuleSets("MyRuleSet", "SomeOtherRuleSet").IncludeRulesNotInRuleSet(); opt.ThrowOnFailures(); });
    

    Downloads

    Binaries can be downloaded from nuget:

  • v9.2.0 Changes

    August 26, 2020

    🚀 Release notes

    ⬆️ Please read the upgrade guide if you are moving from 8.x to 9.x

    🔄 Changes in 9.2.0

    🔄 Changes in 9.1.3

    • 🛠 Fix an issue with IncludeRulesNotInRuleSet not working correctly (#1493)

    🔄 Changes in 9.1.2

    • 👉 Make the ValidationContext.ThrowOnFailures getter public.

    🔄 Changes in 9.1.1

    • ⚡️ Update incorrect wording in CascadeMode.StopOnFirstFailure deprecation warning.

    🔄 Changes in 9.1.0

    • ➕ Add new Validate extension methods that allow options to be configured using a strategy (#1467)
    • 🗄 Introduce CascadeMode.Stop and deprecate CascadeMode.StopOnFirstFailure to resolve confusion/abiguity about setting the cascade mode at validator-level (#1437)
    • 👻 RaiseValidationException can be overridden to customize the exception throwing process (#1162)
    • 👉 Make ruleset separator character splitting consistent (#1424)
    • Transform now works with RuleForEach (#1450)
    • Introduce constants for rulesets (#1435)
    • 🔀 Resolve issue when attempting to use asynchronous conditions in a synchornous validaiton run (#1438)
    • ➕ Added asynchronous versions of the TestHelper methods (#1423)

    Example of using the new validation strategy:

    // Validate specific rulesetsvalidator.Validate(instance, opt =\> { opt.IncludeRuleSets("MyRuleSet", "SomeOtherRuleSet"); // Can also force rules not in a ruleset to be runopt.IncludeRulesNotInRuleSet(); });// Validate specific propertiesvalidator.Validate(instance, opt =\> { opt.IncludeProperties("Forename", "Surname"); // oropt.IncludeProperties(x =\> x.Surname, x.Forename); });// Throw exceptions on failurevalidator.Validate(instance, opt =\> { opt.ThrowOnFailures(); });// Combine various optionsvalidator.Validate(instance, opt =\> { opt.IncludeRuleSets("MyRuleSet", "SomeOtherRuleSet").IncludeRulesNotInRuleSet(); opt.ThrowOnFailures(); });
    

    Downloads

    Binaries can be downloaded from nuget:

  • v9.1.3 Changes

    August 19, 2020

    🚀 Release notes

    ⬆️ Please read the upgrade guide if you are moving from 8.x to 9.x

    🔄 Changes in 9.1.3

    • 🛠 Fix an issue with IncludeRulesNotInRuleSet not working correctly (#1493)

    🔄 Changes in 9.1.2

    • 👉 Make the ValidationContext.ThrowOnFailures getter public.

    🔄 Changes in 9.1.1

    • ⚡️ Update incorrect wording in CascadeMode.StopOnFirstFailure deprecation warning.

    🔄 Changes in 9.1.0

    • ➕ Add new Validate extension methods that allow options to be configured using a strategy (#1467)
    • 🗄 Introduce CascadeMode.Stop and deprecate CascadeMode.StopOnFirstFailure to resolve confusion/abiguity about setting the cascade mode at validator-level (#1437)
    • 👻 RaiseValidationException can be overridden to customize the exception throwing process (#1162)
    • 👉 Make ruleset separator character splitting consistent (#1424)
    • Transform now works with RuleForEach (#1450)
    • Introduce constants for rulesets (#1435)
    • 🔀 Resolve issue when attempting to use asynchronous conditions in a synchornous validaiton run (#1438)
    • ➕ Added asynchronous versions of the TestHelper methods (#1423)

    Example of using the new validation strategy:

    // Validate specific rulesetsvalidator.Validate(instance, opt =\> { opt.IncludeRuleSets("MyRuleSet", "SomeOtherRuleSet"); // Can also force rules not in a ruleset to be runopt.IncludeRulesNotInRuleSet(); });// Validate specific propertiesvalidator.Validate(instance, opt =\> { opt.IncludeProperties("Forename", "Surname"); // oropt.IncludeProperties(x =\> x.Surname, x.Forename); });// Throw exceptions on failurevalidator.Validate(instance, opt =\> { opt.ThrowOnFailures(); });// Combine various optionsvalidator.Validate(instance, opt =\> { opt.IncludeRuleSets("MyRuleSet", "SomeOtherRuleSet").IncludeRulesNotInRuleSet(); opt.ThrowOnFailures(); });
    

    Downloads

    Binaries can be downloaded from nuget:

  • v9.1.2 Changes

    August 12, 2020

    🚀 Release notes

    ⬆️ Please read the upgrade guide if you are moving from 8.x to 9.x

    🔄 Changes in 9.1.2

    • 👉 Make the ValidationContext.ThrowOnFailures getter public.

    🔄 Changes in 9.1.1

    • ⚡️ Update incorrect wording in CascadeMode.StopOnFirstFailure deprecation warning.

    🔄 Changes in 9.1.0

    • ➕ Add new Validate extension methods that allow options to be configured using a strategy (#1467)
    • 🗄 Introduce CascadeMode.Stop and deprecate CascadeMode.StopOnFirstFailure to resolve confusion/abiguity about setting the cascade mode at validator-level (#1437)
    • 👻 RaiseValidationException can be overridden to customize the exception throwing process (#1162)
    • 👉 Make ruleset separator character splitting consistent (#1424)
    • Transform now works with RuleForEach (#1450)
    • Introduce constants for rulesets (#1435)
    • 🔀 Resolve issue when attempting to use asynchronous conditions in a synchornous validaiton run (#1438)
    • ➕ Added asynchronous versions of the TestHelper methods (#1423)

    Example of using the new validation strategy:

    // Validate specific rulesetsvalidator.Validate(instance, opt =\> { opt.IncludeRuleSets("MyRuleSet", "SomeOtherRuleSet"); // Can also force rules not in a ruleset to be runopt.IncludeRulesNotInRuleSet(); });// Validate specific propertiesvalidator.Validate(instance, opt =\> { opt.IncludeProperties("Forename", "Surname"); // oropt.IncludeProperties(x =\> x.Surname, x.Forename); });// Throw exceptions on failurevalidator.Validate(instance, opt =\> { opt.ThrowOnFailures(); });// Combine various optionsvalidator.Validate(instance, opt =\> { opt.IncludeRuleSets("MyRuleSet", "SomeOtherRuleSet").IncludeRulesNotInRuleSet(); opt.ThrowOnFailures(); });
    

    Downloads

    Binaries can be downloaded from nuget:

  • v9.1.1 Changes

    August 08, 2020

    🚀 Release notes

    ⬆️ Please read the upgrade guide if you are moving from 8.x to 9.x

    🔄 Changes in 9.1.1

    • ⚡️ Update incorrect wording in CascadeMode.StopOnFirstFailure deprecation warning.

    🔄 Changes in 9.1.0

    • ➕ Add new Validate extension methods that allow options to be configured using a strategy (#1467)
    • 🗄 Introduce CascadeMode.Stop and deprecate CascadeMode.StopOnFirstFailure to resolve confusion/abiguity about setting the cascade mode at validator-level (#1437)
    • 👻 RaiseValidationException can be overridden to customize the exception throwing process (#1162)
    • 👉 Make ruleset separator character splitting consistent (#1424)
    • Transform now works with RuleForEach (#1450)
    • Introduce constants for rulesets (#1435)
    • 🔀 Resolve issue when attempting to use asynchronous conditions in a synchornous validaiton run (#1438)
    • ➕ Added asynchronous versions of the TestHelper methods (#1423)

    Example of using the new validation strategy:

    // Validate specific rulesetsvalidator.Validate(instance, opt =\> { opt.IncludeRuleSets("MyRuleSet", "SomeOtherRuleSet"); // Can also force rules not in a ruleset to be runopt.IncludeRulesNotInRuleSet(); });// Validate specific propertiesvalidator.Validate(instance, opt =\> { opt.IncludeProperties("Forename", "Surname"); // oropt.IncludeProperties(x =\> x.Surname, x.Forename); });// Throw exceptions on failurevalidator.Validate(instance, opt =\> { opt.ThrowOnFailures(); });// Combine various optionsvalidator.Validate(instance, opt =\> { opt.IncludeRuleSets("MyRuleSet", "SomeOtherRuleSet").IncludeRulesNotInRuleSet(); opt.ThrowOnFailures(); });
    

    Downloads

    Binaries can be downloaded from nuget:

  • v9.1.0 Changes

    August 08, 2020

    🚀 Release notes

    ⬆️ Please read the upgrade guide if you are moving from 8.x to 9.x

    🔄 Changes in 9.1.0

    • ➕ Add new Validate extension methods that allow options to be configured using a strategy (#1467)
    • 🗄 Introduce CascadeMode.Stop and deprecate CascadeMode.StopOnFirstFailure to resolve confusion/abiguity about setting the cascade mode at validator-level (#1437)
    • 👻 RaiseValidationException can be overridden to customize the exception throwing process (#1162)
    • 👉 Make ruleset separator character splitting consistent (#1424)
    • Transform now works with RuleForEach (#1450)
    • Introduce constants for rulesets (#1435)
    • 🔀 Resolve issue when attempting to use asynchronous conditions in a synchornous validaiton run (#1438)
    • ➕ Added asynchronous versions of the TestHelper methods (#1423)

    Example of using the new validation strategy:

    // Validate specific rulesetsvalidator.Validate(instance, opt =\> { opt.IncludeRuleSets("MyRuleSet", "SomeOtherRuleSet"); // Can also force rules not in a ruleset to be runopt.IncludeRulesNotInRuleSet(); });// Validate specific propertiesvalidator.Validate(instance, opt =\> { opt.IncludeProperties("Forename", "Surname"); // oropt.IncludeProperties(x =\> x.Surname, x.Forename); });// Throw exceptions on failurevalidator.Validate(instance, opt =\> { opt.ThrowOnFailures(); });// Combine various optionsvalidator.Validate(instance, opt =\> { opt.IncludeRuleSets("MyRuleSet", "SomeOtherRuleSet").IncludeRulesNotInRuleSet(); opt.ThrowOnFailures(); });
    

    Downloads

    Binaries can be downloaded from nuget:

  • v9.0.0 Changes

    July 06, 2020

    🚀 Release notes

    🚀 FluentValidation 9 is a major release and includes several breaking changes. Please read the upgrade guide for full details

    🔄 Changes in 9.0.0

    • ASP.NET core auto-validation can now be completely disabled while preserving clientside integration
    • Types can now be filtered/skipped when auto-registering with the container
    • 🔧 Service lifetime is now configurable when auto-registering with the container

    🔄 Changes in 9.0-preview5

    • ✂ Remove IValidator.Validate(object) overload to improve typesafety (use a context if you need to preserve this behaviour)
    • Replace non-generic ValidationContext class with IValidationContext interface
    • ChildValidatorAdaptor and IncludeRule now require a generic type parameter indicating the root type being validated
    • Expression accessors for comparison properties are now cached where possible
    • {ComparisonProperty} placeholder now passes through the same logic as the {PropertyName} placeholder for consistency

    🔄 Changes in 9.0-preview4

    • {CollectionIndex} placeholder can now be accessed in child validators
    • ➕ Additional ValidationException constructor that allows customising the default message.
    • ScalePrecisionValidator algorithm now more consistent with SQL server (#1356)
    • ➕ Add Icelandic translations of default messages (#1362)
    • ➕ Additional When predicate overload that takes a ValidationContext
    • 🛠 Fixes to range clientside validators when using datetimes (#1371)
    • ⬇️ Drop unsupported .NET Core versions from platform list

    🔄 Changes in 9.0-preview3

    • ASP.NET Core validator provider is now public
    • Ensure ASP.NET Core providers aren't registered twice
    • SoureLink integration
    • ➕ Additional overload of SetValidator that receives property value in callback
    • PropertyRule.ApplySharedCondition is now public
    • ✂ Remove lowercase placeholders from ScalePrecisionValidator

    🔄 Changes in 9.0-preview2

    • Transform can now be used to transform a property value to another type prior to validation occurring
    • ➕ Added WithMessageArgument to test helper extensions
    • ➕ Added Slovenian translations of default error messages.
    • 🛠 Fixes/better handling of the non-generic overloads of AbstractValidator.Validate
    • ✂ Removed the deprecated FluentValidation.Internal.Comparer
    • TrackingCollection has been marked as internal
    • ⚡️ Updated to latest version of Microsoft.NETFramework.ReferenceAssemblies for building net4x targets on non-windows platforms.

    🔄 Changes in 9.0-preview1

    • ✂ Removed support for netstandard1.1, netstandard1.6, net45 (Supported platforms are now netstandard2, net461, netcoreapp2.1, netcoreapp3.0, netcoreapp3.1)
    • ✂ Removed WithLocalizedMessage (WithMessage that takes a callback is the replacement)
    • ✂ Removed ResourceName from ValidationFailure
    • ✂ Removed ResourceName and ResourceType from IStringSource.
    • ✂ Removed SetCollectionValidator which was deprecated in 8.0
    • ➕ Additional overload of OnAnyFailure that can receive a collection of validation failures
    • ✂ Remove DisplayAttribute integration and reference to DataAnnotations.
    • 0️⃣ Default email validation mode now uses the same logic as ASP.NET Core. Previous regex behaviour is opt-in.
    • ComparisonProperty placeholder is now formatted like PropertyName.
    • ✅ TestHelper syntax improvements
    • 0️⃣ Equal/NotEqual now perform ordinal comparisons on string properties by default
    • Severity can be set with a callback
    • 🚚 PropertyValidator.ShouldValidateAsync reanamed to ShouldValidateAsynchronously to remove confusion where the naming suggested this was an async method
    • ✂ Removed various methods from MessageFormatter that were deprecated in 8.x
    • PropertyValidatorContext.Instance renamed to InstanceToValidate for consistency with ValidationContext.
    • ✂ Removed DelegatingValidator which was deprecated in 8.x.

    Downloads

    Binaries can be downloaded from nuget:

  • v9.0.0-preview5

    May 23, 2020