Skip to content

Commit 0192141

Browse files
authored
Release 2.0.0 (#1005)
1 parent 8bb1d27 commit 0192141

File tree

4 files changed

+60
-3
lines changed

4 files changed

+60
-3
lines changed

CHANGELOG.md

Lines changed: 49 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,54 @@
11
# CHANGE LOG
22

3+
## 2.0.0
4+
With the release of a new major version, we have decided to create minor and major version releases to allow those that want to continue on the minor version. This update will **break compatibility**. Please read the [upgrade guide](https://www.algolia.com/doc/integration/magento-2/getting-started/upgrading/#upgrading-from-v1-to-v2) for all of the file changes and updates included in this release.
5+
6+
If you would like to stay on the minor version, please upgrade your composer to only accept versions less than version 2 like the example:
7+
8+
`"algolia/algoliasearch-magento-2": ">=1.13.1 <2.0"`
9+
10+
## New Features
11+
- Algolia PHP Client v2 (from v1) (#848, #968, #984, #990) @DevinCodes
12+
- [Instantsearch v4](https://www.algolia.com/doc/guides/building-search-ui/upgrade-guides/js/) (from v2) (#838, #912) @tkrugg
13+
- [Personalization](https://www.algolia.com/doc/integration/magento-2/how-it-works/personalization/) (#994, #998)
14+
15+
## 1.13.1
16+
17+
### UPDATES
18+
- Add warning after image cache is flushed (#983)
19+
20+
### FIXES
21+
- Fix bundle product selections for subproducts (#982)
22+
- Fixes visibility in B2B / Catalog Permissions raw SQL (#977)
23+
24+
## 1.13.0
25+
26+
## FEATURES
27+
- Indexing Queue Log admin view (#929)
28+
29+
### UPDATES
30+
- Add documentations links on top of the Indexing Queue page (#931)
31+
- Archive logs cleaning (#928)
32+
- Admin notices refactoring (#921)
33+
- Join 2 callbacks for autocomplete updated event (#926) @vmalyk
34+
- Replace class names to ::class instead string names (#936) @vmalyk
35+
- Added translation to ui components and source options (#938) @vmalyk
36+
- Adminhtml improvements: XSS prevention, translations, etc (#939) @vmalyk
37+
- Tests: improve class names usage and replace literal name to ::class (#940) @vmalyk
38+
- Clean up adminhtml queue controllers (#968)
39+
40+
### FIXES
41+
- Prevent type error for backend facet query (#911)
42+
- B2B countable error in ProductDataArray class (#915)
43+
- Hide out of stock for configurable products (#925) @vmalyk
44+
- Remove "Replace categories" config dependency (#930)
45+
- PHP 7.2 warning error fixes (#932)
46+
- Remove Object manager and add factories to constructor (#937) @vmalyk
47+
- Fix Landing Page Builder remove url rewrite when disabled (#944)
48+
- Re-add forgotten indexOutOfStockOptions() method behaviour (#954)
49+
- Use Guzzle to for version checking (#949)
50+
- Fix configurable image condition (#964)
51+
352
## 1.12.1
453

554
This release has been made possible thanks to the involvement of the community, with about half of the pull requests merged coming from the Magento ecosystem.

README.md

Lines changed: 9 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
Algolia Search for Magento 2
22
==================
33

4-
![Latest version](https://img.shields.io/badge/latest-1.12.1-green.svg)
4+
![Latest version](https://img.shields.io/badge/latest-2.0.0-green.svg)
55
![Magento 2](https://img.shields.io/badge/Magento-%3E=2.2-blue.svg)
66
![PHP >= 7.0.6](https://img.shields.io/badge/PHP-%3E=7.0-green.svg)
77

@@ -55,6 +55,14 @@ Run the following commands:
5555
- ```$ bin/magento module:enable Algolia_AlgoliaSearch```
5656
- ```$ bin/magento setup:upgrade && bin/magento setup:static-content:deploy```
5757

58+
Upgrading from 1.x to 2.x
59+
------------
60+
With the release of a new major version, we have decided to create minor and major version releases to allow those that want to continue on the minor version. This update will **break compatibility**. Please read the [upgrade guide](https://www.algolia.com/doc/integration/magento-2/getting-started/upgrading/#upgrading-from-v1-to-v2) for all of the file changes and updates included in this release.
61+
62+
If you would like to stay on the minor version, please upgrade your composer to only accept versions less than version 2 like the example:
63+
64+
`"algolia/algoliasearch-magento-2": ">=1.13.1 <2.0"`
65+
5866
Contribution
5967
------------
6068

composer.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
"description": "Algolia Search integration for Magento 2",
44
"type": "magento2-module",
55
"license": ["MIT"],
6-
"version": "1.12.1",
6+
"version": "2.0.0",
77
"require": {
88
"php": "~7.0|~7.1|~7.2|~7.3",
99
"magento/framework": "~101.0|~102.0",

etc/module.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
<?xml version="1.0"?>
22
<config xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="urn:magento:framework:Module/etc/module.xsd">
3-
<module name="Algolia_AlgoliaSearch" setup_version="1.12.1">
3+
<module name="Algolia_AlgoliaSearch" setup_version="2.0.0">
44
<sequence>
55
<module name="Magento_Theme"/>
66
<module name="Magento_Backend"/>

0 commit comments

Comments
 (0)