Skip to content
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.

Commit 94d0699

Browse files
committedJan 4, 2022
Merge branch '7.0'
# Conflicts: # README.md
2 parents 8b549e5 + 3c90dc6 commit 94d0699

File tree

3 files changed

+33
-56
lines changed

3 files changed

+33
-56
lines changed
 

‎Documentation/Upgrade-6-to-7.md

+32
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,32 @@
1+
# Upgrade from Version 6 to Version 7
2+
3+
Version 7 is a major release which brings a lot of features and also some breaking changes.
4+
5+
For a complete list of all changes see: [https://www.neos.io/blog/elasticsearch-package-releases.html](https://www.neos.io/blog/elasticsearch-package-releases.html)
6+
7+
### Renaming of the Internal field names, which now comply to Beats naming convention.
8+
9+
Neos-internal meta properties of nodes have previously been indexed with a leading underscore. Meta properties created by the Elasticsearch.ContentRepositoryAdapter with two leading underscores.
10+
11+
Also Elasticsearch uses such underscore-prefixed fields for their internal meta data. That's why it is not possible to analyze these fields with Kibana, which makes it sometimes hard to use the tool to analyze and debug your index.
12+
13+
Now all internal properties are prefixed with the "neos_" prefix, and use snake_case complying with the beats naming convention.
14+
15+
Mapping table from old to new field names:
16+
17+
| Old | New |
18+
|-----|--------|
19+
| __identifier |neos_node_identifier |
20+
| __parentPath |neos_parent_path |
21+
| __path | neos_path |
22+
| __typeAndSupertypes | neos_type_and_supertypes |
23+
| __workspace | neos_workspace |
24+
| _creationDateTime | neos_creationdate_time |
25+
| _hidden | neos_hidden |
26+
| _hiddenBeforeDateTime | neos_hidden_before_datetime |
27+
| _hiddenAfterDateTime |neos_hidden_after_datetime |
28+
| _hiddenInIndex | neos_hidden_in_index |
29+
| _lastModificationDateTime | neos_last_modification_datetime |
30+
| _lastPublicationDateTime |neos_last_publication_datetime |
31+
| __fulltextParts | neos_fulltext_parts |
32+
| __fulltext | neos_fulltext |

‎Migrations/Code/Version20200513223401.php

-55
This file was deleted.

‎README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -44,7 +44,7 @@ This following matrix shows the compatibility of this package to Elasticsearch a
4444
| 4 | 3.x, 4.x | 1.x, 2,x 5.x | Unmaintained, probably broken |
4545
| 5 | > 3.3, 4.x | 5.x | Bugfix only |
4646
| 6 | 5.x | 5.x | Bugfix only |
47-
| 7 | 5.x | 6.x, 7.x | Bugfix only |
47+
| 7 | 5.x | 6.x, 7.x | Bugfix and Features ([Upgrade Instructions](Documentation/Upgrade-6-to-7.md)) |
4848
| 8 | 7.x | 6.x, 7.x | Bugfix and Features |
4949

5050
_Currently the Driver interfaces are not marked as API, and can be changed to adapt to future needs._

0 commit comments

Comments
 (0)
Please sign in to comment.