Skip to content

Commit

Permalink
Remove legacy changelog lines
Browse files Browse the repository at this point in the history
  • Loading branch information
nicolas-grekas committed Oct 15, 2019
1 parent e402f19 commit fdb9181
Show file tree
Hide file tree
Showing 3 changed files with 0 additions and 56 deletions.
27 changes: 0 additions & 27 deletions UPGRADE-4.4.md
Original file line number Diff line number Diff line change
Expand Up @@ -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
----
Expand Down
27 changes: 0 additions & 27 deletions UPGRADE-5.0.md
Original file line number Diff line number Diff line change
Expand Up @@ -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
----
Expand Down
2 changes: 0 additions & 2 deletions src/Symfony/Component/HttpKernel/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -15,8 +15,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
-----
Expand Down

0 comments on commit fdb9181

Please sign in to comment.