Skip to content

Commit

Permalink
Update deps (#423)
Browse files Browse the repository at this point in the history
* Scala-Steward: Update logback-classic from 1.5.7 to 1.5.8

* Scala-Steward: Update circe-core from 0.14.9 to 0.14.10

* Scala-Steward: Update scala-compiler from 2.12.19 to 2.12.20
  • Loading branch information
scala-steward authored Sep 7, 2024
1 parent a7fcaf4 commit ff12212
Show file tree
Hide file tree
Showing 4 changed files with 7 additions and 7 deletions.
4 changes: 2 additions & 2 deletions examples/akka-cluster-app/build.sbt
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ name := "akka-cluster-app"
version := "0.1"
scalaVersion := "2.13.14"

val circeVersion = "0.14.9"
val circeVersion = "0.14.10"
val akkaVersion = "2.6.20"

lazy val `akka-cluster-app` = project
Expand All @@ -28,7 +28,7 @@ lazy val circeDependency = "io.circe" %% "circe-core" % circeVersion
lazy val ashDependencies =
Seq(AkkaSerializationHelperPlugin.annotation, AkkaSerializationHelperPlugin.circeAkkaSerializer)

lazy val logbackDependency = "ch.qos.logback" % "logback-classic" % "1.5.7"
lazy val logbackDependency = "ch.qos.logback" % "logback-classic" % "1.5.8"

ThisBuild / semanticdbEnabled := true
ThisBuild / semanticdbVersion := "4.9.3"
4 changes: 2 additions & 2 deletions examples/akka-persistence-app/build.sbt
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ val akkaHttp2SupportVersion = "10.2.10"
val akkaManagementVersion = "1.1.4"
val akkaPersistenceJdbcVersion = "5.1.0"
val akkaProjectionVersion = "1.2.5"
val circeVersion = "0.14.9"
val circeVersion = "0.14.10"
val scalikeJdbcVersion = "3.5.0"

enablePlugins(AkkaGrpcPlugin, JavaAppPackaging, DockerPlugin, AkkaSerializationHelperPlugin)
Expand All @@ -54,7 +54,7 @@ libraryDependencies ++= Seq(
"com.typesafe.akka" %% "akka-discovery" % akkaVersion,
// Common dependencies for logging and testing
"com.typesafe.akka" %% "akka-slf4j" % akkaVersion,
"ch.qos.logback" % "logback-classic" % "1.5.7",
"ch.qos.logback" % "logback-classic" % "1.5.8",
"org.scalatest" %% "scalatest" % "3.2.12" % Test,
// 2. Using gRPC and/or protobuf
"com.typesafe.akka" %% "akka-http2-support" % akkaHttp2SupportVersion,
Expand Down
2 changes: 1 addition & 1 deletion examples/event-migration/build.sbt
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ name := "event-migration"
version := "0.1"
scalaVersion := "2.13.14"

val circeVersion = "0.14.9"
val circeVersion = "0.14.10"
val circeGenericExtrasVersion = "0.14.4"
val borerVersion = "1.8.0"
val scalaTestVersion = "3.2.10"
Expand Down
4 changes: 2 additions & 2 deletions project/Dependencies.scala
Original file line number Diff line number Diff line change
Expand Up @@ -2,15 +2,15 @@ import sbt._

object Dependencies {
val scalaVersion213 = "2.13.14"
val scalaVersion212 = "2.12.19"
val scalaVersion212 = "2.12.20"

val akkaProjectionVersion = "1.2.5"
val akkaGrpcRuntimeVersion = "2.1.6"
val akkaHttpCorsVersion = "1.2.0"
val akkaVersion = "2.6.20"
val borerVersion = "1.8.0"
val circeYamlVersion = "1.15.0"
val circeVersion = "0.14.9"
val circeVersion = "0.14.10"
val circeGenericExtrasVersion = "0.14.4"

val scalaTest = "org.scalatest" %% "scalatest" % "3.2.19"
Expand Down

0 comments on commit ff12212

Please sign in to comment.