Chris@0: CHANGELOG Chris@0: ========= Chris@0: Chris@14: 3.4.0 Chris@14: ----- Chris@14: Chris@14: * Implementing `TraceableEventDispatcherInterface` without the `reset()` method has been deprecated. Chris@14: Chris@14: 3.3.0 Chris@14: ----- Chris@14: Chris@14: * The ContainerAwareEventDispatcher class has been deprecated. Use EventDispatcher with closure factories instead. Chris@14: Chris@0: 3.0.0 Chris@0: ----- Chris@0: Chris@0: * The method `getListenerPriority($eventName, $listener)` has been added to the Chris@0: `EventDispatcherInterface`. Chris@0: * The methods `Event::setDispatcher()`, `Event::getDispatcher()`, `Event::setName()` Chris@0: and `Event::getName()` have been removed. Chris@0: The event dispatcher and the event name are passed to the listener call. Chris@0: Chris@0: 2.5.0 Chris@0: ----- Chris@0: Chris@0: * added Debug\TraceableEventDispatcher (originally in HttpKernel) Chris@0: * changed Debug\TraceableEventDispatcherInterface to extend EventDispatcherInterface Chris@0: * added RegisterListenersPass (originally in HttpKernel) Chris@0: Chris@0: 2.1.0 Chris@0: ----- Chris@0: Chris@0: * added TraceableEventDispatcherInterface Chris@0: * added ContainerAwareEventDispatcher Chris@0: * added a reference to the EventDispatcher on the Event Chris@0: * added a reference to the Event name on the event Chris@0: * added fluid interface to the dispatch() method which now returns the Event Chris@0: object Chris@0: * added GenericEvent event class Chris@0: * added the possibility for subscribers to subscribe several times for the Chris@0: same event Chris@0: * added ImmutableEventDispatcher