Skip to content

Commit 64a0ea7

Browse files
authored
Update hibernate.version to 6.2.13.Final (#389)
1 parent a8e766b commit 64a0ea7

File tree

2 files changed

+3
-5
lines changed

2 files changed

+3
-5
lines changed

dependencies/pom.xml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -14,13 +14,13 @@
1414
</description>
1515

1616
<properties>
17-
<spring-boot.version>3.1.0</spring-boot.version>
17+
<spring-boot.version>3.1.5</spring-boot.version>
1818
<graphql-java.version>20.2</graphql-java.version>
1919
<evo-inflector.version>1.3</evo-inflector.version>
2020
<joda-time.version>2.12.5</joda-time.version>
2121
<graphql-java-extended-scalars.version>20.2</graphql-java-extended-scalars.version>
2222
<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>
2424
</properties>
2525

2626
<dependencyManagement>

schema/src/main/java/com/introproventures/graphql/jpa/query/schema/impl/GraphQLJpaQueryFactory.java

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -297,10 +297,8 @@ protected <T> Stream<T> getResultStream(
297297
);
298298
}
299299
// Let's execute query and wrap result into stream
300-
// FIXME result stream is broken in StarwarsQueryExecutorTestsSupport.queryWithWhereInsideManyToOneRelations test since Hibernate 6.2.x
301300
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);
304302
}
305303

306304
return query.getResultList().stream().map(this::unproxy).peek(this::detach);

0 commit comments

Comments
 (0)