From 39d53467606945c202c90800374666e26516abf8 Mon Sep 17 00:00:00 2001
From: "scala-steward-for-moia[bot]"
<97042238+scala-steward-for-moia[bot]@users.noreply.github.com>
Date: Mon, 4 Mar 2024 11:11:06 +0000
Subject: [PATCH] Update logback-classic to 1.5.2 (#42)
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.0` to `1.5.2`
## 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/7ec418cd5441d449f037bca6d34326534c07a5dd/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
Co-authored-by: scala-steward <162267+scala-steward-for-moia[bot]@users.noreply.github.com>
---
build.sbt | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/build.sbt b/build.sbt
index d603275..09f5022 100644
--- a/build.sbt
+++ b/build.sbt
@@ -56,7 +56,7 @@ lazy val testDependencies = Seq(
lazy val loggingDependencies = Seq(
"com.typesafe.scala-logging" %% "scala-logging" % "3.9.5",
- "ch.qos.logback" % "logback-classic" % "1.5.0" % Test
+ "ch.qos.logback" % "logback-classic" % "1.5.2" % Test
)
lazy val scalaDependencies = Seq(