Skip to content

Commit 6432d11

Browse files
committed
Merge branch 'development'
2 parents 7e68c66 + f8fac07 commit 6432d11

16 files changed

+60
-44
lines changed

box.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"name":"ColdBox Validation",
33
"author":"Ortus Solutions <[email protected]>",
4-
"version":"3.1.1",
4+
"version":"3.2.0",
55
"location":"https://downloads.ortussolutions.com/ortussolutions/coldbox-modules/cbvalidation/@build.version@/[email protected]@.zip",
66
"slug":"cbvalidation",
77
"type":"modules",

changelog.md

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,18 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
77

88
----
99

10+
## [3.2.0] => 2021-NOV-12
11+
12+
### Fixed
13+
14+
* Binary Type validator was not working by @nockhigan
15+
16+
### Changed
17+
18+
* Formatting goodness by [email protected]
19+
20+
----
21+
1022
## [3.1.0] => 2021-MAY-17
1123

1224
### Fixed

interfaces/IValidator.cfc

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -8,10 +8,10 @@ interface {
88

99
/**
1010
* Will check if an incoming value validates
11-
* @validationResultThe result object of the validation
12-
* @targetThe target object to validate on
13-
* @fieldThe field on the target object to validate on
14-
* @targetValueThe target value to validate
11+
* @validationResult The result object of the validation
12+
* @target The target object to validate on
13+
* @field The field on the target object to validate on
14+
* @targetValue The target value to validate
1515
* @rules The rules imposed on the currently validating field
1616
*/
1717
boolean function validate(

models/validators/AlphaValidator.cfc

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -21,9 +21,9 @@ component
2121
/**
2222
* Will check if an incoming value validates
2323
*
24-
* @validationResultThe result object of the validation
25-
* @targetThe target object to validate on
26-
* @fieldThe field on the target object to validate on
24+
* @validationResult The result object of the validation
25+
* @target The target object to validate on
26+
* @field The field on the target object to validate on
2727
* @targetValue The target value to validate
2828
* @validationData The validation data the validator was created with
2929
* @rules The rules imposed on the currently validating field

models/validators/DiscreteValidator.cfc

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -20,9 +20,9 @@ component
2020

2121
/**
2222
* Will check if an incoming value validates
23-
* @validationResultThe result object of the validation
24-
* @targetThe target object to validate on
25-
* @fieldThe field on the target object to validate on
23+
* @validationResult The result object of the validation
24+
* @target The target object to validate on
25+
* @field The field on the target object to validate on
2626
* @targetValue The target value to validate
2727
* @validationData The validation data the validator was created with
2828
* @rules The rules imposed on the currently validating field

models/validators/InListValidator.cfc

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -20,9 +20,9 @@ component
2020

2121
/**
2222
* Will check if an incoming value validates
23-
* @validationResultThe result object of the validation
24-
* @targetThe target object to validate on
25-
* @fieldThe field on the target object to validate on
23+
* @validationResult The result object of the validation
24+
* @target The target object to validate on
25+
* @field The field on the target object to validate on
2626
* @targetValue The target value to validate
2727
* @rules The rules imposed on the currently validating field
2828
*/

models/validators/MaxValidator.cfc

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -20,9 +20,9 @@ component
2020

2121
/**
2222
* Will check if an incoming value validates
23-
* @validationResultThe result object of the validation
24-
* @targetThe target object to validate on
25-
* @fieldThe field on the target object to validate on
23+
* @validationResult The result object of the validation
24+
* @target The target object to validate on
25+
* @field The field on the target object to validate on
2626
* @targetValue The target value to validate
2727
* @rules The rules imposed on the currently validating field
2828
*/

models/validators/MinValidator.cfc

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -20,9 +20,9 @@ component
2020

2121
/**
2222
* Will check if an incoming value validates
23-
* @validationResultThe result object of the validation
24-
* @targetThe target object to validate on
25-
* @fieldThe field on the target object to validate on
23+
* @validationResult The result object of the validation
24+
* @target The target object to validate on
25+
* @field The field on the target object to validate on
2626
* @targetValue The target value to validate
2727
* @rules The rules imposed on the currently validating field
2828
*/

models/validators/RangeValidator.cfc

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -20,9 +20,9 @@ component
2020

2121
/**
2222
* Will check if an incoming value validates
23-
* @validationResultThe result object of the validation
24-
* @targetThe target object to validate on
25-
* @fieldThe field on the target object to validate on
23+
* @validationResult The result object of the validation
24+
* @target The target object to validate on
25+
* @field The field on the target object to validate on
2626
* @targetValue The target value to validate
2727
* @rules The rules imposed on the currently validating field
2828
*/

models/validators/RegexValidator.cfc

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -20,9 +20,9 @@ component
2020

2121
/**
2222
* Will check if an incoming value validates
23-
* @validationResultThe result object of the validation
24-
* @targetThe target object to validate on
25-
* @fieldThe field on the target object to validate on
23+
* @validationResult The result object of the validation
24+
* @target The target object to validate on
25+
* @field The field on the target object to validate on
2626
* @targetValue The target value to validate
2727
* @rules The rules imposed on the currently validating field
2828
*/

0 commit comments

Comments
 (0)