-
Notifications
You must be signed in to change notification settings - Fork 3k
Migration Guide 1.10
-
quarkus.hibernate-orm.log.bind-paramis 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-elasticsearchwithhibernate-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
CompletionStageinstead ofCompletableFuture. To convert aCompletionStageto aFuture, call.toCompletableFuture().`