You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: src/Symfony/Bundle/FrameworkBundle/CHANGELOG.md
+9-4Lines changed: 9 additions & 4 deletions
Original file line number
Diff line number
Diff line change
@@ -4,11 +4,16 @@ CHANGELOG
4
4
2.2.0
5
5
-----
6
6
7
-
*[BC BREAK] restricted the `Symfony\Bundle\FrameworkBundle\HttpKernel::render()` method to only accept URIs as reference
7
+
* added a new `uri_signer` service to help sign URIs
8
+
* deprecated `Symfony\Bundle\FrameworkBundle\HttpKernel::render()` and `Symfony\Bundle\FrameworkBundle\HttpKernel::forward()`
9
+
* deprecated the `Symfony\Bundle\FrameworkBundle\HttpKernel` class in favor of `Symfony\Component\HttpKernel\DependencyInjection\ContainerAwareHttpKernel`
10
+
* added support for adding new HTTP content rendering strategies (like ESI and Hinclude)
11
+
in the DIC via the `kernel.content_renderer_strategy` tag
12
+
*[BC BREAK] restricted the `Symfony\Bundle\FrameworkBundle\HttpKernel::render()` method to only accept URIs or ControllerReference instances
8
13
*`Symfony\Bundle\FrameworkBundle\HttpKernel::render()` method signature changed and the first argument
9
-
must now be a URI (the `generateInternalUri()` method was removed)
10
-
* The internal routes have been removed (`Resources/config/routing/internal.xml`)
11
-
* The `render` method of the `actions` templating helper signature and arguments changed:
14
+
must now be a URI or a ControllerReference instance (the `generateInternalUri()` method was removed)
15
+
* The internal routes (`Resources/config/routing/internal.xml`) have been replaced with a new proxy route (`Resources/config/routing/proxy.xml`)
16
+
* The `render` method of the `actions` templating helper signature and arguments changed
12
17
* replaced Symfony\Bundle\FrameworkBundle\Controller\TraceableControllerResolver by Symfony\Component\HttpKernel\Controller\TraceableControllerResolver
13
18
* replaced Symfony\Component\HttpKernel\Debug\ContainerAwareTraceableEventDispatcher by Symfony\Component\HttpKernel\Debug\TraceableEventDispatcher
0 commit comments