Mentioned the deprecation of deep parameters in UPGRADE files

This commit is contained in:
Javier Eguiluz 2016-03-08 16:36:29 +01:00 committed by Fabien Potencier
parent 5500fe7104
commit 6ea28e64aa
2 changed files with 42 additions and 7 deletions

View File

@ -612,3 +612,21 @@ Yaml
```yml
class: "Foo\\Var"
```
HttpFoundation
--------------
* Deprecated finding deep items in `ParameterBag::get()`. This may affect you
when getting parameters from the `Request` class:
Before:
```php
$request->query->get('foo[bar]', null, true);
```
After:
```php
$request->query->get('foo')[bar];
```

View File

@ -1624,3 +1624,20 @@ UPGRADE FROM 2.x to 3.0
* `Process::setStdin()` and `Process::getStdin()` have been removed. Use
`Process::setInput()` and `Process::getInput()` that works the same way.
* `Process::setInput()` and `ProcessBuilder::setInput()` do not accept non-scalar types.
### HttpFoundation
* Removed the feature that allowed finding deep items in `ParameterBag::get()`.
This may affect you when getting parameters from the `Request` class:
Before:
```php
$request->query->get('foo[bar]', null, true);
```
After:
```php
$request->query->get('foo')[bar];
```