Skip to content

Commit b4781de

Browse files
authored
Release 1.19.0 (#1174)
- Update algoliaBundle with latest autocomplete for multiqueries (#1171) - Set forwardToReplicas for copy rules to false (#1170) - Add missing options for suggestion source (#1157) - Update readme and remove travis (#1172)
1 parent d8f95e8 commit b4781de

File tree

11 files changed

+46
-59
lines changed

11 files changed

+46
-59
lines changed

.travis.yml

-23
This file was deleted.

CHANGELOG.md

+9
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,14 @@
11
# CHANGE LOG
22

3+
## 1.19.0
4+
5+
### Updates
6+
- Update algoliaBundle with latest autocomplete for multiqueries (#1171)
7+
- Set forwardToReplicas for copy rules to false (#1170)
8+
- Add missing options for suggestion source (#1157)
9+
- Update readme and remove travis (#1172)
10+
11+
312
## 1.18.0
413

514
### Updates

MAINTAINERS.md

+2-5
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,2 @@
1-
## `algolia/algoliasearch-magento` maintainers
2-
3-
| Name | Email |
4-
|------------------------------|---------------------------|
5-
| Jan Petr | [email protected] |
1+
## Maintainers
2+
The Algolia Magento 1 extension has reached a support and maintenance EOL and, therefore, will not commit to maintain the extension past FEB 2021. We encourage you to upgrade to Magento 2 as Magento 1 has already reached its end of life.

README.md

+8-5
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,8 @@
11
Algolia Search for Magento 1.6+
22
==================
33

4-
![Latest version](https://img.shields.io/badge/latest-1.18.0-green.svg)
4+
![Latest version](https://img.shields.io/badge/latest-1.19.0-green.svg)
55

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

98
![Magento 1.6.2](https://img.shields.io/badge/magento-1.6.2-blue.svg)
@@ -14,7 +13,13 @@ Algolia Search for Magento 1.6+
1413

1514
-------
1615

17-
🔎   **Need help?** Check out our [Troubleshooting Guide](https://www.algolia.com/doc/integration/magento-1/troubleshooting/data-indexes-queues/) and our [General FAQs](https://www.algolia.com/doc/integration/magento-1/troubleshooting/general-faq/). For feedback, bug reporting, or unresolved issues with the extension, please contact us at [[email protected]](mailto:[email protected]). Please include your Magento version, extension version, application ID, and steps to reproducing your issue. Add additional information like screenshots, screencasts, and error messages to help our team better troubleshoot your issues.
16+
## End of Support
17+
18+
🚨   The Algolia Magento 1 extension has reached **End of Life** regarding support and maintenance. We do not commit to maintain and support the extension past FEB 2021. We encourage you to upgrade to Magento 2 as Magento 1 has already reached its end of life.
19+
20+
-------
21+
22+
🔎   **Need help?** Check out our [Troubleshooting Guide](https://www.algolia.com/doc/integration/magento-1/troubleshooting/data-indexes-queues/) and our [General FAQs](https://www.algolia.com/doc/integration/magento-1/troubleshooting/general-faq/).
1823

1924
-------
2025

@@ -111,5 +116,3 @@ Here are some helpful documentation to help with your issue:
111116
- [Indexing Queue](https://www.algolia.com/doc/integration/magento-1/how-it-works/indexing-queue/)
112117
- [Frontend Custom Events](https://www.algolia.com/doc/integration/magento-1/customize/custom-front-end-events/)
113118
- [Dispatched Backend Events](https://www.algolia.com/doc/integration/magento-1/customize/custom-back-end-events/)
114-
115-
For feedback, bug reporting, or unresolved issues with the extension, please contact us at [[email protected]](mailto:[email protected]). Please include your Magento version, extension version, application ID, and steps to reproducing your issue. Add additional information like screenshots, screencasts, and error messages to help our team better troubleshoot your issues.

app/code/community/Algolia/Algoliasearch/Helper/Algoliahelper.php

+1-1
Original file line numberDiff line numberDiff line change
@@ -244,7 +244,7 @@ public function copySynonyms($fromIndexName, $toIndexName)
244244
public function copyQueryRules($fromIndexName, $toIndexName)
245245
{
246246
$res = $this->getClient()->scopedCopyIndex($fromIndexName, $toIndexName, array('rules'), array(
247-
'forwardToReplicas' => true,
247+
'forwardToReplicas' => false,
248248
'clearExistingRules' => true
249249
));
250250

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

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
<config>
33
<modules>
44
<Algolia_Algoliasearch>
5-
<version>1.18.0</version>
5+
<version>1.19.0</version>
66
</Algolia_Algoliasearch>
77
</modules>
88
<frontend>

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

+1-1
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.18.0
7+
Algolia Search 1.19.0
88
<style>
99
.algoliasearch-admin-menu span {
1010
padding-left: 38px !important;

app/etc/modules/Algolia_Algoliasearch.xml

+1-1
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.18.0</version>
7+
<version>1.19.0</version>
88
</Algolia_Algoliasearch>
99
</modules>
1010
</config>

js/algoliasearch/internals/frontend/algoliaBundle.min.js

+21-20
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

js/algoliasearch/internals/frontend/algoliaBundle.min.js.map

+1-1
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

js/algoliasearch/internals/frontend/common.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -290,7 +290,7 @@ document.addEventListener("DOMContentLoaded", function (e) {
290290
allTitle: algoliaConfig.translations.allDepartments
291291
});
292292
} else {
293-
suggestionsSource = $.fn.autocomplete.sources.hits(suggestions_index, {
293+
suggestionsSource = $.fn.autocomplete.sources.hits(suggestions_index, options, {
294294
hitsPerPage: section.hitsPerPage
295295
});
296296
}

0 commit comments

Comments
 (0)