deprecated profiler.matcher configuration

This commit is contained in:
Fabien Potencier 2017-09-11 10:47:15 -07:00
parent 2c62ba8150
commit 6eff3e5b55
4 changed files with 12 additions and 0 deletions

View File

@ -210,6 +210,11 @@ Process
* The `Symfony\Component\Process\ProcessBuilder` class has been deprecated,
use the `Symfony\Component\Process\Process` class directly instead.
Profiler
--------
* The `profiler.matcher` option has been deprecated.
SecurityBundle
--------------

View File

@ -583,6 +583,11 @@ Process
* The `getEnhanceWindowsCompatibility()` and `setEnhanceWindowsCompatibility()` methods of the `Process` class have been removed.
Profiler
--------
* The `profiler.matcher` option has been removed.
ProxyManager
------------

View File

@ -4,6 +4,7 @@ CHANGELOG
3.4.0
-----
* Deprecated `profiler.matcher` option
* Added support for `EventSubscriberInterface` on `MicroKernelTrait`
* Removed `doctrine/cache` from the list of required dependencies in `composer.json`
* Deprecated `validator.mapping.cache.doctrine.apc` service

View File

@ -219,6 +219,7 @@ class Configuration implements ConfigurationInterface
->booleanNode('only_master_requests')->defaultFalse()->end()
->scalarNode('dsn')->defaultValue('file:%kernel.cache_dir%/profiler')->end()
->arrayNode('matcher')
->setDeprecated('The "profiler.matcher" configuration key has been deprecated in Symfony 3.4 and it will be removed in 4.0.')
->canBeEnabled()
->performNoDeepMerging()
->fixXmlConfig('ip')