Skip to content

Commit

Permalink
chore: Found 11 dependency updates for mongodb-driver
Browse files Browse the repository at this point in the history
* ch.qos.logback:logback-classic:test    : 1.4.8    -> 1.4.11
* com.github.luben:zstd-jni:provided     : 1.5.5-5  -> 1.5.5-6
* com.typesafe:config                    : 1.4.2    -> 1.4.3
* io.circe:circe-core:test               : 0.14.5   -> 0.14.6
* io.circe:circe-generic:test            : 0.14.5   -> 0.14.6
* io.circe:circe-parser:test             : 0.14.5   -> 0.14.6
* org.apache.lucene:lucene-queryparser   : 9.7.0    -> 9.8.0
* org.mongodb.scala:mongo-scala-driver   : 4.10.2   -> 4.11.0
* org.scala-lang:scala-library           : 2.13.11  -> 2.13.12
* org.specs2:specs2-core:test            : 4.20.0   -> 4.20.2
* org.xerial.snappy:snappy-java:provided : 1.1.10.3 -> 1.1.10.5
  • Loading branch information
QuadStingray committed Oct 19, 2023
1 parent 6f94bd2 commit 331b556
Showing 1 changed file with 9 additions and 9 deletions.
18 changes: 9 additions & 9 deletions build.sbt
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@ developers := List(

licenses += ("Apache-2.0", url("https://www.apache.org/licenses/LICENSE-2.0.html"))

crossScalaVersions := Seq("2.13.11", "2.12.17")
crossScalaVersions := Seq("2.13.12", "2.12.17")

scalaVersion := crossScalaVersions.value.head

Expand All @@ -61,27 +61,27 @@ resolvers += "Sonatype OSS Snapshots".at("https://oss.sonatype.org/content/repos

// Test

libraryDependencies += "org.specs2" %% "specs2-core" % "4.20.0" % Test
libraryDependencies += "org.specs2" %% "specs2-core" % "4.20.2" % Test

libraryDependencies += "ch.qos.logback" % "logback-classic" % "1.4.8" % Test
libraryDependencies += "ch.qos.logback" % "logback-classic" % "1.4.11" % Test

libraryDependencies += "joda-time" % "joda-time" % "2.12.5" % Test

val circeVersion = "0.14.5"
val circeVersion = "0.14.6"

libraryDependencies ++= Seq(
"io.circe" %% "circe-core",
"io.circe" %% "circe-generic",
"io.circe" %% "circe-parser"
).map(_ % circeVersion % Test)

libraryDependencies += "org.mongodb.scala" %% "mongo-scala-driver" % "4.10.2"
libraryDependencies += "org.mongodb.scala" %% "mongo-scala-driver" % "4.11.0"

libraryDependencies += "org.xerial.snappy" % "snappy-java" % "1.1.10.3" % Provided
libraryDependencies += "org.xerial.snappy" % "snappy-java" % "1.1.10.5" % Provided

libraryDependencies += "com.github.luben" % "zstd-jni" % "1.5.5-5" % Provided
libraryDependencies += "com.github.luben" % "zstd-jni" % "1.5.5-6" % Provided

libraryDependencies += "org.apache.lucene" % "lucene-queryparser" % "9.7.0"
libraryDependencies += "org.apache.lucene" % "lucene-queryparser" % "9.8.0"

val MongoJavaServerVersion = "1.44.0"

Expand All @@ -91,7 +91,7 @@ libraryDependencies += "de.bwaldvogel" % "mongo-java-server-h2-backend" % MongoJ

libraryDependencies += "com.github.pathikrit" %% "better-files" % "3.9.2"

libraryDependencies += "com.typesafe" % "config" % "1.4.2"
libraryDependencies += "com.typesafe" % "config" % "1.4.3"

libraryDependencies += "com.typesafe.scala-logging" %% "scala-logging" % "3.9.5"

Expand Down

0 comments on commit 331b556

Please sign in to comment.