From 5e87fd8b11bdb245ecde6eef8326dc44a01601cf Mon Sep 17 00:00:00 2001 From: Andy Wilkinson Date: Tue, 14 May 2024 09:33:52 +0100 Subject: [PATCH] Prohibit upgrades to Hibernate 6.5.1 Closes gh-40759 --- spring-boot-project/spring-boot-dependencies/build.gradle | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/spring-boot-project/spring-boot-dependencies/build.gradle b/spring-boot-project/spring-boot-dependencies/build.gradle index 1cd1bba14c5..713f1cce398 100644 --- a/spring-boot-project/spring-boot-dependencies/build.gradle +++ b/spring-boot-project/spring-boot-dependencies/build.gradle @@ -510,6 +510,10 @@ bom { } } library("Hibernate", "6.5.0.Final") { + prohibit { + versionRange "[6.5.1.Final,6.5.1.Final]" + because "it contains a regression (https://hibernate.atlassian.net/browse/HHH-18108)" + } group("org.hibernate.orm") { modules = [ "hibernate-agroal",