Skip to content

Commit 933075e

Browse files
author
Jan Petr
authored
Merge pull request #806 from algolia/bump_190
Bump to 1.9.0
2 parents 5391649 + e051503 commit 933075e

File tree

6 files changed

+32
-5
lines changed

6 files changed

+32
-5
lines changed

CHANGELOG.md

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

3+
### 1.9.0
4+
5+
#### FEATURES
6+
- JavaScript custom events to easily extend extension's front end (#642, [Documentation](https://community.algolia.com/magento/doc/m1/analytics/))
7+
- Analytics - the extension now uses Magento's GA to measure searches (#754)
8+
- New queue processing mechanism which makes queue processing much more optimized in terms of Algolia operations and processing time (#757, #775)
9+
- Create a "debug" script which generates a file with dumped Algolia configuration. This file then can be sent to Algolia's support for easier investigation (#777)
10+
- Option to send an extra Algolia settings to Algolia indices (#770)
11+
- Ability to enabled / disable indexing and front end search separatly (#793)
12+
13+
#### UPDATES
14+
- The extension now completely removes `<script>` and `<style>` tags with its content from CMS pages content (#765)
15+
- The extension now initializes a Magento translator in order to make it available in custom events' methods (#789)
16+
- Test container now accepts two parameters (#794):
17+
- `--xdebug` to install the container with XDebug
18+
- `--filter` to filter running tests
19+
- `Engine` class is now loaded via `getResourceModel` method (#798)
20+
21+
#### FIXES
22+
- Fixed `clearfix` class in CSS (#772)
23+
- Fixed the issue when search box cursor was moved to the end of a search query (#779)
24+
- Fixes category refinement on category page power by instant search when page reload was performed (#783)
25+
- Fixed the issue when instant search results stayed on the page even after click on cross in a search box (#784)
26+
- Fixed the issue when `array_combine()` method could be called with empty array (#790)
27+
- Fixed pagination on IS page (#805)
28+
29+
330
### 1.8.1
431

532
#### FEATURES

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ This extension replaces the default search of Magento with a typo-tolerant, fast
77

88
See features and benefits of [Algolia Search Extension for Magento](https://community.algolia.com/magento).
99

10-
![Latest version](https://img.shields.io/badge/latest-1.8.1-green.svg)
10+
![Latest version](https://img.shields.io/badge/latest-1.9.0-green.svg)
1111
[![Build Status](https://travis-ci.org/algolia/algoliasearch-magento.svg?branch=master)](https://travis-ci.org/algolia/algoliasearch-magento)
1212
![PHP >= 5.3](https://img.shields.io/badge/php-%3E=5.3-green.svg)
1313

app/code/community/Algolia/Algoliasearch/etc/config.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
<config>
33
<modules>
44
<Algolia_Algoliasearch>
5-
<version>1.8.1</version>
5+
<version>1.9.0</version>
66
</Algolia_Algoliasearch>
77
</modules>
88
<frontend>

app/code/community/Algolia/Algoliasearch/etc/system.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
<algoliasearch translate="label" module="algoliasearch">
55
<label>
66
<![CDATA[
7-
Algolia Search 1.8.1
7+
Algolia Search 1.9.0
88
<style>
99
.algoliasearch-admin-menu span {
1010
padding-left: 38px !important;

app/etc/modules/Algolia_Algoliasearch.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
<Algolia_Algoliasearch>
55
<active>true</active>
66
<codePool>community</codePool>
7-
<version>1.8.1</version>
7+
<version>1.9.0</version>
88
</Algolia_Algoliasearch>
99
</modules>
1010
</config>

js/algoliasearch/instantsearch.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -461,7 +461,7 @@ document.addEventListener("DOMContentLoaded", function (event) {
461461
search.start();
462462

463463
if (algoliaConfig.request.path.length > 0 && 'categories.level0' in search.helper.state.hierarchicalFacetsRefinements === false) {
464-
var page = data.helper.state.page;
464+
var page = search.helper.state.page;
465465

466466
search.helper.toggleRefinement('categories.level0', algoliaConfig.request.path).setPage(page).search();
467467
}

0 commit comments

Comments
 (0)