8000 Add CHANGELOG entry · symfony/symfony@23ff2ff · GitHub
[go: up one dir, main page]

Skip to content

Commit 23ff2ff

Browse files
committed
Add CHANGELOG entry
1 parent 09a870a commit 23ff2ff

File tree

1 file changed

+22
-0
lines changed

1 file changed

+22
-0
lines changed

src/Symfony/Component/HttpKernel/CHANGELOG.md

Lines changed: 22 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,28 @@ CHANGELOG
55
-----
66

77
* The `DebugHandlersListener` class has been marked as `final`
8+
* Added new Bundle directory convention consistent with standard skeletons:
9+
10+
└── AcmeBundle
11+
├── config/
12+
├── public/
13+
├── src/
14+
│ └── AcmeBundle.php
15+
├── templates/
16+
└── translations/
17+
18+
To make this work properly, it is necessary to change the root path of the bundle:
19+
20+
class AcmeBundle extends Bundle
21+
{
22+
public function getPath()
23+
{
24+
return \dirname(__DIR__);
25+
}
26+
}
27+
28+
As bundles must be compatible with many Symfony versions we are not deprecating
29+
the current directory convention yet, but it will be in future versions.
830

931
4.3.0
1032
-----

0 commit comments

Comments
 (0)
0