Mercurial > hg > isophonics-drupal-site
annotate vendor/symfony/event-dispatcher/CHANGELOG.md @ 19:fa3358dc1485 tip
Add ndrum files
author | Chris Cannam |
---|---|
date | Wed, 28 Aug 2019 13:14:47 +0100 |
parents | 1fec387a4317 |
children |
rev | line source |
---|---|
Chris@0 | 1 CHANGELOG |
Chris@0 | 2 ========= |
Chris@0 | 3 |
Chris@14 | 4 3.4.0 |
Chris@14 | 5 ----- |
Chris@14 | 6 |
Chris@14 | 7 * Implementing `TraceableEventDispatcherInterface` without the `reset()` method has been deprecated. |
Chris@14 | 8 |
Chris@14 | 9 3.3.0 |
Chris@14 | 10 ----- |
Chris@14 | 11 |
Chris@14 | 12 * The ContainerAwareEventDispatcher class has been deprecated. Use EventDispatcher with closure factories instead. |
Chris@14 | 13 |
Chris@0 | 14 3.0.0 |
Chris@0 | 15 ----- |
Chris@0 | 16 |
Chris@0 | 17 * The method `getListenerPriority($eventName, $listener)` has been added to the |
Chris@0 | 18 `EventDispatcherInterface`. |
Chris@0 | 19 * The methods `Event::setDispatcher()`, `Event::getDispatcher()`, `Event::setName()` |
Chris@0 | 20 and `Event::getName()` have been removed. |
Chris@0 | 21 The event dispatcher and the event name are passed to the listener call. |
Chris@0 | 22 |
Chris@0 | 23 2.5.0 |
Chris@0 | 24 ----- |
Chris@0 | 25 |
Chris@0 | 26 * added Debug\TraceableEventDispatcher (originally in HttpKernel) |
Chris@0 | 27 * changed Debug\TraceableEventDispatcherInterface to extend EventDispatcherInterface |
Chris@0 | 28 * added RegisterListenersPass (originally in HttpKernel) |
Chris@0 | 29 |
Chris@0 | 30 2.1.0 |
Chris@0 | 31 ----- |
Chris@0 | 32 |
Chris@0 | 33 * added TraceableEventDispatcherInterface |
Chris@0 | 34 * added ContainerAwareEventDispatcher |
Chris@0 | 35 * added a reference to the EventDispatcher on the Event |
Chris@0 | 36 * added a reference to the Event name on the event |
Chris@0 | 37 * added fluid interface to the dispatch() method which now returns the Event |
Chris@0 | 38 object |
Chris@0 | 39 * added GenericEvent event class |
Chris@0 | 40 * added the possibility for subscribers to subscribe several times for the |
Chris@0 | 41 same event |
Chris@0 | 42 * added ImmutableEventDispatcher |