Skip to content

Commit

Permalink
Merge pull request #806 from algolia/bump_190
Browse files Browse the repository at this point in the history
Bump to 1.9.0
  • Loading branch information
Jan Petr authored Apr 4, 2017
2 parents 5391649 + e051503 commit 933075e
Show file tree
Hide file tree
Showing 6 changed files with 32 additions and 5 deletions.
27 changes: 27 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,32 @@
## CHANGE LOG

### 1.9.0

#### FEATURES
- JavaScript custom events to easily extend extension's front end (#642, [Documentation](https://community.algolia.com/magento/doc/m1/analytics/))
- Analytics - the extension now uses Magento's GA to measure searches (#754)
- New queue processing mechanism which makes queue processing much more optimized in terms of Algolia operations and processing time (#757, #775)
- 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)
- Option to send an extra Algolia settings to Algolia indices (#770)
- Ability to enabled / disable indexing and front end search separatly (#793)

#### UPDATES
- The extension now completely removes `<script>` and `<style>` tags with its content from CMS pages content (#765)
- The extension now initializes a Magento translator in order to make it available in custom events' methods (#789)
- Test container now accepts two parameters (#794):
- `--xdebug` to install the container with XDebug
- `--filter` to filter running tests
- `Engine` class is now loaded via `getResourceModel` method (#798)

#### FIXES
- Fixed `clearfix` class in CSS (#772)
- Fixed the issue when search box cursor was moved to the end of a search query (#779)
- Fixes category refinement on category page power by instant search when page reload was performed (#783)
- Fixed the issue when instant search results stayed on the page even after click on cross in a search box (#784)
- Fixed the issue when `array_combine()` method could be called with empty array (#790)
- Fixed pagination on IS page (#805)


### 1.8.1

#### FEATURES
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ This extension replaces the default search of Magento with a typo-tolerant, fast

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

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

Expand Down
2 changes: 1 addition & 1 deletion app/code/community/Algolia/Algoliasearch/etc/config.xml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
<config>
<modules>
<Algolia_Algoliasearch>
<version>1.8.1</version>
<version>1.9.0</version>
</Algolia_Algoliasearch>
</modules>
<frontend>
Expand Down
2 changes: 1 addition & 1 deletion app/code/community/Algolia/Algoliasearch/etc/system.xml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
<algoliasearch translate="label" module="algoliasearch">
<label>
<![CDATA[
Algolia Search 1.8.1
Algolia Search 1.9.0
<style>
.algoliasearch-admin-menu span {
padding-left: 38px !important;
Expand Down
2 changes: 1 addition & 1 deletion app/etc/modules/Algolia_Algoliasearch.xml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
<Algolia_Algoliasearch>
<active>true</active>
<codePool>community</codePool>
<version>1.8.1</version>
<version>1.9.0</version>
</Algolia_Algoliasearch>
</modules>
</config>
2 changes: 1 addition & 1 deletion js/algoliasearch/instantsearch.js
Original file line number Diff line number Diff line change
Expand Up @@ -461,7 +461,7 @@ document.addEventListener("DOMContentLoaded", function (event) {
search.start();

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

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

0 comments on commit 933075e

Please sign in to comment.