From 5c0f851980d5e5ddf9c81c97f7f88bf7cb4ee803 Mon Sep 17 00:00:00 2001 From: Arnout Engelen Date: Tue, 30 Aug 2022 14:29:34 +0200 Subject: [PATCH] Pin logback to 1.2.x (#1673) Since we don't want to update to slf4j 2.x yet (#1661, http://mailman.qos.ch/pipermail/announce/2022/000177.html) --- .scala-steward.conf | 3 +++ 1 file changed, 3 insertions(+) diff --git a/.scala-steward.conf b/.scala-steward.conf index ef27a7b1f..41bc8bfd1 100644 --- a/.scala-steward.conf +++ b/.scala-steward.conf @@ -27,4 +27,7 @@ updates.pin = [ # https://github.com/akka/akka-grpc/issues/1661 { groupId = "org.slf4j", artifactId = "slf4j-api", version = "1." } + # logback 1.3 and 1.4 would bump sfl4j to 2.0.0 + # http://mailman.qos.ch/pipermail/announce/2022/000177.html + { groupId = "ch.qos.logback", artifactId = "logback-classic", version = "1.2." } ]