Hibernate Validator

Roadmap

Interested in our past releases?

To learn more about what we introduced in our past releases, please consult the "What's new" section of a given series .

Hibernate Validator is community driven and as such the roadmap constantly evolves to reflect the users needs and contributions.

You can find a fine grained roadmap in our issue tracker, but this page is a good starting point to see where we are going.

Hibernate Validator 6.2

Engine

Explore more bootstrap changes to improve Quarkus support of all Hibernate Validator features.
Explore taking some distance from the reflection API (e.g. dealing with Type is rather confusing, replace some of the types with memory-friendly counterparts (Method?), do not rely on TypeVariable). Note that it might also help with the future usage of Jandex for annotation discovery.
Add support for JSON validation at the root level (i.e. validating a root JSON object) and at the property level (i.e. validating a JSON property of a given bean)
Support JDK 10 and 11

Java modularization

Optionally support usage of method handles for accessing bean states (HV-1226)
Explore usage of ResourceBundleProvider for obtaining validation error messages from other modules
Providing Hibernate Validator with JDK 9 module descriptors

Future versions

Engine

Explore the ability to validate an object and a list of changes (BVAL-214)
Explore support for constraint ordering (BVAL-248)
Explore the usage of Jandex (a Java annotation indexer and offline reflection library) to build the metadata (HV-644)
Explore message interpolators receiving several locales (HV-1436)

Remote API

Provide an HTTP endpoint which allows to validate single properties and also exposes constraint metadata via JSON (HV-1500). Web applications can integrate that endpoint to allow client-side validation of their models.

Annotation processor improvements

Taking into account new places where constraint annotations can be placed (HV-879)
Taking into account XML configuration (HV-308)

Back to top