diff --git a/CHANGELOG.md b/CHANGELOG.md index fc5791f09..5c4dce0c5 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,9 +2,16 @@ ## 3.10.1 +### UPDATES +- Added recommended js version in readme file. + ### Bug Fixes - Add caching on category name lookup (scoped by store) to fix slowness in indexing. - Prevent loss of synonyms while copying from tmp index during Indexing in Algolia Dashboard. +- Fixed the translation issue of labels in Algolia autocomplete dropdown +- Ensured compatibility of the extension with PHP 7.4 +- Resolved the deployment issue related to prefixing Magento database tables + ## 3.10.0 diff --git a/Helper/Entity/ProductHelper.php b/Helper/Entity/ProductHelper.php index 89246885c..814f8805a 100755 --- a/Helper/Entity/ProductHelper.php +++ b/Helper/Entity/ProductHelper.php @@ -505,7 +505,7 @@ public function setSettings($indexName, $indexNameTmp, $storeId, $saveToTmpIndic try { $this->algoliaHelper->copySynonyms($indexName, $indexNameTmp); $this->logger->log(' - Copying synonyms from production index to TMP one to not to erase them with the index move. + Copying synonyms from production index to TMP one to not erase them with the index move. '); } catch (AlgoliaException $e) { $this->logger->error('Error encountered while copying synonyms: ' . $e->getMessage());