Add deprecation note on routing class parameters

This commit is contained in:
Thierry Thuon 2017-03-01 19:51:55 +01:00
parent 8d99d5758a
commit 5b0641ebe1
3 changed files with 33 additions and 0 deletions

View File

@ -147,6 +147,16 @@ FrameworkBundle
have been deprecated and will be removed in 4.0.
* Extending `ConstraintValidatorFactory` is deprecated and won't be supported in 4.0.
* Class parameters related to routing have been deprecated and will be removed in 4.0.
* router.options.generator_class
* router.options.generator_base_class
* router.options.generator_dumper_class
* router.options.matcher_class
* router.options.matcher_base_class
* router.options.matcher_dumper_class
* router.options.matcher.cache_class
* router.options.generator.cache_class
HttpKernel
-----------

View File

@ -207,6 +207,16 @@ FrameworkBundle
* Extending `ConstraintValidatorFactory` is not supported anymore.
* Class parameters related to routing have been removed
* router.options.generator_class
* router.options.generator_base_class
* router.options.generator_dumper_class
* router.options.matcher_class
* router.options.matcher_base_class
* router.options.matcher_dumper_class
* router.options.matcher.cache_class
* router.options.generator.cache_class
HttpFoundation
---------------

View File

@ -1,6 +1,19 @@
CHANGELOG
=========
3.3.0
-----
* [DEPRECATION] Class parameters have been deprecated and will be removed in 4.0.
* router.options.generator_class
* router.options.generator_base_class
* router.options.generator_dumper_class
* router.options.matcher_class
* router.options.matcher_base_class
* router.options.matcher_dumper_class
* router.options.matcher.cache_class
* router.options.generator.cache_class
3.2.0
-----