Skip to content

Commit

Permalink
Update kafka-clients to 3.8.0 (#1725)
Browse files Browse the repository at this point in the history
* Update kafka-clients to 3.8.0

* chore: Update mainClass in build.sbt

* chore: Move and update scala-steward configuration file

* chore: Update fs2-kafka dependency to version 1.11.0

---------

Co-authored-by: Bekir Oguz <[email protected]>
  • Loading branch information
scala-steward and bekiroguz authored Aug 29, 2024
1 parent 756eca3 commit e39db88
Show file tree
Hide file tree
Showing 4 changed files with 22 additions and 12 deletions.
9 changes: 0 additions & 9 deletions .github/scala-steward.conf

This file was deleted.

19 changes: 19 additions & 0 deletions .scala-steward.conf
Original file line number Diff line number Diff line change
@@ -0,0 +1,19 @@
# PRs are created only again after 7 days since the last PR has passed
pullRequests.frequency = "7 days"
# group all patches, and typelevel updates
pullRequests.grouping = [
{ name = "patches", "title" = "Patch updates", "filter" = [{"version" = "patch"}] },
{ name = "typelevel", "title" = "Typelevel updates", "filter" = [{"group" = "org.typelevel"}, {"group" = "org.http4s"}, {"group" = "co.fs2"}] },
]
# pin updates to cats-effect 2.x compatible versions
updates.pin = [
{ groupId = "org.typelevel", artifactId = "cats-effect" version = "2." },
{ groupId = "co.fs2", version = "2." },
{ groupId = "com.github.fd4s", artifactId = "fs2-kafka", version = "1."}
]

# ignore updates for cats-effect 3.x compatible versions
updates.pin = [
{ groupId = "org.http4s", version = "0.23." },
{ groupId = "org.http4s", version = "1." }
]
2 changes: 1 addition & 1 deletion build.sbt
Original file line number Diff line number Diff line change
Expand Up @@ -544,7 +544,7 @@ lazy val `bakery-state`: Project = project.in(file("bakery/state"))
.settings(Publish.settings)
.settings(yPartialUnificationSetting)
.settings(
Compile / mainClass := Some("com.ing.bakery.baker.Main"),
Compile / mainClass := Some("com.ing.bakery.Main"),
dockerExposedPorts ++= Seq(8080),
Docker / packageName := "bakery-state",
dockerBaseImage := "adoptopenjdk/openjdk11",
Expand Down
4 changes: 2 additions & 2 deletions project/Dependencies.scala
Original file line number Diff line number Diff line change
Expand Up @@ -59,10 +59,10 @@ object Dependencies {
val akkaClusterBoostrap = "com.lightbend.akka.management" %% "akka-management-cluster-bootstrap" % akkaManagementVersion
val akkaDiscoveryKube = "com.lightbend.akka.discovery" %% "akka-discovery-kubernetes-api" % akkaManagementVersion

val kafkaClient = "org.apache.kafka" % "kafka-clients" % "3.4.1"
val kafkaClient = "org.apache.kafka" % "kafka-clients" % "3.8.0"
val fs2Core = "co.fs2" %% "fs2-core" % fs2Version
val fs2Io = "co.fs2" %% "fs2-io" % fs2Version
val fs2kafka = "com.github.fd4s" %% "fs2-kafka" % "1.0.0"
val fs2kafka = "com.github.fd4s" %% "fs2-kafka" % "1.11.0"
val levelDB = "org.iq80.leveldb" % "leveldb" % "0.12"

val levelDBJni = "org.fusesource.leveldbjni" % "leveldbjni-all" % "1.8"
Expand Down

0 comments on commit e39db88

Please sign in to comment.