v0.5.0
Pre-release
Pre-release
mindaugasbarysas
released this
02 Feb 13:43
·
100 commits
to master
since this release
Please note: This version introduces breaking changes.
Changes and fixes
- Improved documentation.
- Fixes memory and stack leak in Pipeline by changing ItemSkip method.
- Removed SyncJobs (#128).
- Removed DiffImport (#133).
Breaking changes from previous version
- Item skipping has changed.
This means that if your Modifier event listener throws anItemSkipException
it will not be caught.
Please useItemSkipper::skip(ItemPipelineEvent $event, $reason = '')
to skip items. AbstractImportModifyEventListener
definition has changed.
Abstract protected functionmodify
now accepts two parameters:
(AbstractImportItem $eventItem, ItemPipelineEvent $event)
.
Please update your modifiers extendingAbstractImportModifyEventListener
class accordingly.