Skip to content

Commit

Permalink
Add CHANGELOG entry
Browse files Browse the repository at this point in the history
  • Loading branch information
yceruto committed Aug 13, 2019
1 parent 09a870a commit 23ff2ff
Showing 1 changed file with 22 additions and 0 deletions.
22 changes: 22 additions & 0 deletions src/Symfony/Component/HttpKernel/CHANGELOG.md
Expand Up @@ -5,6 +5,28 @@ CHANGELOG
-----

* The `DebugHandlersListener` class has been marked as `final`
* Added new Bundle directory convention consistent with standard skeletons:

└── AcmeBundle
├── config/
├── public/
├── src/
│ └── AcmeBundle.php
├── templates/
└── translations/

To make this work properly, it is necessary to change the root path of the bundle:

class AcmeBundle extends Bundle
{
public function getPath()
{
return \dirname(__DIR__);
}
}

As bundles must be compatible with many Symfony versions we are not deprecating
the current directory convention yet, but it will be in future versions.

4.3.0
-----
Expand Down

0 comments on commit 23ff2ff

Please sign in to comment.