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

Skip to content

Commit ebe80c9

Browse files
committed
Add CHANGELOG entry
1 parent 09a870a commit ebe80c9

File tree

2 files changed

+27
-0
lines changed

2 files changed

+27
-0
lines changed

UPGRADE-4.4.md

Lines changed: 26 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -109,6 +109,32 @@ HttpKernel
109109
----------
110110

111111
* The `DebugHandlersListener` class has been marked as `final`
112+
* Added new Bundle directory convention consistent with standard skeletons:
113+
114+
```
115+
└── AcmeBundle
116+
├── config/
117+
├── public/
118+
├── src/
119+
│ └── AcmeBundle.php
120+
├── templates/
121+
└── translations/
122+
```
123+
124+
To make this work properly, it is necessary to change the root path of the bundle:
125+
126+
```php
127+
class AcmeBundle extends Bundle
128+
{
129+
public function getPath()
130+
{
131+
return \dirname(__DIR__);
132+
}
133+
}
134+
```
135+
136+
As bundles must be compatible with many Symfony versions we are not deprecating
137+
the current directory convention yet, but it will be in future versions.
112138

113139
Lock
114140
----

src/Symfony/Component/HttpKernel/CHANGELOG.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,7 @@ CHANGELOG
55
-----
66

77
* The `DebugHandlersListener` class has been marked as `final`
8+
* Added new Bundle directory convention consistent with standard skeletons
89

910
4.3.0
1011
-----

0 commit comments

Comments
 (0)
0