From 8baa167cfd138c5122caec82d97190af36005d31 Mon Sep 17 00:00:00 2001
From: "zio-scala-steward[bot]"
<145262613+zio-scala-steward[bot]@users.noreply.github.com>
Date: Sat, 13 Apr 2024 12:33:51 +0800
Subject: [PATCH] Update logback-classic to 1.5.5 (#1211)
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.4` to `1.5.5`
## 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: library-update, early-semver-patch, semver-spec-patch,
commit-count:1
Co-authored-by: zio-scala-steward[bot] <145262613+zio-scala-steward[bot]@users.noreply.github.com>
Co-authored-by: Jules Ivanic
---
build.sbt | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/build.sbt b/build.sbt
index 815c3ea66..810617b04 100644
--- a/build.sbt
+++ b/build.sbt
@@ -5,7 +5,7 @@ lazy val embeddedKafkaVersion = "3.7.0" // Should be the same as kafkaVersion, e
lazy val kafkaClients = "org.apache.kafka" % "kafka-clients" % kafkaVersion
lazy val scalaCollectionCompat = "org.scala-lang.modules" %% "scala-collection-compat" % "2.11.0"
-lazy val logback = "ch.qos.logback" % "logback-classic" % "1.5.4"
+lazy val logback = "ch.qos.logback" % "logback-classic" % "1.5.5"
enablePlugins(ZioSbtEcosystemPlugin, ZioSbtCiPlugin)