From e116d3d76d5381fe84be377ba27a1252342dcbf4 Mon Sep 17 00:00:00 2001 From: Christian Flothmann Date: Wed, 12 Oct 2016 18:58:41 +0200 Subject: [PATCH] [HttpFoundation] add missing upgrade entry --- UPGRADE-3.0.md | 2 ++ 1 file changed, 2 insertions(+) diff --git a/UPGRADE-3.0.md b/UPGRADE-3.0.md index 81b9a2a926..8f2bb48cc9 100644 --- a/UPGRADE-3.0.md +++ b/UPGRADE-3.0.md @@ -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()`.