From 293739b9f0ff73eeea67657d1c8fa906ac5ba525 Mon Sep 17 00:00:00 2001 From: Andy Wilkinson Date: Tue, 9 Jul 2024 12:19:42 +0100 Subject: [PATCH] Prohibit upgrading to Undertow 2.3.14.Final Closes gh-41332 --- 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 5fe15b9c81c..f9c727efdf4 100644 --- a/spring-boot-project/spring-boot-dependencies/build.gradle +++ b/spring-boot-project/spring-boot-dependencies/build.gradle @@ -2213,6 +2213,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",