From 9f3e6dc1bdcd80e3e089f7bb727a3de6d3821a1f Mon Sep 17 00:00:00 2001
From: "zio-scala-steward[bot]"
<145262613+zio-scala-steward[bot]@users.noreply.github.com>
Date: Wed, 20 Nov 2024 08:16:45 +0100
Subject: [PATCH] Update embedded-kafka to 3.9.0 (#1398)
MIME-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 8bit
## About this PR
📦 Updates
[io.github.embeddedkafka:embedded-kafka](https://github.com/embeddedkafka/embedded-kafka)
from `3.8.1` to `3.9.0`
📜 [GitHub Release
Notes](https://github.com/embeddedkafka/embedded-kafka/releases/tag/v3.9.0)
- [Version
Diff](https://github.com/embeddedkafka/embedded-kafka/compare/v3.8.1...v3.9.0)
## 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/f89466c2b9d28c5029de11ecd442329caf0f5b70/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 (3.8.1).
You might want to review and update them manually.
```
build.sbt
```
⚙ Adjust future updates
Add this to your `.scala-steward.conf` file to ignore future updates of
this dependency:
```
updates.ignore = [ { groupId = "io.github.embeddedkafka", artifactId = "embedded-kafka" } ]
```
Or, add this to slow down future updates of this dependency:
```
dependencyOverrides = [{
pullRequests = { frequency = "30 days" },
dependency = { groupId = "io.github.embeddedkafka", artifactId = "embedded-kafka" }
}]
```
labels: library-update, early-semver-minor, semver-spec-minor,
version-scheme:semver-spec, old-version-remains, commit-count:1
---------
Co-authored-by: zio-scala-steward[bot] <145262613+zio-scala-steward[bot]@users.noreply.github.com>
Co-authored-by: svroonland
---
build.sbt | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/build.sbt b/build.sbt
index f1bbc88ca..425c2c41a 100644
--- a/build.sbt
+++ b/build.sbt
@@ -28,8 +28,8 @@ lazy val binCompatVersionToCompare =
compatVersion
}
-lazy val kafkaVersion = "3.8.1"
-lazy val embeddedKafkaVersion = "3.8.1" // Should be the same as kafkaVersion, except for the patch part
+lazy val kafkaVersion = "3.9.0"
+lazy val embeddedKafkaVersion = "3.9.0" // Should be the same as kafkaVersion, except for the patch part
lazy val kafkaClients = "org.apache.kafka" % "kafka-clients" % kafkaVersion
lazy val logback = "ch.qos.logback" % "logback-classic" % "1.5.12"