Upgrade the ProductNew module
Edit on GitHubUpgrading from version 1.1* to version 1.2*
Prerequisites
This migration guide is a part of the Search migration effort. Prior to upgarding this module, make sure you have completed all the steps from the Search Migration Guide.
To upgrade to the new version of the module, do the following:
- Remove all deprecated query expander and result formatter plugins coming from the Search module (if any) from
Pyz\Client\ProductNew\ProductNewDependencyProvider
:
\Spryker\Client\Search\Plugin\Elasticsearch\QueryExpander\FacetQueryExpanderPlugin;
\Spryker\Client\Search\Plugin\Elasticsearch\QueryExpander\LocalizedQueryExpanderPlugin;
\Spryker\Client\Search\Plugin\Elasticsearch\QueryExpander\PaginatedQueryExpanderPlugin;
\Spryker\Client\Search\Plugin\Elasticsearch\QueryExpander\SortedQueryExpanderPlugin;
\Spryker\Client\Search\Plugin\Elasticsearch\QueryExpander\StoreQueryExpanderPlugin;
\Spryker\Client\Search\Plugin\Elasticsearch\ResultFormatter\FacetResultFormatterPlugin;
\Spryker\Client\Search\Plugin\Elasticsearch\ResultFormatter\PaginatedResultFormatterPlugin;
\Spryker\Client\Search\Plugin\Elasticsearch\ResultFormatter\SortedResultFormatterPlugin;
- Enable the new plugins from SearchElasticsearch in
Pyz\Client\ProductNew\ProductNewDependencyProvider
:
Pyz\Client\ProductNew
<?php
namespace Pyz\Client\ProductNew;
...
use Spryker\Client\ProductNew\ProductNewDependencyProvider as SprykerProductNewDependencyProvider;
use Spryker\Client\SearchElasticsearch\Plugin\QueryExpander\FacetQueryExpanderPlugin;
use Spryker\Client\SearchElasticsearch\Plugin\QueryExpander\LocalizedQueryExpanderPlugin;
use Spryker\Client\SearchElasticsearch\Plugin\QueryExpander\PaginatedQueryExpanderPlugin;
use Spryker\Client\SearchElasticsearch\Plugin\QueryExpander\SortedQueryExpanderPlugin;
use Spryker\Client\SearchElasticsearch\Plugin\QueryExpander\StoreQueryExpanderPlugin;
use Spryker\Client\SearchElasticsearch\Plugin\ResultFormatter\FacetResultFormatterPlugin;
use Spryker\Client\SearchElasticsearch\Plugin\ResultFormatter\PaginatedResultFormatterPlugin;
use Spryker\Client\SearchElasticsearch\Plugin\ResultFormatter\SortedResultFormatterPlugin;
class ProductNewDependencyProvider extends SprykerProductNewDependencyProvider
{
...
/**
* @return \Spryker\Client\SearchExtension\Dependency\Plugin\QueryExpanderPluginInterface[]
*/
protected function getNewProductsQueryExpanderPlugins()
{
return [
...
new StoreQueryExpanderPlugin(),
new LocalizedQueryExpanderPlugin(),
new SortedQueryExpanderPlugin(),
new PaginatedQueryExpanderPlugin(),
/**
* FacetQueryExpanderPlugin needs to be after other query expanders which filters down the results.
*/
new FacetQueryExpanderPlugin(),
];
}
/**
* @return \Spryker\Client\SearchExtension\Dependency\Plugin\ResultFormatterPluginInterface[]
*/
protected function getNewProductsResultFormatterPlugins()
{
return [
...
new FacetResultFormatterPlugin(),
new SortedResultFormatterPlugin(),
new PaginatedResultFormatterPlugin(),
];
}
}
Thank you!
For submitting the form