Skip to content

Commit 0b94dd6

Browse files
committed
MAGE-1262 Update version info and change log
1 parent 1b05a37 commit 0b94dd6

File tree

4 files changed

+31
-2
lines changed

4 files changed

+31
-2
lines changed

CHANGELOG.md

Lines changed: 28 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,8 +2,36 @@
22

33
## 3.16.0-beta.1
44

5+
### Features
6+
7+
- Automatic full indexing has been deprecated in 3.16 - you can now opt out of Algolia initiating full reindexing from `indexer_reindex_all_invalid`.
8+
- Added an "Indexing Manager" section within the Algolia configuration which disables automatic full reindexing by default and allows users to reactivate if needed.
9+
- Added an "Indexing Manager" page which shows the created indices for main entities (products, categories and pages) and corresponding stores with a link to directly check them on the Algolia dashboard along with a form to reindex those entities directly from the Magento admin.
10+
- CLI commands are now provided to run explicit full reindex of all entities and stores.
11+
- Products and CMS pages can now be reindexed directly from Magento admin grids.
12+
- The indexing queue cron job can now be configured from the Magento admin.
13+
- Dynamic faceting through Algolia merchandsiing rules is now supported in Magento via an opt-in feature flag.
14+
- No code redirects via merchandising rules in Algolia are now supported in Magento for both Autocomplete and InstantSearch. Support is enabled by default for Autocomplete.
15+
- Integration tests and unit tests added
16+
17+
### Bug Fixes
18+
- Behavior of conjunctive vs disjunctive facets has been clarified.
19+
- Replica data patches and delete operations have been enhanced to handle potential latency when detaching from the primary index.
20+
- Prices are now indexed using store scoped currency codes.
21+
- Fixed WSOD error on invalid creds when using manual SKU indexer (also included in 3.15.1).
22+
523
### Updates
624
- `beforecontent.html` is no longer used and has been deprecated. If you're overriding or referencing this file, please update your layout and customizations accordingly.
25+
- An additional separate crontab is no longer needed to run the indexing queue. Enable via admin config to run the queue using Magento's built-in cron.
26+
- `BatchQueueProcessorInterface` has been introduced to decouple Algolia operations for core `Indexer` models.
27+
- Magento will set a default `renderingContent` based on its configured facets. Be sure that "Facet Display" is supported by your Algolia plan before attempting to use.
28+
- Auto full indexing is disabled by default in this release. If you require this legacy feature then it can be re-enabled via the Magento admin under Stores > Configuration > Algolia Search > Indexing Manager
29+
- InstantSearch has been refactored to support customization via JavaScript mixins.
30+
- A new front end hook called `beforeFacetInitialization` has been added which allows a user to extend the functionality by adding, removing or modifying "builder" functions which are used to define a facet config that will drive the rendering of facets.
31+
- Removed InstantSearch enablement dependency in Magento admin to prevent losing facet and sorting config when disabling the feature.
32+
- InstantSearch has been updated to v4.78.
33+
- Autocomplete has been updated to v1.18.1.
34+
- PHP API client has been pinned to 4.18.3 (also included in 3.15.1).
735

836
## 3.15.0
937

README.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,7 @@ Algolia Search & Discovery extension for Magento 2
33

44
![Latest version](https://img.shields.io/badge/latest-3.15.0-green)
55
![Magento 2](https://img.shields.io/badge/Magento-2.4.6+-orange)
6+
![Beta version](https://img.shields.io/badge/beta-3.16.0--beta.1-purple)
67

78
![PHP](https://img.shields.io/badge/PHP-8.1%2C8.2%2C8.3-blue)
89

composer.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
"description": "Algolia Search & Discovery extension for Magento 2",
44
"type": "magento2-module",
55
"license": ["MIT"],
6-
"version": "3.16.0-dev",
6+
"version": "3.16.0-beta.1",
77
"require": {
88
"php": "~8.1|~8.2|~8.3",
99
"magento/framework": "~103.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="3.16.0-dev">
3+
<module name="Algolia_AlgoliaSearch" setup_version="3.16.0-beta.1">
44
<sequence>
55
<module name="Magento_Theme"/>
66
<module name="Magento_Backend"/>

0 commit comments

Comments
 (0)