Breaking: #360 - Remove Split Up ProcessOrderCreateEvent Feature Toggle
See Issue 360
Description
The configuration 'SplitUpProcessOrderCreateEvent' was removed. As a result, several events are now triggered one after the other when the order is placed in the frontend.
The current sequence of these events is:
\Extcode\
Cart\ Event\ Order\ Create Event \Extcode\
Cart\ Event\ Order\ Number Generator Event \Extcode\
Cart\ Event\ Order\ Finish Event \Extcode\
Cart\ Event\ Order\ Payment Event \Extcode\
Cart\ Event\ Order\ Stock Event
Thereby the \Extcode\
was added in
this version and contains in this version the registered event
cart--
which was previously contained in
\Extcode\
.
Affected Installations
This affects all installations that have not yet been switched via the
FeatureToggle and have registered their own EventListeners on
Extcode\
.
Furthermore, installations that have registered their own EventListeners on
\Extcode\
are affected.
Migration
In case the FeatureToggle was not activated, but no own EventListeners were registered, nothing has to be adjusted at all. The ordering process should be tested.
In case the FeatureToggle was not activated and own EventListeners were
registered on Extcode\
, the registered
EventListeners are to be registered on the new events. The order process
should be checked in any case.
In case the FeatureToggle was enabled and own EventListeners were registered
to \Extcode\
, check if these EventListeners must
not be registered to \Extcode\
.