Skip to content

Commit

Permalink
update dependencies (#1651)
Browse files Browse the repository at this point in the history
  • Loading branch information
brharrington authored Apr 4, 2024
2 parents aa364b7 + 1e8a309 commit b8af6f3
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 10 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@ object JsonParserHelper {
}

def fail(parser: JsonParser, msg: String): Nothing = {
val loc = parser.getCurrentLocation
val loc = parser.currentLocation
val line = loc.getLineNr
val col = loc.getColumnNr
val fullMsg = s"$msg (line=$line, col=$col)"
Expand Down
18 changes: 9 additions & 9 deletions project/Dependencies.scala
Original file line number Diff line number Diff line change
Expand Up @@ -6,13 +6,13 @@ object Dependencies {
object Versions {
val pekko = "1.0.2"
val pekkoHttpV = "1.0.1"
val iep = "5.0.18"
val jackson = "2.16.1"
val log4j = "2.23.0"
val iep = "5.0.19"
val jackson = "2.17.0"
val log4j = "2.23.1"
val scala = "2.13.13"
val slf4j = "1.7.36"
val spectator = "1.7.8"
val spring = "6.1.4"
val spectator = "1.7.11"
val spring = "6.1.5"

val crossScala = Seq(scala, "3.4.1")
}
Expand All @@ -28,8 +28,8 @@ object Dependencies {
val pekkoStreamTestkit= "org.apache.pekko" %% "pekko-stream-testkit" % pekko
val pekkoTestkit = "org.apache.pekko" %% "pekko-testkit" % pekko
val caffeine = "com.github.ben-manes.caffeine" % "caffeine" % "3.1.8"
val datasketches = "org.apache.datasketches" % "datasketches-java" % "5.0.1"
val equalsVerifier = "nl.jqno.equalsverifier" % "equalsverifier" % "3.15.8"
val datasketches = "org.apache.datasketches" % "datasketches-java" % "5.0.2"
val equalsVerifier = "nl.jqno.equalsverifier" % "equalsverifier" % "3.16.1"
val hikariCP = "com.zaxxer" % "HikariCP" % "5.1.0"
val iepLeaderApi = "com.netflix.iep" % "iep-leader-api" % iep
val iepLeaderDynamoDb = "com.netflix.iep" % "iep-leader-dynamodb" % iep
Expand All @@ -52,9 +52,9 @@ object Dependencies {
val log4jJul = "org.apache.logging.log4j" % "log4j-jul" % log4j
val log4jSlf4j = "org.apache.logging.log4j" % "log4j-slf4j-impl" % log4j
val munit = "org.scalameta" %% "munit" % "0.7.29"
val postgres = "org.postgresql" % "postgresql" % "42.7.2"
val postgres = "org.postgresql" % "postgresql" % "42.7.3"
val postgresEmbedded = "io.zonky.test" % "embedded-postgres" % "2.0.6"
val roaringBitmap = "org.roaringbitmap" % "RoaringBitmap" % "1.0.1"
val roaringBitmap = "org.roaringbitmap" % "RoaringBitmap" % "1.0.5"
val scalaCompat = "org.scala-lang.modules" %% "scala-collection-compat" % "2.11.0"
val scalaCompatJdk8 = "org.scala-lang.modules" %% "scala-java8-compat" % "1.0.2"
val scalaCompiler = "org.scala-lang" % "scala-compiler"
Expand Down

0 comments on commit b8af6f3

Please sign in to comment.