| I started some preliminary work here, on the 6.0 branch: https://github.com/yrodiere/hibernate-orm/tree/HHH-13154 Problems so far:
- From what I've heard, criteria queries are not implemented yet. Update/delete criteria queries are not tested at all, so I guess at least those are not implemented yet.
- StatelessSession doesn't seem implemented yet in 6.0: instantiating a StatelessSession just fails with java.lang.IllegalArgumentException: StatementInspector cannot be null
- Even if I managed to add the methods in 5.4, that would mean adding new APIs in a micro, so Hibernate Search couldn't really rely on those APIs: imagine as a user getting Search to work on 5.4.3 but failing with NoSuchMethodException in 5.4.2... a bit perplexing. So targeting 6.0 is probably better.
|