annotate vendor/symfony/event-dispatcher/CHANGELOG.md @ 0:4c8ae668cc8c

Initial import (non-working)
author Chris Cannam
date Wed, 29 Nov 2017 16:09:58 +0000
parents
children 1fec387a4317
rev   line source
Chris@0 1 CHANGELOG
Chris@0 2 =========
Chris@0 3
Chris@0 4 3.0.0
Chris@0 5 -----
Chris@0 6
Chris@0 7 * The method `getListenerPriority($eventName, $listener)` has been added to the
Chris@0 8 `EventDispatcherInterface`.
Chris@0 9 * The methods `Event::setDispatcher()`, `Event::getDispatcher()`, `Event::setName()`
Chris@0 10 and `Event::getName()` have been removed.
Chris@0 11 The event dispatcher and the event name are passed to the listener call.
Chris@0 12
Chris@0 13 2.5.0
Chris@0 14 -----
Chris@0 15
Chris@0 16 * added Debug\TraceableEventDispatcher (originally in HttpKernel)
Chris@0 17 * changed Debug\TraceableEventDispatcherInterface to extend EventDispatcherInterface
Chris@0 18 * added RegisterListenersPass (originally in HttpKernel)
Chris@0 19
Chris@0 20 2.1.0
Chris@0 21 -----
Chris@0 22
Chris@0 23 * added TraceableEventDispatcherInterface
Chris@0 24 * added ContainerAwareEventDispatcher
Chris@0 25 * added a reference to the EventDispatcher on the Event
Chris@0 26 * added a reference to the Event name on the event
Chris@0 27 * added fluid interface to the dispatch() method which now returns the Event
Chris@0 28 object
Chris@0 29 * added GenericEvent event class
Chris@0 30 * added the possibility for subscribers to subscribe several times for the
Chris@0 31 same event
Chris@0 32 * added ImmutableEventDispatcher