-
Notifications
You must be signed in to change notification settings - Fork 2.7k
Migration Guide 1.8
Guillaume Smet edited this page Aug 21, 2020
·
8 revisions
- Configuration properties for index defaults can no longer include the
.index-defaults
component. For example,quarkus.hibernate-search.elasticsearch.index-defaults.schema-management.required-status
should now be written simply asquarkus.hibernate-search.elasticsearch.schema-management.required-status
. -
query.explain()
now expects to be passed an entity ID instead of a document ID. In short, if your entity has an ID of typeLong
, you need to pass aLong
(previously you had to pass aString
). -
@IndexedEmbedded.storage
/ObjectFieldStorage
have been renamed to@IndexedEmbedded.structure
/ObjectStructure
. The older syntax is deprecated and will eventually be removed. -
quarkus.hibernate-search.elasticsearch.default-backend
no longer exists. You can either configure a default backend (quarkus.hibernate-search.elasticsearch.someProperty someValue
) or named backends (quarkus.hibernate-search.elasticsearch.backends."backend-name".someProperty someValue
), but a named backend can no longer be considered as the default backend.