Skip to content

Commit

Permalink
Merge pull request #721 from algolia/bump_180
Browse files Browse the repository at this point in the history
Bump to 1.8.0
  • Loading branch information
Jan Petr committed Jan 6, 2017
2 parents d0f7d26 + 027e59f commit f312074
Show file tree
Hide file tree
Showing 6 changed files with 40 additions and 12 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.8.0

#### FEATURES
- Added new custom event `algolia_before_products_collection_load` which is triggered before products' collection loads (#666)
- Ability to remove categories or products from autocomplete menu (#702)

#### UPDATES
- Empty values of `color` attribute are not indexed by default (#651)
- Custom events were review and renamed. New events were added to `setSettings` methods for difeerent datatypes. Old events are still present to keep backward compatibility. (#652)
- Compatibility with Magento >= 1.9.3 CC and >= 1.14.3 EE (#678, #688)
- **BC Break** - Removed `Varien_Object` transport object from events which are passing objects and not arrays (#669)
- The latest version of PHP API client with new retry strategy (#698)
- Change input type for Admin API key from `obscure` to `password` as it caused issues on different platforms (#695)
- New versions of Algolia javascript libraries (#696)
- The latest version of Algolia PHP API client (#698)
- The extension now sends `searchableAttributes` index setting instead of deprecated `attributesToIndex` (#708)
- **BC Break** - if you use `attributesToIndex` somewhere in your Magento-related code (ie. events) change it to `searchableAttributes`
- The extension now sends `replicas` index setting instead of deprecated `slaves` (#712)

#### FIXES
- There is no need to explicitly set `categories` attribute as facet when "Replace category pages by Instant Search" set to "Yes" (#650)
- Reindexing with indexing queue enabled now preserves set synonyms via Algolia dashboard (#693)
- Small warning fix (#664)
- Autocomplete menu on mobile is now not hiding when keyboard is hidden (#709)
- Fetching data in queue runner now runs in isolated transaction so the jobs won't be performed twice (#713)
- Solves the issue when double move operation of TMP indices wiped out the index settings

### 1.7.2

#### FEATURES
Expand Down
19 changes: 10 additions & 9 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,12 +7,13 @@ 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.7.2-green.svg)
![Latest version](https://img.shields.io/badge/latest-1.8.0-green.svg)
![Magento 1.6.2](https://img.shields.io/badge/magento-1.6.2-blue.svg)
![Magento 1.7.1](https://img.shields.io/badge/magento-1.7.1-blue.svg)
![Magento 1.8.1](https://img.shields.io/badge/magento-1.8.1-blue.svg)
![Magento 1.9.2](https://img.shields.io/badge/magento-1.9.2-blue.svg)
![PHP >= 5.4](https://img.shields.io/badge/php-%3E=5.4-green.svg)
![Magento 1.9.3](https://img.shields.io/badge/magento-1.9.3-blue.svg)
![PHP >= 5.3](https://img.shields.io/badge/php-%3E=5.3-green.svg)

Documentation
--------------
Expand Down Expand Up @@ -42,27 +43,27 @@ Contribute to the Extension

### 1. Docker (recommended)

The easiest way to setup your development environment is to use [Docker](https://www.docker.com/). If you're a Mac user, use [boot2docker](http://boot2docker.io/) to run docker containers.
The easiest way to setup your development environment is to use [Docker](https://www.docker.com/). If you're a Mac user, use [Docker for Mac](https://docs.docker.com/engine/installation/mac/) to run Docker containers.

#### Setup the docker instance
#### Setup the Docker instance

Just run the following script to setup a running Magento 1.9.1 instance with some sample data & the Algolia Search extension installed:
Just run the following script to setup a running Magento 1.9.2 instance with some sample data & the Algolia Search extension installed:

```sh
$ ./dev/restart.sh -a YourApplicationID \
-k YourAdminAPIKey \
-s YourSearchOnlyAPIKey \
-p YourIndexPrefix \
-b http://`boot2docker ip`/ # change that if you're not using boot2docker
-b http://`docker ip`/
```

#### Administration panel

Administration login is `admin` with password `magentorocks1` and you can access it from `http://[boot2docker ip]/admin`.
Administration login is `admin` with password `magentorocks1` and you can access it from `http://[docker ip]/admin`.

#### Phpmyadmin
#### phpMyAdmin

A phpmyadmin instance is available from `http://[boot2docker ip]/phpmyadmin`
A phpMyAdmin instance is available from `http://[docker ip]/phpmyadmin`

#### Shell

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.7.2</version>
<version>1.8.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.7.2
Algolia Search 1.8.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.7.2</version>
<version>1.8.0</version>
</Algolia_Algoliasearch>
</modules>
</config>
Binary file added releases/algoliasearch-1.8.0.tgz
Binary file not shown.

0 comments on commit f312074

Please sign in to comment.