8000 Add deprecation note on routing class parameters by lepiaf · Pull Request #21824 · symfony/symfony · GitHub
[go: up one dir, main page]

Skip to content

Add deprecation note on routing class parameters #21824

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 1 commit into from
Mar 4, 2017
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Add deprecation note on routing class parameters
  • Loading branch information
lepiaf committed Mar 1, 2017
commit 5b0641ebe1c809343f4266f001b879e1b4460001
10 changes: 10 additions & 0 deletions UPGRADE-3.3.md
Original file line number Diff line number Diff line change
Expand Up @@ -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
-----------
Expand Down
10 changes: 10 additions & 0 deletions UPGRADE-4.0.md
Original file line number Diff line number Diff line change
Expand Up @@ -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
---------------

Expand Down
13 changes: 13 additions & 0 deletions
Original file line number Diff line number Diff line change
@@ -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
-----

Expand Down
0