From 6a35c3e1e446c45bf3eb274e1e62abb6037dd410 Mon Sep 17 00:00:00 2001 From: xerial-bot Date: Fri, 4 Aug 2023 21:45:11 -0700 Subject: [PATCH] Update logback-core to 1.3.9 (#3105) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit ## About this PR 📦 Updates [ch.qos.logback:logback-core](https://github.com/qos-ch/logback) from `1.3.8` to `1.3.9` ## 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/b83aae55d9dd000548c3b3c9b63d79636e7b3c8b/docs/repo-specific-configuration.md) file. _Have a fantastic day writing Scala!_
🔍 Files still referring to the old version number The following files still refer to the old version number (1.3.8). You might want to review and update them manually. ``` docs/release-notes.md ```
⚙ 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-core" } ] ``` Or, add this to slow down future updates of this dependency: ``` dependencyOverrides = [{ pullRequests = { frequency = "30 days" }, dependency = { groupId = "ch.qos.logback", artifactId = "logback-core" } }] ```
labels: library-update --- airspec/build.sbt | 5 ++--- build.sbt | 2 +- 2 files changed, 3 insertions(+), 4 deletions(-) diff --git a/airspec/build.sbt b/airspec/build.sbt index 7e411f1930..acb8c4ebed 100644 --- a/airspec/build.sbt +++ b/airspec/build.sbt @@ -128,8 +128,7 @@ def excludePomDependency(excludes: Seq[String]) = { node: XmlNode => }).transform(node).head } -/** - * AirSpec build definitions. +/** AirSpec build definitions. * * To make AirSpec a standalone library without any cyclic project references, AirSpec embeds the source code of * airframe-log, di, surface, etc. @@ -213,7 +212,7 @@ lazy val airspecLog = airspecJVMBuildSettings, libraryDependencies ++= Seq( // For rotating log files - "ch.qos.logback" % "logback-core" % "1.3.8" + "ch.qos.logback" % "logback-core" % "1.3.9" ) ) .jsSettings( diff --git a/build.sbt b/build.sbt index 920081c4af..bfb1ec17fb 100644 --- a/build.sbt +++ b/build.sbt @@ -527,7 +527,7 @@ val logDependencies = { scalaVersion: String => val logJVMDependencies = Seq( // For rotating log files - "ch.qos.logback" % "logback-core" % "1.3.8" + "ch.qos.logback" % "logback-core" % "1.3.9" ) // airframe-log should have minimum dependencies