From b601b3adb398f7ebc528cd43fd623e0c9f76f8c4 Mon Sep 17 00:00:00 2001 From: Andy Wilkinson Date: Tue, 9 Jul 2024 12:15:36 +0100 Subject: [PATCH] Prohibit upgrading to Undertow 2.3.14.Final Closes gh-41331 --- 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 2adce496967..15883cd5f76 100644 --- a/spring-boot-project/spring-boot-dependencies/build.gradle +++ b/spring-boot-project/spring-boot-dependencies/build.gradle @@ -2197,6 +2197,10 @@ bom { } } library("Undertow", "2.3.13.Final") { + prohibit { + versionRange "[2.3.14.Final]" + because "it contains a regression (https://issues.redhat.com/browse/UNDERTOW-2420)" + } group("io.undertow") { modules = [ "undertow-core",