From f1cd0e388d23a4a670cbd4f5546c4e67c61e2fa8 Mon Sep 17 00:00:00 2001 From: Ratikant Singh Date: Wed, 18 May 2022 20:59:40 +0530 Subject: [PATCH 1/4] Release 3.3.1 readme update --- README.md | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index 34fcffdfc..a369357ae 100755 --- a/README.md +++ b/README.md @@ -1,8 +1,11 @@ Algolia Search for Magento 2 ================== -![Latest version](https://img.shields.io/badge/latest-3.3.0-green.svg) -![Magento 2](https://img.shields.io/badge/Magento-2.4.X-blue) +![Latest version](https://img.shields.io/badge/latest-3.3.1-green +) +![Magento 2](https://img.shields.io/badge/Magento-2.4.x-orange) + +![PHP](https://img.shields.io/badge/PHP-7.3,7.4-blue) [![CircleCI](https://circleci.com/gh/algolia/algoliasearch-magento-2/tree/master.svg?style=svg)](https://circleci.com/gh/algolia/algoliasearch-magento-2/tree/master) From c6851b32b86da51811759e45ea85d9bcb183261c Mon Sep 17 00:00:00 2001 From: Ratikant Singh Date: Wed, 18 May 2022 21:07:29 +0530 Subject: [PATCH 2/4] changelog updated for release 3.3.1 --- CHANGELOG.md | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/CHANGELOG.md b/CHANGELOG.md index 73b9fbafb..0a00d0b94 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,10 @@ # CHANGE LOG +## 3.3.1 + +### UPDATES +- Updated to support Guzzle Http version with 6.3 and 7.4 for compatibility with Magento 2.4.x (#1187) + ## 3.3.0 ### UPDATES From 6485850d1ca6f43877b5d68933d9bf85fc638dbc Mon Sep 17 00:00:00 2001 From: Ratikant Singh Date: Wed, 18 May 2022 22:13:10 +0530 Subject: [PATCH 3/4] Clearning Indices --- Test/Integration/TestCase.php | 1 + 1 file changed, 1 insertion(+) diff --git a/Test/Integration/TestCase.php b/Test/Integration/TestCase.php index 7435cd61f..c354bb69b 100644 --- a/Test/Integration/TestCase.php +++ b/Test/Integration/TestCase.php @@ -42,6 +42,7 @@ abstract class TestCase extends \TC public function setUp(): void { + $this->clearIndices(); $this->bootstrap(); } From c7645b36faa705c0eb5f17ec68be0cf12d4749e8 Mon Sep 17 00:00:00 2001 From: Ratikant Singh Date: Wed, 18 May 2022 22:18:08 +0530 Subject: [PATCH 4/4] Revert Clearning Indices --- Test/Integration/TestCase.php | 1 - 1 file changed, 1 deletion(-) diff --git a/Test/Integration/TestCase.php b/Test/Integration/TestCase.php index c354bb69b..7435cd61f 100644 --- a/Test/Integration/TestCase.php +++ b/Test/Integration/TestCase.php @@ -42,7 +42,6 @@ abstract class TestCase extends \TC public function setUp(): void { - $this->clearIndices(); $this->bootstrap(); }