Skip to content

Commit

Permalink
Merge pull request #780 from Nosto/release/6.0.3
Browse files Browse the repository at this point in the history
Release/6.0.3
  • Loading branch information
supercid authored Jun 29, 2022
2 parents 41e65c4 + 2801f56 commit 8fc7a1a
Show file tree
Hide file tree
Showing 7 changed files with 9 additions and 6 deletions.
3 changes: 3 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,8 @@
All notable changes to this project will be documented in this file. This project adheres to Semantic Versioning.

### 6.0.3
* Indexer - Prevent insertion of duplicated rows to be delete

### 6.0.2
* Indexer - Reduces completed queue cleanup time to 1 hour instead of 8
* Indexer Sync Service - Uses Magento Product repository to fetch product data in bulk, reducing amount of database queries
Expand Down
2 changes: 1 addition & 1 deletion Model/Service/Update/QueueService.php
Original file line number Diff line number Diff line change
Expand Up @@ -151,7 +151,7 @@ public function addIdsToDeleteQueue($productIds, Store $store)
$store,
$idBatch
);
if (!empty($queueEntry->getProductIds())) {
if (!empty($queueEntry->getProductIds()) && !$this->queueRepository->isEntryDuplicated($queueEntry)) {
$this->queueRepository->save($queueEntry); // @codingStandardsIgnoreLine
}
}
Expand Down
2 changes: 1 addition & 1 deletion Setup/Patch/Data/AddCustomerReference.php
Original file line number Diff line number Diff line change
Expand Up @@ -157,6 +157,6 @@ public function addCustomerReference()
*/
public static function getVersion(): string
{
return '6.0.2';
return '6.0.3';
}
}
2 changes: 1 addition & 1 deletion Setup/Patch/Data/AlterCustomerReferenceNonEditable.php
Original file line number Diff line number Diff line change
Expand Up @@ -120,6 +120,6 @@ public function alterCustomerReferenceNonEditable()
*/
public static function getVersion(): string
{
return '6.0.2';
return '6.0.3';
}
}
2 changes: 1 addition & 1 deletion Setup/Patch/Data/PopulateCustomerReference.php
Original file line number Diff line number Diff line change
Expand Up @@ -144,6 +144,6 @@ public function populateCustomerReference()
*/
public static function getVersion(): string
{
return '6.0.2';
return '6.0.3';
}
}
2 changes: 1 addition & 1 deletion composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
"name": "nosto/module-nostotagging",
"description": "Increase your conversion rate and average order value by delivering your customers personalized product recommendations throughout their shopping journey.",
"type": "magento2-module",
"version": "6.0.2",
"version": "6.0.3",
"require-dev": {
"phpmd/phpmd": "^2.5",
"sebastian/phpcpd": "*",
Expand Down
2 changes: 1 addition & 1 deletion etc/module.xml
Original file line number Diff line number Diff line change
Expand Up @@ -37,5 +37,5 @@
<!--suppress XmlUnboundNsPrefix -->
<config xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:noNamespaceSchemaLocation="urn:magento:framework:Module/etc/module.xsd">
<module name="Nosto_Tagging" setup_version="6.0.2"/>
<module name="Nosto_Tagging" setup_version="6.0.3"/>
</config>

0 comments on commit 8fc7a1a

Please sign in to comment.