From 138b046e10aea71aedee48c8ab26d17b7e557f48 Mon Sep 17 00:00:00 2001 From: Wyatt Walter Date: Thu, 9 Jul 2026 22:32:50 +0000 Subject: [PATCH] fix(deps): pin springdoc-openapi to 2.8.9 for Spring Boot 3.5 compatibility springdoc-openapi-starter-webflux-ui 2.6.0 calls the ControllerAdviceBean(Object) constructor, which Spring Framework 6.2 (bundled with Spring Boot 3.5.14) removed. With springdoc enabled this made GET /v3/docs return HTTP 500 with a NoSuchMethodError. Version 2.8.9 is compatible with Spring Framework 6.2 and generates the spec. Docs remain disabled by default; this only makes the toggle functional. Co-Authored-By: Claude --- app/server/appsmith-server/pom.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/server/appsmith-server/pom.xml b/app/server/appsmith-server/pom.xml index c864a3311bad..daae5e34d7a0 100644 --- a/app/server/appsmith-server/pom.xml +++ b/app/server/appsmith-server/pom.xml @@ -299,7 +299,7 @@ org.springdoc springdoc-openapi-starter-webflux-ui - 2.6.0 + 2.8.9