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
Copy file name to clipboardExpand all lines: UPGRADE-4.4.md
+4-1Lines changed: 4 additions & 1 deletion
Original file line number
Diff line number
Diff line change
@@ -84,6 +84,7 @@ Form
84
84
* Using different values for the "model_timezone" and "view_timezone" options of the `TimeType` without configuring a
85
85
reference date is deprecated.
86
86
* Using `int` or `float` as data for the `NumberType` when the `input` option is set to `string` is deprecated.
87
+
* Overriding the methods `FormIntegrationTestCase::setUp()`, `TypeTestCase::setUp()` and `TypeTestCase::tearDown()` without the `void` return-type is deprecated.
87
88
88
89
FrameworkBundle
89
90
---------------
@@ -96,7 +97,8 @@ FrameworkBundle
96
97
* The `controller_name_converter` and `resolve_controller_name_subscriber` services have been deprecated.
97
98
* Deprecated `routing.loader.service`, use `routing.loader.container` instead.
98
99
* Not tagging service route loaders with `routing.route_loader` has been deprecated.
99
-
100
+
* Overriding the methods `KernelTestCase::tearDown()` and `WebTestCase::tearDown()` without the `void` return-type is deprecated.
101
+
100
102
HttpClient
101
103
----------
102
104
@@ -247,6 +249,7 @@ Validator
247
249
when the `min` option is used.
248
250
Set it to `true` to keep the current behavior and `false` to reject empty strings.
249
251
In 5.0, it'll become optional and will default to `false`.
252
+
* Overriding the methods `ConstraintValidatorTestCase::setUp()` and `ConstraintValidatorTestCase::tearDown()` without the `void` return-type is deprecated.
Copy file name to clipboardExpand all lines: UPGRADE-5.0.md
+3Lines changed: 3 additions & 0 deletions
Original file line number
Diff line number
Diff line change
@@ -214,6 +214,7 @@ Form
214
214
```
215
215
216
216
* The `regions` option was removed from the `TimezoneType`.
217
+
* Added support for PHPUnit 8. A `void` return-type was added to the `FormIntegrationTestCase::setUp()`, `TypeTestCase::setUp()` and `TypeTestCase::tearDown()` methods.
217
218
218
219
FrameworkBundle
219
220
---------------
@@ -257,6 +258,7 @@ FrameworkBundle
257
258
* Removed support for `templating` engine in `TemplateController`, use Twig instead
258
259
* Removed `ResolveControllerNameSubscriber`.
259
260
* Removed `routing.loader.service`.
261
+
* Added support for PHPUnit 8. A `void` return-type was added to the `KernelTestCase::tearDown()` and `WebTestCase::tearDown()` method.
260
262
261
263
HttpClient
262
264
----------
@@ -532,6 +534,7 @@ Validator
532
534
* The `egulias/email-validator` component is now required for using the `Email` constraint in strict mode
533
535
* The `symfony/expression-language` component is now required for using the `Expression` constraint
534
536
* Changed the default value of `Length::$allowEmptyString` to `false` and made it optional
537
+
* Added support for PHPUnit 8. A `void` return-type was added to the `ConstraintValidatorTestCase::setUp()` and `ConstraintValidatorTestCase::tearDown()` methods.
Copy file name to clipboardExpand all lines: src/Symfony/Component/Form/CHANGELOG.md
+1Lines changed: 1 addition & 0 deletions
Original file line number
Diff line number
Diff line change
@@ -9,6 +9,7 @@ CHANGELOG
9
9
* preferred choices are repeated in the list of all choices
10
10
* deprecated using `int` or `float` as data for the `NumberType` when the `input` option is set to `string`
11
11
* The type guesser guesses the HTML accept attribute when a mime type is configured in the File or Image constraint.
12
+
* Overriding the methods `FormIntegrationTestCase::setUp()`, `TypeTestCase::setUp()` and `TypeTestCase::tearDown()` without the `void` return-type is deprecated.
Copy file name to clipboardExpand all lines: src/Symfony/Component/Validator/CHANGELOG.md
+1Lines changed: 1 addition & 0 deletions
Original file line number
Diff line number
Diff line change
@@ -21,6 +21,7 @@ CHANGELOG
21
21
* added a new `notInRangeMessage` option to the `Range` constraint that will
22
22
be used in the violation builder when both `min` and `max` are not null
23
23
* added ability to use stringable objects as violation messages
24
+
* Overriding the methods `ConstraintValidatorTestCase::setUp()` and `ConstraintValidatorTestCase::tearDown()` without the `void` return-type is deprecated.
0 commit comments