Skip to content

Commit 027e59f

Browse files
committed
Bump to 1.8.0
1 parent d0f7d26 commit 027e59f

File tree

6 files changed

+40
-12
lines changed

6 files changed

+40
-12
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.8.0
4+
5+
#### FEATURES
6+
- Added new custom event `algolia_before_products_collection_load` which is triggered before products' collection loads (#666)
7+
- Ability to remove categories or products from autocomplete menu (#702)
8+
9+
#### UPDATES
10+
- Empty values of `color` attribute are not indexed by default (#651)
11+
- 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)
12+
- Compatibility with Magento >= 1.9.3 CC and >= 1.14.3 EE (#678, #688)
13+
- **BC Break** - Removed `Varien_Object` transport object from events which are passing objects and not arrays (#669)
14+
- The latest version of PHP API client with new retry strategy (#698)
15+
- Change input type for Admin API key from `obscure` to `password` as it caused issues on different platforms (#695)
16+
- New versions of Algolia javascript libraries (#696)
17+
- The latest version of Algolia PHP API client (#698)
18+
- The extension now sends `searchableAttributes` index setting instead of deprecated `attributesToIndex` (#708)
19+
- **BC Break** - if you use `attributesToIndex` somewhere in your Magento-related code (ie. events) change it to `searchableAttributes`
20+
- The extension now sends `replicas` index setting instead of deprecated `slaves` (#712)
21+
22+
#### FIXES
23+
- There is no need to explicitly set `categories` attribute as facet when "Replace category pages by Instant Search" set to "Yes" (#650)
24+
- Reindexing with indexing queue enabled now preserves set synonyms via Algolia dashboard (#693)
25+
- Small warning fix (#664)
26+
- Autocomplete menu on mobile is now not hiding when keyboard is hidden (#709)
27+
- Fetching data in queue runner now runs in isolated transaction so the jobs won't be performed twice (#713)
28+
- Solves the issue when double move operation of TMP indices wiped out the index settings
29+
330
### 1.7.2
431

532
#### FEATURES

README.md

Lines changed: 10 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -7,12 +7,13 @@ 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.7.2-green.svg)
10+
![Latest version](https://img.shields.io/badge/latest-1.8.0-green.svg)
1111
![Magento 1.6.2](https://img.shields.io/badge/magento-1.6.2-blue.svg)
1212
![Magento 1.7.1](https://img.shields.io/badge/magento-1.7.1-blue.svg)
1313
![Magento 1.8.1](https://img.shields.io/badge/magento-1.8.1-blue.svg)
1414
![Magento 1.9.2](https://img.shields.io/badge/magento-1.9.2-blue.svg)
15-
![PHP >= 5.4](https://img.shields.io/badge/php-%3E=5.4-green.svg)
15+
![Magento 1.9.3](https://img.shields.io/badge/magento-1.9.3-blue.svg)
16+
![PHP >= 5.3](https://img.shields.io/badge/php-%3E=5.3-green.svg)
1617

1718
Documentation
1819
--------------
@@ -42,27 +43,27 @@ Contribute to the Extension
4243

4344
### 1. Docker (recommended)
4445

45-
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.
46+
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.
4647

47-
#### Setup the docker instance
48+
#### Setup the Docker instance
4849

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

5152
```sh
5253
$ ./dev/restart.sh -a YourApplicationID \
5354
-k YourAdminAPIKey \
5455
-s YourSearchOnlyAPIKey \
5556
-p YourIndexPrefix \
56-
-b http://`boot2docker ip`/ # change that if you're not using boot2docker
57+
-b http://`docker ip`/
5758
```
5859

5960
#### Administration panel
6061

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

63-
#### Phpmyadmin
64+
#### phpMyAdmin
6465

65-
A phpmyadmin instance is available from `http://[boot2docker ip]/phpmyadmin`
66+
A phpMyAdmin instance is available from `http://[docker ip]/phpmyadmin`
6667

6768
#### Shell
6869

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.7.2</version>
5+
<version>1.8.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.7.2
7+
Algolia Search 1.8.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.7.2</version>
7+
<version>1.8.0</version>
88
</Algolia_Algoliasearch>
99
</modules>
1010
</config>

releases/algoliasearch-1.8.0.tgz

2.43 MB
Binary file not shown.

0 commit comments

Comments
 (0)