From 90edd92b688979920807d04edf9efa12f7c4630c Mon Sep 17 00:00:00 2001 From: Andy Wilkinson Date: Fri, 18 Oct 2024 12:00:37 +0100 Subject: [PATCH] Prohibit upgrades to Undertow 2.3.18.Final See gh-42750 --- spring-boot-project/spring-boot-dependencies/build.gradle | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/spring-boot-project/spring-boot-dependencies/build.gradle b/spring-boot-project/spring-boot-dependencies/build.gradle index 0af2286cd275..0dd902c041b6 100644 --- a/spring-boot-project/spring-boot-dependencies/build.gradle +++ b/spring-boot-project/spring-boot-dependencies/build.gradle @@ -1764,7 +1764,11 @@ bom { ] } } - library("Undertow", "2.3.18.Final") { + library("Undertow", "2.3.17.Final") { + prohibit { + versionRange "[2.3.18.Final]" + because "it contains a regression (https://issues.redhat.com/browse/UNDERTOW-2512)" + } group("io.undertow") { modules = [ "undertow-core",