From fe08c0ff9e057dcf2f3a361ad19810fe42cb59e0 Mon Sep 17 00:00:00 2001 From: Scala Steward <43047562+scala-steward@users.noreply.github.com> Date: Sat, 12 Oct 2024 18:09:12 +0200 Subject: [PATCH] Update logback-classic to 1.5.10 (#749) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit ## About this PR 📦 Updates [ch.qos.logback:logback-classic](https://github.com/qos-ch/logback) from `1.5.9` to `1.5.10` ## Usage ✅ **Please merge!** I'll automatically update this PR to resolve conflicts as long as you don't change it yourself. If you'd like to skip this version, you can just close this PR. If you have any feedback, just mention me in the comments below. Configure Scala Steward for your repository with a [`.scala-steward.conf`](https://github.com/scala-steward-org/scala-steward/blob/d7ca2344b939fd6810d03892925e41f1425dc4c0/docs/repo-specific-configuration.md) file. _Have a fantastic day writing Scala!_
âš™ Adjust future updates Add this to your `.scala-steward.conf` file to ignore future updates of this dependency: ``` updates.ignore = [ { groupId = "ch.qos.logback", artifactId = "logback-classic" } ] ``` Or, add this to slow down future updates of this dependency: ``` dependencyOverrides = [{ pullRequests = { frequency = "30 days" }, dependency = { groupId = "ch.qos.logback", artifactId = "logback-classic" } }] ```
labels: test-library-update, early-semver-patch, semver-spec-patch, commit-count:1 --- build.sbt | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/build.sbt b/build.sbt index ef6b1963f..84653c4b0 100644 --- a/build.sbt +++ b/build.sbt @@ -141,7 +141,7 @@ lazy val `kyo-scheduler` = scalacOptions ++= scalacOptionToken(ScalacOptions.source3).value, crossScalaVersions := List(scala3Version, scala212Version, scala213Version), libraryDependencies += "org.scalatest" %%% "scalatest" % scalaTestVersion % Test, - libraryDependencies += "ch.qos.logback" % "logback-classic" % "1.5.9" % Test + libraryDependencies += "ch.qos.logback" % "logback-classic" % "1.5.10" % Test ) .jsSettings( `js-settings`, @@ -207,7 +207,7 @@ lazy val `kyo-core` = libraryDependencies += "dev.dirs" % "directories" % "26", libraryDependencies += "dev.zio" %%% "zio-laws-laws" % "1.0.0-RC31" % Test, libraryDependencies += "dev.zio" %%% "zio-test-sbt" % "2.1.11" % Test, - libraryDependencies += "ch.qos.logback" % "logback-classic" % "1.5.9" % Test, + libraryDependencies += "ch.qos.logback" % "logback-classic" % "1.5.10" % Test, libraryDependencies += "org.javassist" % "javassist" % "3.30.2-GA" % Test ) .jsSettings(`js-settings`)