This repository has been archived on 2023-08-20. You can view files and clone it, but cannot push or open issues or pull requests.
symfony/UPGRADE-2.1.md

124 lines
4.6 KiB
Markdown
Raw Normal View History

2011-10-08 17:29:31 +01:00
UPGRADE FROM 2.0 to 2.1
=======================
* assets_base_urls and base_urls merging strategy has changed
2012-01-17 09:53:31 +00:00
Unlike most configuration blocks, successive values for
``assets_base_urls`` will overwrite each other instead of being merged.
This behavior was chosen because developers will typically define base
URL's for each environment. Given that most projects tend to inherit
configurations (e.g. ``config_test.yml`` imports ``config_dev.yml``)
and/or share a common base configuration (i.e. ``config.yml``), merging
could yield a set of base URL's for multiple environments.
2011-10-08 17:29:31 +01:00
* moved management of the locale from the Session class to the Request class
2012-01-17 09:53:31 +00:00
Configuring the default locale:
2012-01-17 09:53:31 +00:00
Before:
2012-01-17 09:53:31 +00:00
framework:
session:
default_locale: fr
2012-01-17 09:53:31 +00:00
After:
2012-01-17 09:53:31 +00:00
framework:
default_locale: fr
2012-01-17 09:53:31 +00:00
Retrieving the locale from a Twig template:
2012-01-17 09:53:31 +00:00
Before: `{{ app.request.session.locale }}` or `{{ app.session.locale }}`
After: `{{ app.request.locale }}`
2012-01-17 09:53:31 +00:00
Retrieving the locale from a PHP template:
2012-01-17 09:53:31 +00:00
Before: `$view['session']->getLocale()`
After: `$view['request']->getLocale()`
2012-01-17 09:53:31 +00:00
Retrieving the locale from PHP code:
2012-01-17 09:53:31 +00:00
Before: `$session->getLocale()`
After: `$request->getLocale()`
* Method `equals` of `Symfony\Component\Security\Core\User\UserInterface` has
moved to `Symfony\Component\Security\Core\User\EquatableInterface`.
2012-01-17 09:53:31 +00:00
You have to change the name of the `equals` function in your implementation
of the `User` class to `isEqualTo` and implement `EquatableInterface`.
Apart from that, no other changes are required to make it behave as before.
Alternatively, you can use the default implementation provided
by `AbstractToken:hasUserChanged` if you do not need any custom comparison logic.
In this case do not implement the interface and remove your comparison function.
Before:
class User implements UserInterface
{
// ...
public function equals(UserInterface $user) { /* ... */ }
// ...
}
After:
class User implements UserInterface, EquatableInterface
{
// ...
public function isEqualTo(UserInterface $user) { /* ... */ }
// ...
}
* Form children aren't automatically validated anymore. That means that you
explicitely need to set the `Valid` constraint in your model if you want to
validate associated objects.
2012-01-17 09:53:31 +00:00
If you don't want to set the `Valid` constraint, or if there is no reference
from the data of the parent form to the data of the child form, you can
enable BC behaviour by setting the option "cascade_validation" to `true` on
the parent form.
* In the template of the choice type, instead of a single "choices" variable
there are now two variables: "choices" and "choice_labels"
"choices" contains the choices in the values (before they were in the keys)
and "choice_labels" contains the matching labels. Both arrays have
identical keys.
Before:
{% for choice, label in choices %}
<option value="{{ choice }}"{% if _form_is_choice_selected(form, choice) %} selected="selected"{% endif %}>
{{ label }}
</option>
{% endfor %}
After:
{% for index, choice in choices %}
<option value="{{ choice }}"{% if _form_is_choice_selected(form, choice) %} selected="selected"{% endif %}>
{{ choice_labels[index] }}
</option>
{% endfor %}
* The strategy for generating the HTML attributes "id" and "name"
of choices in a choice field has changed
Instead of appending the choice value, a generated integer is now appended
by default. Take care if your Javascript relies on that. If you can
guarantee that your choice values only contain ASCII letters, digits,
letters, colons and underscores, you can restore the old behaviour by
setting the option "index_strategy" of the choice field to
`ChoiceList::COPY_CHOICE`.
* The strategy for generating the HTML attributes "value" of choices in a
choice field has changed
Instead of using the choice value, a generated integer is now stored.
Again, take care if your Javascript reads this value. If your choice field
is a non-expanded single-choice field, or if the choices are guaranteed not
to contain the empty string '' (which is the case when you added it manually
or when the field is a single-choice field and is not required), you can
restore the old behaviour by setting the option "value_strategy" to
`ChoiceList::COPY_CHOICE`.