FluentValidation 7.6.105

A validation library for .NET that uses a fluent interface to construct strongly-typed validation rules.

Showing the top 20 packages that depend on FluentValidation.

Packages Downloads
Ocelot
Ocelot is an API Gateway. The project is aimed at people using .NET running a micro services / service orientated architecture that need a unified point of entry into their system. In particular I want easy integration with IdentityServer reference and bearer tokens. reference tokens. Ocelot is a bunch of middlewares in a specific order. Ocelot manipulates the HttpRequest object into a state specified by its configuration until it reaches a request builder middleware where it creates a HttpRequestMessage object which is used to make a request to a downstream service. The middleware that makes the request is the last thing in the Ocelot pipeline. It does not call the next middleware. The response from the downstream service is stored in a per request scoped repository and retrived as the requests goes back up the Ocelot pipeline. There is a piece of middleware that maps the HttpResponseMessage onto the HttpResponse object and that is returned to the client. That is basically it with a bunch of other features.
31
Ocelot
Ocelot is an API Gateway. The project is aimed at people using .NET running a micro services / service orientated architecture that need a unified point of entry into their system. In particular I want easy integration with IdentityServer reference and bearer tokens. reference tokens. Ocelot is a bunch of middlewares in a specific order. Ocelot manipulates the HttpRequest object into a state specified by its configuration until it reaches a request builder middleware where it creates a HttpRequestMessage object which is used to make a request to a downstream service. The middleware that makes the request is the last thing in the Ocelot pipeline. It does not call the next middleware. The response from the downstream service is stored in a per request scoped repository and retrived as the requests goes back up the Ocelot pipeline. There is a piece of middleware that maps the HttpResponseMessage onto the HttpResponse object and that is returned to the client. That is basically it with a bunch of other features.
32
Ocelot
Ocelot is an API Gateway. The project is aimed at people using .NET running a micro services / service orientated architecture that need a unified point of entry into their system. In particular I want easy integration with IdentityServer reference and bearer tokens. reference tokens. Ocelot is a bunch of middlewares in a specific order. Ocelot manipulates the HttpRequest object into a state specified by its configuration until it reaches a request builder middleware where it creates a HttpRequestMessage object which is used to make a request to a downstream service. The middleware that makes the request is the last thing in the Ocelot pipeline. It does not call the next middleware. The response from the downstream service is stored in a per request scoped repository and retrived as the requests goes back up the Ocelot pipeline. There is a piece of middleware that maps the HttpResponseMessage onto the HttpResponse object and that is returned to the client. That is basically it with a bunch of other features.
33
Ocelot
Ocelot is an API Gateway. The project is aimed at people using .NET running a micro services / service orientated architecture that need a unified point of entry into their system. In particular I want easy integration with IdentityServer reference and bearer tokens. reference tokens. Ocelot is a bunch of middlewares in a specific order. Ocelot manipulates the HttpRequest object into a state specified by its configuration until it reaches a request builder middleware where it creates a HttpRequestMessage object which is used to make a request to a downstream service. The middleware that makes the request is the last thing in the Ocelot pipeline. It does not call the next middleware. The response from the downstream service is stored in a per request scoped repository and retrived as the requests goes back up the Ocelot pipeline. There is a piece of middleware that maps the HttpResponseMessage onto the HttpResponse object and that is returned to the client. That is basically it with a bunch of other features.
34
Ocelot
This project is aimed at people using .NET running a micro services / service orientated architecture that need a unified point of entry into their system. In particular I want easy integration with IdentityServer reference and bearer tokens. We have been unable to find this in my current workplace without having to write our own Javascript middlewares to handle the IdentityServer reference tokens. We would rather use the IdentityServer code that already exists to do this. Ocelot is a bunch of middlewares in a specific order. Ocelot manipulates the HttpRequest object into a state specified by its configuration until it reaches a request builder middleware where it creates a HttpRequestMessage object which is used to make a request to a downstream service. The middleware that makes the request is the last thing in the Ocelot pipeline. It does not call the next middleware. The response from the downstream service is stored in a per request scoped repository and retrived as the requests goes back up the Ocelot pipeline. There is a piece of middleware that maps the HttpResponseMessage onto the HttpResponse object and that is returned to the client. That is basically it with a bunch of other features.
31
Ocelot
This project is aimed at people using .NET running a micro services / service orientated architecture that need a unified point of entry into their system. In particular I want easy integration with IdentityServer reference and bearer tokens. We have been unable to find this in my current workplace without having to write our own Javascript middlewares to handle the IdentityServer reference tokens. We would rather use the IdentityServer code that already exists to do this. Ocelot is a bunch of middlewares in a specific order. Ocelot manipulates the HttpRequest object into a state specified by its configuration until it reaches a request builder middleware where it creates a HttpRequestMessage object which is used to make a request to a downstream service. The middleware that makes the request is the last thing in the Ocelot pipeline. It does not call the next middleware. The response from the downstream service is stored in a per request scoped repository and retrived as the requests goes back up the Ocelot pipeline. There is a piece of middleware that maps the HttpResponseMessage onto the HttpResponse object and that is returned to the client. That is basically it with a bunch of other features.
32
Ocelot
This project is aimed at people using .NET running a micro services / service orientated architecture that need a unified point of entry into their system. In particular I want easy integration with IdentityServer reference and bearer tokens. We have been unable to find this in my current workplace without having to write our own Javascript middlewares to handle the IdentityServer reference tokens. We would rather use the IdentityServer code that already exists to do this. Ocelot is a bunch of middlewares in a specific order. Ocelot manipulates the HttpRequest object into a state specified by its configuration until it reaches a request builder middleware where it creates a HttpRequestMessage object which is used to make a request to a downstream service. The middleware that makes the request is the last thing in the Ocelot pipeline. It does not call the next middleware. The response from the downstream service is stored in a per request scoped repository and retrived as the requests goes back up the Ocelot pipeline. There is a piece of middleware that maps the HttpResponseMessage onto the HttpResponse object and that is returned to the client. That is basically it with a bunch of other features.
33

