-
Notifications
You must be signed in to change notification settings - Fork 2.7k
Migration Guide 1.10
-
quarkus.hibernate-orm.log.bind-param
is deprecated and has been renamedquarkus.hibernate-orm.log.bind-parameters
. The former will be removed at a later stage.
-
You should update your Maven/Gradle dependencies: replace any occurrence of the artifact ID
hibernate-search-elasticsearch
withhibernate-search-orm-elasticsearch
-
You should update your configuration: replace any occurrence of the prefix
quarkus.hibernate-search.
with `quarkus.hibernate-search-orm. -
Many deprecated methods and classes were removed. For more information: https://in.relation.to/2020/11/04/hibernate-search-6-0-0-CR1/#breaking_changes
-
Async/reactive methods now return
CompletionStage
instead ofCompletableFuture
. To convert aCompletionStage
to aFuture
, call.toCompletableFuture()
.`