Skip to content

Commit e90bb06

Browse files
committed
Bump versions
1 parent 6dcd5e6 commit e90bb06

File tree

3 files changed

+6
-5
lines changed

3 files changed

+6
-5
lines changed

build.sbt

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ version := "1.0"
66

77
scalaVersion := "2.13.15"
88

9-
val pekkoVersion = "1.1.1"
9+
val pekkoVersion = "1.1.2"
1010
val pekkoHTTPVersion = "1.1.0"
1111
val pekkoConnectorVersion = "1.0.2"
1212
val pekkoConnectorKafkaVersion = "1.0.0"
@@ -104,7 +104,7 @@ libraryDependencies ++= Seq(
104104
"org.apache.httpcomponents.core5" % "httpcore5" % "5.3",
105105
"commons-io" % "commons-io" % "2.16.1",
106106
"org.apache.commons" % "commons-lang3" % "3.12.0",
107-
"com.sksamuel.avro4s" %% "avro4s-core" % "4.1.2",
107+
"com.sksamuel.avro4s" %% "avro4s-core" % "4.1.2", // 5.x for Scala 3
108108

109109
"org.apache.camel" % "camel-core" % "3.20.2",
110110
"org.apache.camel" % "camel-reactive-streams" % "3.20.2",

project/plugins.sbt

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,4 +3,5 @@ addSbtPlugin("ch.epfl.scala" % "sbt-scalafix" % "0.12.1")
33
//https://www.scala-sbt.org/1.x/docs/sbt-1.4-Release-Notes.html#sbt-dependency-graph+is+in-sourced
44
//addDependencyTreePlugin
55

6-
addSbtPlugin("io.gatling" % "gatling-sbt" % "4.9.2")
6+
// https://docs.gatling.io/reference/integrations/build-tools/sbt-plugin
7+
addSbtPlugin("io.gatling" % "gatling-sbt" % "4.10.1")

src/test/scala/alpakka/slick/PostgresClusterEmbedded.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -26,8 +26,8 @@ public void beforeAll(ExtensionContext context) throws IOException {
2626
.setCleanDataDirectory(true)
2727
.setPort(5432)
2828
// Set the write-ahead log level to "logical" to make sure that enough
29-
// information is written
30-
// to the write-ahead log as is required for CDC with Debezium
29+
// information is written to the write-ahead log
30+
// because this is required for CDC with Debezium
3131
.setServerConfig("wal_level", "logical")
3232
.start();
3333
}

0 commit comments

Comments
 (0)