Skip to content
Closed
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions gradle/libs.versions.toml
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ room3 = "3.0.0-rc01"
sagp = "6.13.0"
sqlite = "2.6.2"
sqliteRc = "2.7.0-rc01" # Required by Room3 3.0.0-rc*
slf4j = "1.7.30"
slf4j = "2.0.18"

Copy link
Copy Markdown

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

SLF4J 2.x breaks Logback 1.2

High Severity

Bumping the slf4j catalog version from 1.7.30 to 2.0.18 is a breaking major upgrade. logback stays at 1.2.9, which only implements the SLF4J 1.7 StaticLoggerBinder SPI, so SLF4J 2.x finds no provider. sentry-jul tests then get a no-op MDC, and context tags are dropped.

Fix in Cursor Fix in Web

Reviewed by Cursor Bugbot for commit 6ac2a61. Configure here.

spotless = "8.8.0"
springboot2 = "2.7.18"
springboot3 = "3.5.0"
Expand Down Expand Up @@ -176,7 +176,7 @@ servlet-api = { module = "javax.servlet:javax.servlet-api", version = "3.1.0" }
servlet-jakarta-api = { module = "jakarta.servlet:jakarta.servlet-api", version = "6.1.0" }
slf4j-api = { module = "org.slf4j:slf4j-api", version.ref = "slf4j" }
slf4j-jdk14 = { module = "org.slf4j:slf4j-jdk14", version.ref = "slf4j" }
slf4j2-api = { module = "org.slf4j:slf4j-api", version = "2.0.5" }
slf4j2-api = { module = "org.slf4j:slf4j-api", version = "2.0.18" }
spotlessLib = { module = "com.diffplug.spotless:com.diffplug.spotless.gradle.plugin", version.ref = "spotless"}
springboot2-bom = { module = "org.springframework.boot:spring-boot-dependencies", version.ref = "springboot2" }
springboot-starter = { module = "org.springframework.boot:spring-boot-starter", version.ref = "springboot2" }
Expand Down
Loading