From 7029c21b3d74172e8274a1edd64b904f1fc2b80b Mon Sep 17 00:00:00 2001 From: Fabien Potencier Date: Thu, 26 Apr 2012 22:00:57 +0200 Subject: [PATCH] [EventDispatcher] added CHANGELOG --- CHANGELOG-2.1.md | 7 ------- .../Component/EventDispatcher/CHANGELOG.md | 15 +++++++++++++++ 2 files changed, 15 insertions(+), 7 deletions(-) create mode 100644 src/Symfony/Component/EventDispatcher/CHANGELOG.md diff --git a/CHANGELOG-2.1.md b/CHANGELOG-2.1.md index 2e4f97e11a..f4bdb2a13b 100644 --- a/CHANGELOG-2.1.md +++ b/CHANGELOG-2.1.md @@ -200,13 +200,6 @@ To get the diff between two versions, go to https://github.com/symfony/symfony/c * added a way to get parsing errors for Crawler::addHtmlContent() and Crawler::addXmlContent() via libxml functions * added support for submitting a form without a submit button -### EventDispatcher - - * added a reference to the EventDispatcher on the Event - * added a reference to the Event name on the event - * added fluid interface to the dispatch() method which now returns the Event object - * added GenericEvent event class - ### Form * [BC BREAK] ``read_only`` field attribute now renders as ``readonly="readonly"``, use ``disabled`` instead diff --git a/src/Symfony/Component/EventDispatcher/CHANGELOG.md b/src/Symfony/Component/EventDispatcher/CHANGELOG.md new file mode 100644 index 0000000000..21bc2aca8f --- /dev/null +++ b/src/Symfony/Component/EventDispatcher/CHANGELOG.md @@ -0,0 +1,15 @@ +CHANGELOG +========= + +2.1.0 +----- + + * added TraceableEventDispatcherInterface + * added ContainerAwareEventDispatcher + * added a reference to the EventDispatcher on the Event + * added a reference to the Event name on the event + * added fluid interface to the dispatch() method which now returns the Event + object + * added GenericEvent event class + * added the possibility for subscribers to subscribe several times for the + same event