Skip to content

Commit c8d3e2a

Browse files
authored
Update dependencies: bump cats-helper and smetrics versions; update scassandra and sbt-scoverage (#777)
* Update dependencies: bump cats-helper and smetrics versions; update scassandra and sbt-scoverage * Fix scala 3 compilation error
1 parent 1dd985d commit c8d3e2a

File tree

3 files changed

+6
-6
lines changed

3 files changed

+6
-6
lines changed

metrics/src/test/scala/com/evolutiongaming/kafka/flow/metrics/SyntaxSpec.scala

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ class SyntaxSpec extends FunSuite {
3030
}
3131
}
3232
val service = new Service[Int]
33-
service.withCollectorRegistry(CollectorRegistry.empty)
33+
service.withCollectorRegistry(CollectorRegistry.empty[F])
3434
}
3535

3636
test("measureTotalDuration on a stream of numbers") {

project/Dependencies.scala

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -2,13 +2,13 @@ import sbt.*
22

33
object Dependencies {
44

5-
val catsHelper = "com.evolutiongaming" %% "cats-helper" % "3.12.0"
6-
val catsHelperLogback = "com.evolutiongaming" %% "cats-helper-logback" % "3.12.0"
7-
val smetrics = "com.evolutiongaming" %% "smetrics" % "2.3.5"
5+
val catsHelper = "com.evolutiongaming" %% "cats-helper" % "3.12.2"
6+
val catsHelperLogback = "com.evolutiongaming" %% "cats-helper-logback" % "3.12.2"
7+
val smetrics = "com.evolutiongaming" %% "smetrics" % "2.4.3"
88
val scache = "com.evolution" %% "scache" % "5.1.4"
99
val skafka = "com.evolutiongaming" %% "skafka" % "18.0.0"
1010
val sstream = "com.evolutiongaming" %% "sstream" % "1.1.0"
11-
val scassandra = "com.evolutiongaming" %% "scassandra" % "5.3.0"
11+
val scassandra = "com.evolutiongaming" %% "scassandra" % "5.4.0"
1212
val cassandraSync = "com.evolutiongaming" %% "cassandra-sync" % "4.0.0"
1313
val random = "com.evolution" %% "random" % "1.0.5"
1414
val retry = "com.evolutiongaming" %% "retry" % "3.1.0"

project/plugins.sbt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ libraryDependencySchemes ++= Seq(
33
"org.scala-lang.modules" %% "scala-xml" % "always"
44
)
55

6-
addSbtPlugin("org.scoverage" % "sbt-scoverage" % "2.4.2")
6+
addSbtPlugin("org.scoverage" % "sbt-scoverage" % "2.4.3")
77

88
addSbtPlugin("org.scoverage" % "sbt-coveralls" % "1.3.15")
99

0 commit comments

Comments
 (0)