Skip to content

Commit 96ab5ca

Browse files
authored
Merge branch 'release/3.11.1-beta' into update/MAGE-726
2 parents f6c4cde + d818976 commit 96ab5ca

File tree

24 files changed

+1080
-426
lines changed

24 files changed

+1080
-426
lines changed

Block/Configuration.php

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -208,7 +208,9 @@ public function getConfiguration()
208208
'nbOfCategoriesSuggestions' => $config->getNumberOfCategoriesSuggestions(),
209209
'nbOfQueriesSuggestions' => $config->getNumberOfQueriesSuggestions(),
210210
'isDebugEnabled' => $config->isAutocompleteDebugEnabled(),
211-
'isNavigatorEnabled' => $config->isAutocompleteNavigatorEnabled()
211+
'isNavigatorEnabled' => $config->isAutocompleteNavigatorEnabled(),
212+
'debounceMilliseconds' => $config->getAutocompleteDebounceMilliseconds(),
213+
'minimumCharacters' => $config->getAutocompleteMinimumCharacterLength()
212214
],
213215
'landingPage' => [
214216
'query' => $this->getLandingPageQuery(),
@@ -267,7 +269,7 @@ public function getConfiguration()
267269
'autofocus' => true,
268270
'resultPageUrl' => $this->getCatalogSearchHelper()->getResultUrl(),
269271
'request' => [
270-
'query' => html_entity_decode($query),
272+
'query' => htmlspecialchars(html_entity_decode($query)),
271273
'refinementKey' => $refinementKey,
272274
'refinementValue' => $refinementValue,
273275
'categoryId' => $categoryId,

CHANGELOG.md

Lines changed: 22 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,29 @@
11
# CHANGE LOG
22

3-
## 3.11.0-beta
3+
## 3.11.0
44

5-
### Bug Fixes
6-
- Support for Merch Studio and the Visual Merchandiser.
5+
### Updates
6+
- Added support for Merchandising Studio and Visual Merchandiser by indexing flattened categoryID attribute to product index.
77
- Upgraded the Algolia PHP client to version 3.3.2
8-
- Upgraded the Algolia insight 2.6.0
9-
- Preserve facet selections after adding an item to the cart from the PLP
10-
- Fixes related to Neural Search compatibility
8+
- Upgraded the Algolia insights to version 2.6.0
9+
- Added ability to preserve facets selection after adding an item to the cart from the PLP
10+
- Added ability to hide Pagination when results have only one page in InstantSearch page
11+
- Increased the character limit of class field in algoliasearch_queue, algoliasearch_queue_archive table
12+
- Added ability to debounce and control the query length in autocomplete
13+
- Added ability to turn off suggestions and pages indexing
14+
15+
### Bug Fixes
16+
- Fixed vulnerability in query (htmlspecialcharacters) while searching using special characters
17+
- Fixed issues related to overlooked special characters in autocomplete search queries.
18+
- Fixed error message 'cannot apply the deleteOndex operation on a replica index' in admin
19+
- Fixed Bundle Product Price indexing issue for Dynamic and Static Product Types
20+
21+
22+
## 3.10.6
23+
24+
### Bug Fixes
25+
- Replaced referenceBlock by referenceContainer following Magento best practices.
26+
1127

1228
## 3.10.5
1329

0 commit comments

Comments
 (0)