From 7154092547da423055a264d9353e9c8c9be23446 Mon Sep 17 00:00:00 2001 From: Marcel Date: Fri, 15 May 2026 16:05:44 +0200 Subject: [PATCH] fix(deps): pin opentelemetry-bom to 1.61.0 to fix startup crash opentelemetry-spring-boot-starter:2.27.0 was built against opentelemetry-api:1.61.0. Spring Boot 4.0.0 only manages 1.55.0, which is missing GlobalOpenTelemetry.getOrNoop(). The backend crashed at startup with NoSuchMethodError on the first staging nightly. Add a import of opentelemetry-bom:1.61.0 before the Spring Boot BOM applies, so all OTel core artifacts resolve to the version the instrumentation starter actually requires. Co-Authored-By: Claude Sonnet 4.6 --- backend/pom.xml | 14 ++++++++++++++ 1 file changed, 14 insertions(+) diff --git a/backend/pom.xml b/backend/pom.xml index 74d513cd..dd0bc03c 100644 --- a/backend/pom.xml +++ b/backend/pom.xml @@ -29,6 +29,20 @@ 21 + + + + + io.opentelemetry + opentelemetry-bom + 1.61.0 + pom + import + + + org.springframework.boot