Copilot commented on code in PR #6180: URL: https://github.com/apache/texera/pull/6180#discussion_r3525932353
########## amber/build.sbt: ########## @@ -131,7 +131,7 @@ val jacksonVersion = "2.18.8" val mbknorJacksonJsonSchemaDependencies = Seq( "com.fasterxml.jackson.core" % "jackson-databind" % jacksonVersion, "javax.validation" % "validation-api" % "2.0.1.Final", - "org.slf4j" % "slf4j-api" % "1.7.26", + "org.slf4j" % "slf4j-api" % "2.0.18", Review Comment: The PR description says SLF4J is bumped from 1.7.26 to 2.0.18, but the repo still has at least one module pinned to 1.7.26 (common/workflow-operator/build.sbt:86). Leaving mixed SLF4J major versions tends to cause eviction/diamond issues and can reintroduce the old API via transitive deps, so it’s better to centralize the SLF4J version (or update all explicit pins) as part of the bump. -- This is an automated message from the Apache Git Service. To respond to the message, please log on to GitHub and use the URL above to go to the specific comment. To unsubscribe, e-mail: [email protected] For queries about this service, please contact Infrastructure at: [email protected]
