minor #20209 [HttpFoundation] add missing upgrade entry (xabbuh)

This PR was merged into the 3.1 branch.

Discussion
----------

[HttpFoundation] add missing upgrade entry

| Q             | A
| ------------- | ---
| Branch?       | 3.1
| Bug fix?      | no
| New feature?  | no
| BC breaks?    | no
| Deprecations? | no
| Tests pass?   | yes
| Fixed tickets |
| License       | MIT
| Doc PR        |

Commits
-------

e116d3d [HttpFoundation] add missing upgrade entry
This commit is contained in:
Fabien Potencier 2016-10-12 13:30:28 -07:00
commit 76817cdb70
1 changed files with 2 additions and 0 deletions

View File

@ -1805,6 +1805,8 @@ UPGRADE FROM 2.x to 3.0
### HttpFoundation
* The precedence of parameters returned from `Request::get()` changed from "GET, PATH, BODY" to "PATH, GET, BODY"
* `Symfony\Component\HttpFoundation\Session\Flash\FlashBagInterface` no longer implements the `IteratorAggregate` interface. Use the `all()` method instead of iterating over the flash bag.
* Removed the feature that allowed finding deep items in `ParameterBag::get()`.