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
+19-8
Original file line number
Diff line number
Diff line change
@@ -1,17 +1,27 @@
1
1
# Elasticsearch plugin for Craft CMS 3.x Changelog
2
2
3
-
## 1.2.2 - 2019-06-11
3
+
## 1.3.0 - 2020-09-29
4
+
### Added
5
+
- Compatibility with Elasticsearch 7
6
+
- Ability to prefix the Elasticsearch indices names (thanks [@vviacheslavv](https://github.com/vviacheslavv))
7
+
- Compatibility with project-config (Fixes #7)
8
+
### Changes
9
+
- Use looser version constraints in composer.json (possibly fixes #11)
10
+
### Fixes
11
+
- Test for Yii2 debug module before adding the Elasticsearch panel to it (fixes #12)
12
+
4
13
14
+
## 1.2.2 - 2019-06-11
5
15
### Fixed
6
16
- Fix a bug where disabled elements where indexed anyway
7
17
8
-
## 1.2.1 - 2019-06-10
9
18
19
+
## 1.2.1 - 2019-06-10
10
20
### Fixed
11
21
- Entries indexing was broken in Craft CMS 3.2 due to a last minute change
12
22
13
-
## 1.2.0 - 2019-06-04
14
23
24
+
## 1.2.0 - 2019-06-04
15
25
> {warning} This update introduce a way to honor post and expiry dates for entries and products.
16
26
The default search query has been updated in order to filter indexed elements based on those fields.
17
27
If you used `ElasticsearchRecord::EVENT_BEFORE_SEARCH` event to alter the search query, please be sure to update to reflect these changes.
@@ -25,16 +35,16 @@ After plugin update, Elastisearch indexes will be rebuilt in order to take these
25
35
### Changed
26
36
-`postDate` and `expiryDate` are now available in search results
27
37
- Default search query has been updated in order to filter live elements
28
-
- All enabled entries and products are indexed now regardless of there live status.
38
+
- All enabled entries and products are indexed now regardless of their live status.
29
39
- Console command `elasticsearch/elasticsearch/reindex-all` do not need additional parameter in order to run.
30
40
31
41
### Fixed
32
42
- The search method now honor `postDate` and `expiryDate` to only show live elements
33
43
34
-
## 1.1.0 - 2019-03-25
35
44
36
-
> {warning} The way page content are indexed have changed and now rely on a Guzzle client implementation.
37
-
If your entries are not indexed anymore after upgrade, please check you network configuration (specially when using docker containers) and the documentation for `elementContentCallback` new configuration parameter to override the Guzzle implementation if needed.
45
+
## 1.1.0 - 2019-03-25
46
+
> {warning} The way page content are indexed have changed and now rely on a Guzzle client implementation.
47
+
If your entries are not indexed anymore after upgrade, please check you network configuration (specially when using docker containers) and the documentation for `elementContentCallback` new configuration parameter to override the Guzzle implementation if needed.
38
48
39
49
### Added
40
50
- Craft Commerce product support (#1)
@@ -43,7 +53,7 @@ If your entries are not indexed anymore after upgrade, please check you network
43
53
-`elementHandle` in result fields to be able to get the element type related to the result
44
54
-`resultFormatterCallback` configuration callback in order to make changes to the results data
45
55
-`elementContentCallback` configuration callback to be able to implement custom method to get the element content to index
46
-
-`EVENT_BEFORE_CREATE_INDEX`, `EVENT_BEFORE_SAVE` and `EVENT_BEFORE_SEARCH` events of `ElasticsearchRecord` can be listened to customized various aspects of the Elastisearch life cycle
56
+
-`EVENT_BEFORE_CREATE_INDEX`, `EVENT_BEFORE_SAVE` and `EVENT_BEFORE_SEARCH` events of `ElasticsearchRecord` can be listened to customized various aspects of the Elastisearch life cycle
47
57
48
58
### Changed
49
59
- Guzzle 6 is now used to get page content of elements instead of the Twig template renderer
@@ -55,6 +65,7 @@ If your entries are not indexed anymore after upgrade, please check you network
55
65
### Fixed
56
66
- Prefixed table names configuration where leading to a 'Column not found Error' (#3)
0 commit comments