Releases: ongr-archive/ConnectionsBundle
Releases · ongr-archive/ConnectionsBundle
v0.8.1
v0.8.0
v0.7.0
IMPROVEMENTS:
- Progress implemented for all import and sync comands (#158).
- Improved documentation.
- Added checks for shop existence in
ongr:sync:storage:create
and if noshop-id
is provided storage for active shop is created (#116). - Refactored ConsumeEventListener to simplify entity persistence (#165).
- Updated Tests.
FEATURES:
- Repository Crawler functionality implemented (#168).
CHANGES:
- Change log level for inconsistencies (#160).
- Changed import pipeline services to abstract. (#167, #173).
BUG FIXES:
- UrlInvalidatorService and SeoAwareTrait property problem (#162).
v0.6.3
v0.6.2
v0.6.1
v0.6.0
Please note: This version introduces breaking changes.
Changes and fixes
- Improved documentation. #141 #140
- Merged simple and composed relation into one and changed name to
ExtractionDescriptor
. #143 - Minor fixes. #144
Breaking changes from previous version
- Namespace
ONGR\ConnectionsBundle\Sync\Extractor\Relation
changed toONGR\ConnectionsBundle\Sync\Extractor\Descriptor
SimpleSqlRelation
andComposedSqlRelation
replaced byExtractionDescriptor
ExtractionDescriptor
constructor arguments rearranged.JoinStatement
ranamed toJoinRelation
RelationsCollection
renamed toExtractionCollection
v0.5.0
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.