From 5b0641ebe1c809343f4266f001b879e1b4460001 Mon Sep 17 00:00:00 2001 From: Thierry Thuon Date: Wed, 1 Mar 2017 19:51:55 +0100 Subject: [PATCH] Add deprecation note on routing class parameters --- UPGRADE-3.3.md | 10 ++++++++++ UPGRADE-4.0.md | 10 ++++++++++ src/Symfony/Component/Routing/CHANGELOG.md | 13 +++++++++++++ 3 files changed, 33 insertions(+) diff --git a/UPGRADE-3.3.md b/UPGRADE-3.3.md index 7f7567bcec..7e1f256571 100644 --- a/UPGRADE-3.3.md +++ b/UPGRADE-3.3.md @@ -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 ----------- diff --git a/UPGRADE-4.0.md b/UPGRADE-4.0.md index 7528a6dc28..6152ac213b 100644 --- a/UPGRADE-4.0.md +++ b/UPGRADE-4.0.md @@ -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 --------------- diff --git a/src/Symfony/Component/Routing/CHANGELOG.md b/src/Symfony/Component/Routing/CHANGELOG.md index 5c21324c55..d04581f405 100644 --- a/src/Symfony/Component/Routing/CHANGELOG.md +++ b/src/Symfony/Component/Routing/CHANGELOG.md @@ -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 -----