Skip to content

Respect alpha order in UPGRADE-4.2 file #27781

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
Jun 30, 2018
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
24 changes: 12 additions & 12 deletions UPGRADE-4.2.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,10 +6,21 @@ Cache

* Deprecated `CacheItem::getPreviousTags()`, use `CacheItem::getMetadata()` instead.

Config
------

* Deprecated constructing a `TreeBuilder` without passing root node information.

DoctrineBridge
--------------

* The `lazy` attribute on `doctrine.event_listener` tags was removed.
Listeners are now lazy by default. So any `lazy` attributes can safely be removed from those tags.

Form
----

* Deprecated calling `FormRenderer::searchAndRenderBlock` for fields which were already rendered.
* Deprecated calling `FormRenderer::searchAndRenderBlock` for fields which were already rendered.
Instead of expecting such calls to return empty strings, check if the field has already been rendered.

Before:
Expand All @@ -26,11 +37,6 @@ Form
{% endfor %}
```

Config
------

* Deprecated constructing a `TreeBuilder` without passing root node information.

Security
--------

Expand Down Expand Up @@ -58,9 +64,3 @@ Serializer

* Relying on the default value (false) of the "as_collection" option is deprecated since 4.2.
You should set it to false explicitly instead as true will be the default value in 5.0.

DoctrineBridge
--------------

* The `lazy` attribute on `doctrine.event_listener` tags was removed.
Listeners are now lazy by default. So any `lazy` attributes can safely be removed from those tags.