Merge branch '4.4'

* 4.4:
  Remove legacy changelog lines
This commit is contained in:
Nicolas Grekas 2019-10-15 15:33:17 +02:00
commit a06057584d
3 changed files with 0 additions and 56 deletions

View File

@ -155,33 +155,6 @@ HttpKernel
current directory or with a glob pattern. The fallback directories have never been advocated
so you likely do not use those in any app based on the SF Standard or Flex edition.
* Getting the container from a non-booted kernel is deprecated
* Deprecated passing the `exception` attribute (instance of `Symfony\Component\Debug\Exception\FlattenException`)
to the configured controller of the `ExceptionListener`, use the `e` attribute
(instance of `Symfony\Component\ErrorRenderer\Exception\FlattenException`) instead
before:
```php
use Symfony\Component\Debug\Exception\FlattenException;
class ExceptionController
{
public function __invoke(FlattenException $exception)
{
}
}
```
after:
```php
use Symfony\Component\ErrorRenderer\Exception\FlattenException;
class ExceptionController
{
public function __invoke(FlattenException $e)
{
}
}
```
Lock
----

View File

@ -341,33 +341,6 @@ HttpKernel
* Removed the second and third argument of `FileLocator::__construct`
* Removed loading resources from `%kernel.root_dir%/Resources` and `%kernel.root_dir%` as
fallback directories.
* Removed passing the `exception` attribute (instance of `Symfony\Component\Debug\Exception\FlattenException`)
to the configured controller of the `ExceptionListener`, use the `e` attribute
(instance of `Symfony\Component\ErrorRenderer\Exception\FlattenException`) instead
before:
```php
use Symfony\Component\Debug\Exception\FlattenException;
class ExceptionController
{
public function __invoke(FlattenException $exception)
{
}
}
```
after:
```php
use Symfony\Component\ErrorRenderer\Exception\FlattenException;
class ExceptionController
{
public function __invoke(FlattenException $e)
{
}
}
```
Intl
----

View File

@ -42,8 +42,6 @@ CHANGELOG
* Marked all dispatched event classes as `@final`
* Added `ErrorController` to enable the preview and error rendering mechanism
* Getting the container from a non-booted kernel is deprecated.
* Deprecated passing the `exception` attribute (instance of `Symfony\Component\Debug\Exception\FlattenException`)
to the configured controller of the `ExceptionListener`
4.3.0
-----