Releases: scandipwa/catalog-graphql
Category image patch
Layered price filter now respects store currency
What's inside
- Layered price filter now respects store currency
That's all there is to it!
Fuzziness level and discount calculation patch
What's inside
- Discount calculation patch
- Fuzziness level support
That's all there is to it :)
Price-range patch
What's inside
- Patch for the price-range, it now does not have the upper-bound
That's all there is to it :)
Query complexity limit increased to 1000
What's inside
- Query complexity limit increased to 1000
And it's all there is to it :)
Currency and category display mode
What's inside
- Currency set'er / get'er
- Category "display mode" support
Feature break-down
Currency set'er / get'er
You can now get the list of available currencies using currencyData
query. You can also set the currency for user, by using saveSelectedCurrency
mutation.
Stability improvements
What's inside
- New product filter patch
- Removal of product entity attributes for AST
Feature break-down
New product filter patch
The product filter attributes news_from_date
and news_to_date
are now included in the schema under the ProductAttributeFilterInput
input.
Removal of product entity attributes for AST
Thanks to awesome @dfelton, who found out the ProductEntityAttributesForAst.php
plugin does not work properly. After short investigation, we removed it, as it no longer used.
Attributes moved to performance module
What's inside
s_attributes
moved toscandipwa/performance
module
And it's all there is to it :) Thanks to @fooman for advice!
Magento 2.4.1 support
What's inside
- Support for Magento 2.4.1
Feature break-down
Support for Magento 2.4.1
The support is added. Thus, it took many breaking changes to implement.
- Context is now available in the collection processors
Resolver/Products/Query/Filter.php::getResult
no longer has custom argumentsModel/Resolver/Products/DataProvider/Product.php::getList
no longer has custom arguments- Attributes field
attributes
is now renamed tos_attributes
in schema - Field
category
override has been removed, you no longer can query category byurl_path
- Input
ProductAttributeFilterInput
fieldsnews_from_date
andnews_to_date
are removed from schema, as they are auto-generated - Input
ProductAttributeFilterInput
fieldscategory_url_key
andcategory_url_path
are removed from schema, as they no longer are used - The
Model/Resolver/Products/Query/Filter.php
andModel/Resolver/Products/Query/Search.php
are refactored and now extend the original Magento 2 classes, thus implementing the interface of the original class
Add table prefix support
What's inside
- Add table prefix support
Feature break-down
Add table prefix support
The awesome @santosh-gaggle fixed the table prefix issue. He is awesome!