Update changelogs

This commit is contained in:
Drak 2012-07-14 22:43:03 +01:00
parent ff91b9aed0
commit 5ae0da015d
2 changed files with 6 additions and 3 deletions

View File

@ -36,5 +36,8 @@ CHANGELOG
start on demand. start on demand.
* [BC BREAK] TemplateNameParser::parseFromFilename() has been moved to a dedicated * [BC BREAK] TemplateNameParser::parseFromFilename() has been moved to a dedicated
parser: TemplateFilenameParser::parse(). parser: TemplateFilenameParser::parse().
* [BC BREAK] Kernel parameters are replaced by their value whereever they appear * [BC BREAK] Kernel parameters are replaced by their value wherever they appear
in Route patterns, requirements and defaults. Use '%%' as the escaped value for '%'. in Route patterns, requirements and defaults. Use '%%' as the escaped value for '%'.
* [BC BREAK] Switched behavior of flash messages to expire flash messages on retrieval
using Symfony\Component\HttpFoundation\Session\Flash\FlashBag as opposed to on
next pageload regardless of whether they are displayed or not.

View File

@ -54,8 +54,8 @@ CHANGELOG
* Added `FlashBag`. Flashes expire when retrieved by `get()` or `all()`. This * Added `FlashBag`. Flashes expire when retrieved by `get()` or `all()`. This
implementation is ESI compatible. implementation is ESI compatible.
* Added `AutoExpireFlashBag` (default) to replicate Symfony 2.0.x auto expire * Added `AutoExpireFlashBag` (default) to replicate Symfony 2.0.x auto expire
behaviour of messages auto expiring. behaviour of messages auto expiring after one page page load. Messages must
after one page page load. Messages must be retrieved by `get()` or `all()`. be retrieved by `get()` or `all()`.
* Added `Symfony\Component\HttpFoundation\Attribute\AttributeBag` to replicate * Added `Symfony\Component\HttpFoundation\Attribute\AttributeBag` to replicate
attributes storage behaviour from 2.0.x (default). attributes storage behaviour from 2.0.x (default).
* Added `Symfony\Component\HttpFoundation\Attribute\NamespacedAttributeBag` for * Added `Symfony\Component\HttpFoundation\Attribute\NamespacedAttributeBag` for