@@ -146,7 +146,7 @@ DependencyInjection
146
146
<service id="Doctrine\C ommon\A nnotations\R eader" alias="annotations.reader" public="false" />
147
147
` ` `
148
148
149
- * Service identifiers are now case sensitive.
149
+ * Service identifiers and parameter names are now case sensitive.
150
150
151
151
* The `Reference` and `Alias` classes do not make service identifiers lowercase anymore.
152
152
@@ -391,6 +391,9 @@ FrameworkBundle
391
391
fully-qualified class name of your Kernel or override the `KernelTestCase::createKernel()`
392
392
or `KernelTestCase::getKernelClass()` method instead.
393
393
394
+ * The methods `KernelTestCase::getPhpUnitXmlDir()` and `KernelTestCase::getPhpUnitCliConfigArgument()`
395
+ have been removed.
396
+
394
397
* The `Symfony\Bundle\FrameworkBundle\Validator\ConstraintValidatorFactory` class has been removed.
395
398
Use `Symfony\Component\Validator\ContainerConstraintValidatorFactory` instead.
396
399
@@ -541,6 +544,8 @@ Process
541
544
* Extending `Process::run()`, `Process::mustRun()` and `Process::restart()` is
542
545
not supported anymore.
543
546
547
+ * The `getEnhanceWindowsCompatibility()` and `setEnhanceWindowsCompatibility()` methods of the `Process` class have been removed.
548
+
544
549
ProxyManager
545
550
------------
546
551
@@ -557,6 +562,8 @@ Security
557
562
* The `AccessDecisionManager::setVoters()` method has been removed. Pass the
558
563
voters to the constructor instead.
559
564
565
+ * Support for defining voters that don't implement the `VoterInterface` has been removed.
566
+
560
567
SecurityBundle
561
568
--------------
562
569
@@ -683,6 +690,21 @@ Validator
683
690
}
684
691
` ` `
685
692
693
+ * Setting the `checkDNS` option of the `Url` constraint to `true` is dropped
694
+ in favor of `Url::CHECK_DNS_TYPE_*` constants values.
695
+
696
+ Before :
697
+
698
+ ` ` ` php
699
+ $constraint = new Url(['checkDNS' => true]);
700
+ ` ` `
701
+
702
+ After :
703
+
704
+ ` ` ` php
705
+ $constraint = new Url(['checkDNS' => Url::CHECK_DNS_TYPE_ANY]);
706
+ ` ` `
707
+
686
708
VarDumper
687
709
---------
688
710
@@ -716,6 +738,12 @@ VarDumper
716
738
VarDumperTestTrait::assertDumpMatchesFormat($dump, $data, $filter = 0, $message = '');
717
739
` ` `
718
740
741
+ WebProfilerBundle
742
+ -----------------
743
+
744
+ * Removed the `getTemplates()` method of the `TemplateManager` class in favor
745
+ of the `getNames()` method
746
+
719
747
Workflow
720
748
--------
721
749
0 commit comments