diff --git a/CHANGELOG-2.1.md b/CHANGELOG-2.1.md index db4fabda4d..5fbdc4e900 100644 --- a/CHANGELOG-2.1.md +++ b/CHANGELOG-2.1.md @@ -227,22 +227,3 @@ To get the diff between two versions, go to https://github.com/symfony/symfony/c * ValidatorTypeGuesser now guesses "collection" for array type constraint * added method `guessPattern` to FormTypeGuesserInterface to guess which pattern to use in the HTML5 attribute "pattern" * deprecated method `guessMinLength` in favor of `guessPattern` - -### Validator - - * added support for `ctype_*` assertions in `TypeValidator` - * added a Size validator - * added a SizeLength validator - * improved the ImageValidator with min width, max width, min height, and max height constraints - * added support for MIME with wildcard in FileValidator - * changed Collection validator to add "missing" and "extra" errors to - individual fields - * changed default value for `extraFieldsMessage` and `missingFieldsMessage` - in Collection constraint - * made ExecutionContext immutable - * deprecated Constraint methods `setMessage`, `getMessageTemplate` and - `getMessageParameters` - * added support for dynamic group sequences with the GroupSequenceProvider pattern - * [BC BREAK] ConstraintValidatorInterface method `isValid` has been renamed to - `validate`, its return value was dropped. ConstraintValidator still contains - `isValid` for BC diff --git a/src/Symfony/Component/Validator/CHANGELOG.md b/src/Symfony/Component/Validator/CHANGELOG.md new file mode 100644 index 0000000000..3566cdd28f --- /dev/null +++ b/src/Symfony/Component/Validator/CHANGELOG.md @@ -0,0 +1,22 @@ +CHANGELOG +========= + +2.1.0 +----- + + * added support for `ctype_*` assertions in `TypeValidator` + * added a Size validator + * added a SizeLength validator + * improved the ImageValidator with min width, max width, min height, and max height constraints + * added support for MIME with wildcard in FileValidator + * changed Collection validator to add "missing" and "extra" errors to + individual fields + * changed default value for `extraFieldsMessage` and `missingFieldsMessage` + in Collection constraint + * made ExecutionContext immutable + * deprecated Constraint methods `setMessage`, `getMessageTemplate` and + `getMessageParameters` + * added support for dynamic group sequences with the GroupSequenceProvider pattern + * [BC BREAK] ConstraintValidatorInterface method `isValid` has been renamed to + `validate`, its return value was dropped. ConstraintValidator still contains + `isValid` for BC