Skip to content

[FrameworkBundle][TwigBundle] add changed debug command names to upgrade file #14707

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
May 21, 2015
Merged
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
13 changes: 13 additions & 0 deletions UPGRADE-3.0.md
Original file line number Diff line number Diff line change
Expand Up @@ -306,6 +306,11 @@ UPGRADE FROM 2.x to 3.0

### FrameworkBundle

* The `config:debug`, `container:debug`, `router:debug`, `translation:debug`
and `yaml:lint` commands have been deprecated since Symfony 2.7 and will
be removed in Symfony 3.0. Use the `debug:config`, `debug:container`,
`debug:router`, `debug:translation` and `lint:yaml` commands instead.

* The `getRequest` method of the base `Controller` class has been deprecated
since Symfony 2.4 and must be therefore removed in 3.0. The only reliable
way to get the `Request` object is to inject it in the action method.
Expand Down Expand Up @@ -580,6 +585,9 @@ UPGRADE FROM 2.x to 3.0

### Twig Bridge

* The `twig:lint` command has been deprecated since Symfony 2.7 and will be
removed in Symfony 3.0. Use the `lint:twig` command instead.

* The `render` tag is deprecated in favor of the `render` function.

* The `form_enctype` helper was removed. You should use the new `form_start`
Expand Down Expand Up @@ -632,6 +640,11 @@ UPGRADE FROM 2.x to 3.0
{{ form_end(form) }}
```

### TwigBundle

* The `twig:debug` command has been deprecated since Symfony 2.7 and will be
removed in Symfony 3.0. Use the `debug:twig` command instead.

### Validator

* The class `Symfony\Component\Validator\Mapping\Cache\ApcCache` has been removed in favor
Expand Down