You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
* `Factory` is deprecated, use `LockFactory` instead
167
-
* Deprecated services `lock.store.flock`, `lock.store.semaphore`, `lock.store.memcached.abstract` and `lock.store.redis.abstract`,
168
-
use `StoreFactory::createStore` instead.
167
+
* Deprecated services `lock.store.flock`, `lock.store.semaphore`, `lock.store.memcached.abstract` and `lock.store.redis.abstract`,
168
+
use `StoreFactory::createStore` instead.
169
169
170
170
Mailer
171
171
------
@@ -360,6 +360,7 @@ TwigBundle
360
360
Validator
361
361
---------
362
362
363
+
* [BC BREAK] Using null as `$classValidatorRegexp` value in `DoctrineLoader::__construct` or `PropertyInfoLoader::__construct` will not enable auto-mapping for all classes anymore, use `'{.*}'` instead.
363
364
* Deprecated passing an `ExpressionLanguage` instance as the second argument of `ExpressionValidator::__construct()`.
364
365
* Deprecated using anything else than a `string` as the code of a `ConstraintViolation`, a `string` type-hint will
365
366
be added to the constructor of the `ConstraintViolation` class and to the `ConstraintViolationBuilder::setCode()`
Copy file name to clipboardExpand all lines: src/Symfony/Bridge/Doctrine/CHANGELOG.md
+1
Original file line number
Diff line number
Diff line change
@@ -4,6 +4,7 @@ CHANGELOG
4
4
4.4.0
5
5
-----
6
6
7
+
*[BC BREAK] using null as `$classValidatorRegexp` value in `DoctrineLoader::__construct` will not enable auto-mapping for all classes anymore, use `'{.*}'` instead.
Copy file name to clipboardExpand all lines: src/Symfony/Component/Validator/CHANGELOG.md
+4-3
Original file line number
Diff line number
Diff line change
@@ -4,19 +4,20 @@ CHANGELOG
4
4
4.4.0
5
5
-----
6
6
7
-
* added `EnableAutoMapping` and `DisableAutoMapping` constraints to enable or disable auto mapping for class or a property
7
+
*[BC BREAK] using null as `$classValidatorRegexp` value in `PropertyInfoLoader::__construct` will not enable auto-mapping for all classes anymore, use `'{.*}'` instead.
8
+
* added `EnableAutoMapping` and `DisableAutoMapping` constraints to enable or disable auto mapping for class or a property
8
9
* using anything else than a `string` as the code of a `ConstraintViolation` is deprecated, a `string` type-hint will
9
10
be added to the constructor of the `ConstraintViolation` class and to the `ConstraintViolationBuilder::setCode()`
10
11
method in 5.0
11
12
* deprecated passing an `ExpressionLanguage` instance as the second argument of `ExpressionValidator::__construct()`. Pass it as the first argument instead.
12
-
* added the `compared_value_path` parameter in violations when using any
13
+
* added the `compared_value_path` parameter in violations when using any
13
14
comparison constraint with the `propertyPath` option.
14
15
* added support for checking an array of types in `TypeValidator`
15
16
* added a new `allowEmptyString` option to the `Length` constraint to allow rejecting empty strings when `min` is set, by setting it to `false`.
16
17
* Added new `minPropertyPath` and `maxPropertyPath` options
17
18
to `Range` constraint in order to get the value to compare
18
19
from an array or object
19
-
* added the `min_limit_path` and `max_limit_path` parameters in violations when using
20
+
* added the `min_limit_path` and `max_limit_path` parameters in violations when using
20
21
`Range` constraint with respectively the `minPropertyPath` and
21
22
`maxPropertyPath` options
22
23
* added a new `notInRangeMessage` option to the `Range` constraint that will
0 commit comments