You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: CHANGELOG.md
+27Lines changed: 27 additions & 0 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -1,5 +1,32 @@
1
1
## CHANGE LOG
2
2
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
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.
46
47
47
-
#### Setup the docker instance
48
+
#### Setup the Docker instance
48
49
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:
50
51
51
52
```sh
52
53
$ ./dev/restart.sh -a YourApplicationID \
53
54
-k YourAdminAPIKey \
54
55
-s YourSearchOnlyAPIKey \
55
56
-p YourIndexPrefix \
56
-
-b http://`boot2docker ip`/# change that if you're not using boot2docker
57
+
-b http://`docker ip`/
57
58
```
58
59
59
60
#### Administration panel
60
61
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`.
62
63
63
-
#### Phpmyadmin
64
+
#### phpMyAdmin
64
65
65
-
A phpmyadmin instance is available from `http://[boot2docker ip]/phpmyadmin`
66
+
A phpMyAdmin instance is available from `http://[docker ip]/phpmyadmin`
0 commit comments