Skip to content

Commit d280dc2

Browse files
authored
Merge pull request #1693 from algolia/feat/MAGE-1117-3.15.0-beta.2-release
MAGE-1117: update extension for 3.15.0-beta.2
2 parents e1a5f50 + 2ceb3ba commit d280dc2

File tree

3 files changed

+40
-5
lines changed

3 files changed

+40
-5
lines changed

CHANGELOG.md

Lines changed: 38 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,39 @@
11
# CHANGE LOG
22

3-
## 3.15.0-beta.1
3+
## 3.15.0-beta.2
4+
5+
### Features
6+
- Added support for Multi-Application IDs (see [preview documentation](https://deploy-preview-9703--algolia-docs.netlify.app/doc/integration/magento-2/getting-started/quick-start/#support-for-multiple-application-ids))
7+
- Refactored frontend library to no longer utilize the legacy `algoliaBundle` (see [preview documentation](https://deploy-preview-9703--algolia-docs.netlify.app/doc/integration/magento-2/customize/custom-front-end-events/?client=php#frontend-javascript-libraries-and-the-legacy-bundle))
8+
- Added support for core Algolia UI library overrides via RequireJS
9+
- Added support for mixins through RequireJS in addition to [front end custom events](https://www.algolia.com/doc/integration/magento-2/customize/custom-front-end-events)
10+
- See our `CustomAlgolia` demo extension's [1.4.0 release](https://github.com/algolia/algoliasearch-custom-algolia-magento-2/releases/tag/1.4.0) for examples on how to take advantage of these changes
11+
- Added granular profiling through the [Magento Profiler](https://experienceleague.adobe.com/en/docs/commerce-operations/configuration-guide/setup/mage-profiler) to aid in troubleshooting indexing performance issues
12+
- Added a feature to enable automatic price indexing within the Advanced section of the configuration (This feature should help alleviate issues where missing pricing records prevent Algolia from being able to index products. See [preview documentation](https://deploy-preview-9703--algolia-docs.netlify.app/doc/integration/magento-2/troubleshooting/data-indexes-queues/#price-index-dependencies) for further details.)
13+
14+
### Updates
15+
- Tests: Added possibility to run tests with multiple applications IDs.
16+
- Introduced Index Builders which are services responsible for creating and filling indices with data.
17+
- **IMPORTANT**: As a result `AlgoliaHelper` is now deprecated and will be removed from the codebase in version 3.16.0
18+
- Added `BackendSearch` Service to move `getSearchResults` method into.
19+
- Updated Indexing Queue display in the admin by adding the `class` column
20+
- Updated Indexing Queue `data` column formatting
21+
- Added documentation link on the queue archive page
22+
- Debugging information now writes to `algolia.log`
23+
- Removed dependency on `algoliaBundle` package
24+
- Removed dependency on JavaScript global `window` objects with the exception of `algoliaConfig`
25+
- The Hogan.js library is still packaged for injection as needed but be advised that Mustache.js is now used internally instead (see [preview documentation](https://deploy-preview-9703--algolia-docs.netlify.app/doc/integration/magento-2/customize/instant-search-page/?client=php#mustache-templates))
26+
- JavaScript bundling is supported but to use the RequireJS Optimizer transpiling will be needed for ES6 constructs
27+
28+
### Bug Fixes
29+
- Fixed a bug where admin menus didn't display properly on Magento 2.4.7
30+
- Fixed customer groups prices ranges on configurable products
31+
- Fixed a bug where categories highlighting didn't work as expected on PLP powered by InstantSearch
32+
33+
### Breaking Changes
34+
- If you have customized your front end implementation based on the `algoliaBundle` you may need to shim your application accordingly (Full details are shared in [our preview documentation](https://deploy-preview-9703--algolia-docs.netlify.app/doc/integration/magento-2/troubleshooting/front-end-issues/))
35+
436

5-
## Updates
6-
- Added support for Multi-Application IDs
737

838
## 3.14.4
939

@@ -117,6 +147,11 @@ If you have customized your Algolia implementation or are running on an older ve
117147
- Added stronger typing to affected classes and methods
118148
- Added Looking Similar recommendations
119149

150+
## 3.13.8
151+
152+
### Bug Fixes
153+
- Restored compatibility with PHP 7.4
154+
120155
## 3.13.7
121156

122157
### Features

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.15.0-beta.1",
6+
"version": "3.15.0-beta.2",
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.15.0-beta.1">
3+
<module name="Algolia_AlgoliaSearch" setup_version="3.15.0-beta.2">
44
<sequence>
55
<module name="Magento_Theme"/>
66
<module name="Magento_Backend"/>

0 commit comments

Comments
 (0)