From 788c0f668d33fc35d6138f67eec760b5e4814e7a Mon Sep 17 00:00:00 2001 From: xerial-bot Date: Tue, 28 Nov 2023 13:11:47 -0800 Subject: [PATCH] Update logback-core to 1.3.13 (#3291) 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.9` to `1.3.13` ## 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.9). 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 175411122b..49daea3e57 100644 --- a/airspec/build.sbt +++ b/airspec/build.sbt @@ -130,8 +130,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. @@ -215,7 +214,7 @@ lazy val airspecLog = airspecJVMBuildSettings, libraryDependencies ++= Seq( // For rotating log files - "ch.qos.logback" % "logback-core" % "1.3.9" + "ch.qos.logback" % "logback-core" % "1.3.13" ) ) .jsSettings( diff --git a/build.sbt b/build.sbt index 7d8ce63f58..65cf5fdae3 100644 --- a/build.sbt +++ b/build.sbt @@ -549,7 +549,7 @@ val logDependencies = { scalaVersion: String => val logJVMDependencies = Seq( // For rotating log files - "ch.qos.logback" % "logback-core" % "1.3.9" + "ch.qos.logback" % "logback-core" % "1.3.13" ) // airframe-log should have minimum dependencies