Skip to content

Commit 8112bf3

Browse files
committed
Merge remote-tracking branch 'origin/release/3.13.4' into release/3.14.0-beta
2 parents 88e684b + 339cabf commit 8112bf3

File tree

4 files changed

+18
-6
lines changed

4 files changed

+18
-6
lines changed

CHANGELOG.md

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,14 @@
11
# CHANGE LOG
22

3+
## 3.13.4
4+
5+
### Bug Fixes
6+
- Fixed XSS vulnerability issue in InstantSearch search box
7+
- Fixed Algolia merchandising product listing issue
8+
- Fixed lock timeout issue on indexing queue integration test
9+
- Community fix added - job queue dropping jobs from sandwiched full reindexes - thank you @pikulsky
10+
11+
312
## 3.13.3
413

514
### Updates

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
Algolia Search & Discovery extension for Magento 2
22
==================================================
33

4-
![Latest version](https://img.shields.io/badge/latest-3.13.3-green)
4+
![Latest version](https://img.shields.io/badge/latest-3.13.4-green)
55
![Magento 2](https://img.shields.io/badge/Magento-2.4.x-orange)
66

77
![PHP](https://img.shields.io/badge/PHP-8.1%2C8.2%2C8.3-blue)

Test/Integration/QueueTest.php

Lines changed: 7 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -30,9 +30,9 @@ public function setUp(): void
3030

3131
$this->jobsCollectionFactory = $this->getObjectManager()->create(JobsCollectionFactory::class);
3232

33-
/** @var ResourceConnection $resouce */
34-
$resouce = $this->getObjectManager()->create(ResourceConnection::class);
35-
$this->connection = $resouce->getConnection();
33+
/** @var ResourceConnection $resource */
34+
$resource = $this->getObjectManager()->create(ResourceConnection::class);
35+
$this->connection = $resource->getConnection();
3636

3737
$this->queue = $this->getObjectManager()->create(Queue::class);
3838
}
@@ -135,6 +135,9 @@ public function testExecute()
135135
$this->assertEquals(0, count($rows)); */
136136
}
137137

138+
/**
139+
* @magentoDbIsolation disabled
140+
*/
138141
public function testSettings()
139142
{
140143
$this->markTestIncomplete(self::INCOMPLETE_REASON);
@@ -810,7 +813,7 @@ public function testHugeJob()
810813
{
811814
// Default value - maxBatchSize = 1000
812815
$this->setConfig('algoliasearch_queue/queue/number_of_job_to_run', 10);
813-
$this->setConfig('algoliasearch_advanced/advanced/number_of_element_by_page', 100);
816+
$this->setConfig('algoliasearch_advanced/queue/number_of_element_by_page', 100);
814817

815818
$productIds = range(1, 5000);
816819
$jsonProductIds = json_encode($productIds);

etc/adminhtml/system.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1208,7 +1208,7 @@
12081208
<comment>
12091209
<![CDATA[
12101210
Do you want to use <code>partialUpdateObjects</code> instead of <code>addObjects</code>?<br>
1211-
You should enable this option if you want to update only some attributes of your records from an external source without avoiding overriding Magento data.
1211+
You should enable this option if you want to update only some attributes of your records from an external source without overriding Magento data.
12121212
]]>
12131213
</comment>
12141214
</field>

0 commit comments

Comments
 (0)