File tree Expand file tree Collapse file tree 2 files changed +3
-5
lines changed
schema/src/main/java/com/introproventures/graphql/jpa/query/schema/impl Expand file tree Collapse file tree 2 files changed +3
-5
lines changed Original file line number Diff line number Diff line change 14
14
</description >
15
15
16
16
<properties >
17
- <spring-boot .version>3.1.0 </spring-boot .version>
17
+ <spring-boot .version>3.1.5 </spring-boot .version>
18
18
<graphql-java .version>20.2</graphql-java .version>
19
19
<evo-inflector .version>1.3</evo-inflector .version>
20
20
<joda-time .version>2.12.5</joda-time .version>
21
21
<graphql-java-extended-scalars .version>20.2</graphql-java-extended-scalars .version>
22
22
<jakarta .persistence-api.version>3.1.0</jakarta .persistence-api.version>
23
- <hibernate .version>6.2.3 .Final</hibernate .version>
23
+ <hibernate .version>6.2.13 .Final</hibernate .version>
24
24
</properties >
25
25
26
26
<dependencyManagement >
Original file line number Diff line number Diff line change @@ -297,10 +297,8 @@ protected <T> Stream<T> getResultStream(
297
297
);
298
298
}
299
299
// Let's execute query and wrap result into stream
300
- // FIXME result stream is broken in StarwarsQueryExecutorTestsSupport.queryWithWhereInsideManyToOneRelations test since Hibernate 6.2.x
301
300
if (resultStream ) {
302
- logger .warn ("Skipping result stream query due to regression in Hibernate 6.2.x" );
303
- // return query.getResultStream().map(this::unproxy).peek(this::detach);
301
+ return query .getResultStream ().map (this ::unproxy ).peek (this ::detach );
304
302
}
305
303
306
304
return query .getResultList ().stream ().map (this ::unproxy ).peek (this ::detach );
You can’t perform that action at this time.
0 commit comments