Skip to content
7 changes: 7 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,12 @@
# CHANGE LOG

## 3.18.0-dev

### Updates
- The unused legacy class `AlgoliaHelper` has been removed/
- Monolog v2 deprecation observed but maintaining compatibility with Magento 2.4.7 until v2.4.9 release.
- Updated unit and integration tests,

## 3.17.0-beta.2

### Bug fixes
Expand Down
350 changes: 0 additions & 350 deletions Helper/AlgoliaHelper.php

This file was deleted.

17 changes: 0 additions & 17 deletions Helper/Data.php
Original file line number Diff line number Diff line change
Expand Up @@ -165,23 +165,6 @@ public function deleteInactiveProducts($storeId): void
$this->productIndexBuilder->deleteInactiveProducts($storeId);
}

/**
* @param string $query
* @param int $storeId
* @param array|null $searchParams
* @param string|null $targetedIndex
* @return array
* @throws AlgoliaException|NoSuchEntityException
* @internal This method is currently unstable and should not be used. It may be revisited or fixed in a future version.
*
* @deprecated
* Use Algolia\AlgoliaSearch\Service\Product\BackendSearch::getSearchResult() instead
*/
public function getSearchResult(string $query, int $storeId, ?array $searchParams = null, ?string $targetedIndex = null): array
{
return $this->backendSearch->getSearchResult($query, $storeId, $searchParams, $targetedIndex);
}

/**
* @param $storeId
* @return bool
Expand Down
Loading