From 8653c795b466f61fa0e18ca8b2e9bdd37fb907fe Mon Sep 17 00:00:00 2001 From: ah-net <103565001+ah-net@users.noreply.github.com> Date: Tue, 30 Apr 2024 15:41:50 +0200 Subject: [PATCH 1/3] chore: update version (#28) * chore: update version * chore: remove composer version * chore: support tweakwise 6.0 * chore: support version 5.0 of attribute landing --- composer.json | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/composer.json b/composer.json index ed5a615..682f862 100644 --- a/composer.json +++ b/composer.json @@ -2,11 +2,10 @@ "name": "tweakwise/magento2-attributelanding-tweakwise", "description": "Provides compatibility between Attribute landing module and Tweakwise module.", "license": "OSL-3.0", - "version": "4.3.1", "require": { "php": ">=8.0 <8.3", - "tweakwise/magento2-tweakwise": "^5.7.4", - "emico/m2-attributelanding": "^4.1" + "tweakwise/magento2-tweakwise": ">=5.7.4", + "emico/m2-attributelanding": ">=4.1" }, "require-dev": { "symfony/finder": "^6.4.0", From 2612dc296abe01897e51651dba49d758ba758aa8 Mon Sep 17 00:00:00 2001 From: ah-net <103565001+ah-net@users.noreply.github.com> Date: Tue, 30 Apr 2024 15:42:25 +0200 Subject: [PATCH 2/3] fix: save tweakwise filter template --- src/view/adminhtml/web/js/filter-attributes.js | 1 - 1 file changed, 1 deletion(-) diff --git a/src/view/adminhtml/web/js/filter-attributes.js b/src/view/adminhtml/web/js/filter-attributes.js index ef7e66a..5df50fe 100644 --- a/src/view/adminhtml/web/js/filter-attributes.js +++ b/src/view/adminhtml/web/js/filter-attributes.js @@ -117,7 +117,6 @@ define([ }); //select different filter template - $('select[name="tweakwise_filter_template"]').unbind('change'); $('select[name="tweakwise_filter_template"]').on('change', function(evt) { $('select[name*="[attribute-tmp]"]').trigger('initAttributes'); }); From 27b696773e36d63f13f076d0ca8fd53ea6a3bc4a Mon Sep 17 00:00:00 2001 From: evs-xsarus <44158071+evs-xsarus@users.noreply.github.com> Date: Tue, 30 Apr 2024 15:58:23 +0200 Subject: [PATCH 3/3] Make installable on PHP 8.x (#24) * fix: make installable on php 8.3 --- composer.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/composer.json b/composer.json index 682f862..793d82c 100644 --- a/composer.json +++ b/composer.json @@ -3,7 +3,7 @@ "description": "Provides compatibility between Attribute landing module and Tweakwise module.", "license": "OSL-3.0", "require": { - "php": ">=8.0 <8.3", + "php": "^8.0", "tweakwise/magento2-tweakwise": ">=5.7.4", "emico/m2-attributelanding": ">=4.1" },