Changes in 7.6.104: * Added AbstractValidator.PreValidate to allow immediate cancellation of validation. Changes in 7.6.103: * Using [BindProperty] in AspNetCore now works when implicit child validation is disabled. * ShouldHaveChildValidator now works when the child validator is inside a DependentRules block. * Test helpers are now compatible with custom property name resolvers set using ValidatorOptions.PropertyNameResolver. * Switched to embedded debug symbols. Changes in 7.6.102: * Fixed a regression where calling ValidateAsync with RuleForEach would no longer execute tasks sequentially (#799). Changes in 7.6.101: * Added support for RuleForEach to the testing extensions (#238). * Fixed a regression where calling ValidateAsync with RuleForEach could cause a deadlock (#799). * Added ToString overrides on ValidationResult to generate a string representation of all errors (#778). * Updated logos thanks to Dylan Beattie (#780). Changes in 7.6.100: * Resolved an issue where ValidateAsync was called on child validators when the root validator was invoked synchronously. Changes in 7.6: * WhenAsync now works correctly when calling the non-async Validate method. * ASP.NET Core integration has been updated to ASP.NET Core 2.1. * Include statement now works when explicitly selecting properties to validate. * Added Ukranian language support. * Added Arabic language support. * Added caching when instantiating validators to obtain clientside metadata. Full release notes can be found at https://github.com/JeremySkinner/FluentValidation/blob/master/Changelog.txt

Version Downloads Last updated
12.1.1 16 12/05/2025
12.1.0 21 11/04/2025
12.0.0 27 05/16/2025
12.0.0-preview1 23 01/18/2025
11.12.0 19 11/04/2025
11.11.0 35 01/19/2025
11.10.0 36 01/18/2025
11.9.2 36 01/31/2025
11.9.1 28 01/18/2025
11.9.0 35 01/04/2024
11.8.1 27 12/03/2023
11.8.0 31 12/30/2023
11.7.1 31 12/30/2023
11.7.0 34 01/20/2024
11.6.0 26 03/01/2024
11.5.2 30 01/13/2024
11.5.1 26 02/08/2024
11.5.0 35 03/02/2024
11.4.0 32 03/12/2024
11.3.0 30 03/01/2024
11.2.2 37 01/19/2024
11.2.1 29 02/08/2024
11.2.0 37 12/26/2023
11.1.1 29 03/02/2024
11.1.0 25 03/01/2024
11.0.3 42 02/08/2024
11.0.2 32 01/23/2024
11.0.1 31 01/24/2024
11.0.0 34 03/01/2024
10.4.0 31 01/19/2024
10.3.6 33 08/18/2023
10.3.5 31 03/01/2024
10.3.4 31 12/18/2023
10.3.3 36 01/07/2024
10.3.1 27 03/02/2024
10.3.0 31 03/01/2024
10.2.3 26 03/01/2024
10.2.2 30 12/11/2023
10.2.1 28 01/18/2024
10.2.0 30 03/25/2024
10.1.0 32 01/05/2024
10.0.4 35 01/08/2024
9.5.4 31 03/02/2024
9.5.3 31 12/30/2023
9.5.2 34 12/23/2023
9.5.1 31 01/23/2024
9.5.0 35 03/02/2024
9.4.0 30 01/13/2024
9.3.0 33 03/01/2024
9.3.0-preview3 27 03/12/2024
9.3.0-preview2 25 03/01/2024
9.3.0-preview1 34 03/13/2024
9.2.2 28 02/08/2024
9.2.1 28 01/19/2024
9.2.0 34 03/02/2024
9.1.3 31 01/07/2024
9.1.2 25 01/12/2024
9.1.1 25 03/02/2024
9.1.0 38 12/18/2023
9.0.1 36 01/06/2024
9.0.0 34 09/26/2024
9.0.0-preview5 25 03/13/2024
9.0.0-preview4 30 03/13/2024
9.0.0-preview3 32 03/13/2024
9.0.0-preview2 29 03/13/2024
9.0.0-preview1 24 03/13/2024
8.6.3 39 03/01/2024
8.6.2 33 03/01/2024
8.6.1 31 03/02/2024
8.6.0 31 03/01/2024
8.5.1 30 02/08/2024
8.5.0 39 03/01/2024
8.5.0-preview5 30 03/16/2024
8.5.0-preview4 23 03/17/2024
8.5.0-preview3 27 03/16/2024
8.5.0-preview2 32 03/14/2024
8.5.0-preview1 31 03/16/2024
8.4.0 32 01/17/2024
8.3.0 30 03/01/2024
8.2.3 34 02/08/2024
8.2.2 34 12/10/2023
8.2.1 28 01/24/2024
8.2.0 33 03/02/2024
8.1.3 31 03/22/2024
8.1.2 28 03/02/2024
8.1.1 25 03/01/2024
8.1.0 27 02/08/2024
8.1.0-preview2 29 03/12/2024
8.1.0-preview1 25 03/13/2024
8.0.101 25 02/08/2024
8.0.100 28 01/19/2024
8.0.0 35 01/06/2024
8.0.0-rc1 31 03/12/2024
8.0.0-preview4 28 03/12/2024
8.0.0-preview3 37 03/12/2024
8.0.0-preview2 30 03/12/2024
7.6.105 29 03/13/2024
7.6.104 29 03/12/2024
7.6.103 26 03/13/2024
7.6.102 31 03/12/2024
7.6.101 34 03/12/2024
7.6.100 32 03/12/2024
7.6.0 29 01/05/2024
7.6.0-preview1 32 03/14/2024
7.5.2 27 03/02/2024
7.5.1 34 02/07/2024
7.5.0 40 03/01/2024
7.4.0 30 01/08/2024
7.3.4 33 02/08/2024
7.3.3 32 03/02/2024
7.3.2 31 03/25/2024
7.3.1 35 03/01/2024
7.3.0 30 03/01/2024
7.3.0-beta3 33 03/12/2024
7.3.0-beta2 35 03/12/2024
7.3.0-beta1 25 03/12/2024
7.2.1 25 01/14/2024
7.2.0 30 03/01/2024
7.2.0-beta3 30 03/13/2024
7.2.0-beta2 29 03/13/2024
7.2.0-beta1 30 03/13/2024
7.1.1 29 03/02/2024
7.1.0 34 12/19/2023
7.1.0-beta1 29 03/02/2024
7.0.3 33 01/17/2024
7.0.2 30 01/14/2024
7.0.1 36 12/22/2023
7.0.0 26 12/18/2023
7.0.0-beta3 28 03/12/2024
7.0.0-beta2 27 02/08/2024
7.0.0-beta1 24 03/12/2024
6.4.1 35 01/08/2024
6.4.1-beta1 37 03/22/2024
6.4.0 39 01/02/2024
6.4.0-rc4 26 03/19/2024
6.4.0-rc3 28 03/18/2024
6.4.0-rc2 34 03/18/2024
6.4.0-rc1 29 03/19/2024
6.4.0-beta9 31 03/18/2024
6.4.0-beta8 31 03/18/2024
6.4.0-beta7 30 03/18/2024
6.4.0-beta6 29 03/18/2024
6.4.0-beta5 27 03/18/2024
6.4.0-beta4 30 03/18/2024
6.4.0-beta3 29 03/18/2024
6.4.0-beta2 27 03/18/2024
6.4.0-beta10 32 03/19/2024
6.4.0-beta1 29 01/19/2025
6.3.4-alpha 31 03/12/2024
6.3.3-alpha 32 03/12/2024
6.2.1 24 01/19/2024
6.2.1-beta1 25 03/13/2024
6.2.0 24 03/01/2024
6.2.0-beta1 26 03/13/2024
6.1.0 37 12/18/2023
6.0.2 34 01/16/2024
6.0.1 31 12/22/2023
6.0.0 30 01/01/2024
5.6.2 28 12/19/2023
5.6.1 30 03/01/2024
5.5.0 27 03/01/2024
5.4.0 32 03/26/2024
5.3.0 32 02/08/2024
5.2.0 30 03/01/2024
5.1.0 37 12/15/2023
5.0.0.1 30 01/03/2024
4.0.0.1 27 02/08/2024
4.0.0 30 03/01/2024
3.4.6 27 03/02/2024
3.4.0 34 01/13/2024
3.3.1 27 03/01/2024
3.2.0 32 03/01/2024
3.1.0 29 12/14/2023
3.0.0.1 31 12/18/2023
3.0.0 29 12/18/2023
2.0.0 26 12/13/2023
1.3.0 27 03/01/2024