Branch: refs/heads/5.3
Home:
https://github.com/hibernate/hibernate-validator
Commit: 5e442207924b6ed1a6de3270769bf93d92bba795
https://github.com/hibernate/hibernate-validator/commit/5e442207924b6ed1a...
Author: Guillaume Smet <guillaume.smet(a)gmail.com>
Date: 2017-01-20 (Fri, 20 Jan 2017)
Changed paths:
M .gitignore
Log Message:
-----------
Add .checkstyle to .gitignore
Commit: 8b8904704a4b5e3fb54237d18d3eec0e6a1db891
https://github.com/hibernate/hibernate-validator/commit/8b8904704a4b5e3fb...
Author: Guillaume Smet <guillaume.smet(a)gmail.com>
Date: 2017-01-20 (Fri, 20 Jan 2017)
Changed paths:
M
engine/src/main/java/org/hibernate/validator/internal/engine/constraintvalidation/ConstraintValidatorManager.java
Log Message:
-----------
Fix minor typo in a comment
Commit: 8e717e48a1842f5707b06df7ec02999394beffeb
https://github.com/hibernate/hibernate-validator/commit/8e717e48a1842f570...
Author: Guillaume Smet <guillaume.smet(a)gmail.com>
Date: 2017-01-20 (Fri, 20 Jan 2017)
Changed paths:
M
engine/src/main/java/org/hibernate/validator/internal/cfg/context/ConfiguredConstraint.java
M
engine/src/main/java/org/hibernate/validator/internal/cfg/context/CrossParameterConstraintMappingContextImpl.java
M
engine/src/main/java/org/hibernate/validator/internal/cfg/context/PropertyConstraintMappingContextImpl.java
M
engine/src/main/java/org/hibernate/validator/internal/cfg/context/ReturnValueConstraintMappingContextImpl.java
M
engine/src/test/java/org/hibernate/validator/test/cfg/MethodConstraintMappingTest.java
Log Message:
-----------
HV-1220 Make programmatically defined cross parameter constraints on the parameters of a
method returning void work as expected
The location used was the one of a return value so it kinda worked if the
method had parameters as the return value type was Object which is
supported for cross parameter constraints but it failed as long as the
return value type was void.
Compare:
https://github.com/hibernate/hibernate-validator/compare/eb4f6de49cd1...8...