[HttpKernel] added CHANGELOG

This commit is contained in:
Fabien Potencier 2012-04-26 21:46:32 +02:00
parent 1acc7608de
commit 42d7151e51
2 changed files with 19 additions and 13 deletions

View File

@ -353,19 +353,6 @@ To get the diff between two versions, go to https://github.com/symfony/symfony/c
to one of these methods must be checked and wrapped in a `rawurldecode()` if
needed.
### HttpKernel
* added CacheClearerInterface
* added a kernel.terminate event
* added a Stopwatch class
* added WarmableInterface
* improved extensibility between bundles
* added Memcache(d)-based profiler storages
* added a File-based profiler storage
* added a MongoDB-based profiler storage
* added a Redis-based profiler storage
* moved Filesystem class to its own component
### Routing
* the UrlMatcher does not throw a \LogicException any more when the required scheme is not the current one

View File

@ -0,0 +1,19 @@
CHANGELOG
=========
2.1.0
-----
* added the HTTP method to the profiler storage
* updated all listeners to implement EventSubscriberInterface
* added TimeDataCollector
* added ContainerAwareTraceableEventDispatcher
* moved TraceableEventDispatcherInterface to the EventDispatcher component
* added RouterListener, LocaleListener, and StreamedResponseListener
* added CacheClearerInterface (and ChainCacheClearer)
* added a kernel.terminate event (via TerminableInterface and PostResponseEvent)
* added a Stopwatch class
* added WarmableInterface
* improved extensibility between bundles
* added profiler storages for Memcache(d), File-based, MongoDB, Redis
* moved Filesystem class to its own component