Skip to content

Commit 557d2f5

Browse files
authored
[Task] Add upgrade notes for version 1.3 (#256)
* add upgrade notes * add upgrade notes
1 parent bfb4a6b commit 557d2f5

File tree

1 file changed

+16
-0
lines changed

1 file changed

+16
-0
lines changed

doc/01_Installation/02_Upgrade.md

Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,22 @@
22

33
Following steps are necessary during updating to newer versions.
44

5+
## Upgrade to 1.3.0
6+
- [Indexing] Added support for Elasticsearch in parallel to Opensearch. Opensearch remains the default search technology. If you are using Elasticsearch, you need to update your symfony configuration as follows:
7+
```yml
8+
pimcore_generic_data_index:
9+
index_service:
10+
client_params:
11+
client_name: default
12+
client_type: 'elasticsearch'
13+
```
14+
- [Indexing] Introduced new service alias `generic-data-index.search-client`. This will replace deprecated alias `generic-data-index.opensearch-client` which will be removed in the next major version.
15+
The new service alias can be used to inject the search client into your services. This search client is an instance of `Pimcore\SearchClient\SearchClientInterface` which is a common interface for OpenSearch and Elasticsearch clients.
16+
- Classes under OpenSearch namespaces are now deprecated and will be removed in the next major version. Please use the classes under the DefaultSearch namespace instead.
17+
- Execute the following command to reindex all elements to be able to use all new features or when switching between OpenSearch and Elasticsearch:
18+
19+
```bin/console generic-data-index:update:index```
20+
521
## Upgrade to 1.1.0
622
- Execute the following command to reindex all elements to be able to use all new features:
723

0 commit comments

Comments
 (0)