From 5265ba35911c4b89556609ffd54a780fa61693be Mon Sep 17 00:00:00 2001 From: QuadStingray Date: Fri, 7 Nov 2025 10:04:38 +0100 Subject: [PATCH 1/2] chore: 10 dependency updates for mongodb-driver * ch.qos.logback:logback-classic:test : 1.5.18 -> 1.5.20 * com.github.luben:zstd-jni:provided : 1.5.7-4 -> 1.5.7-6 * io.circe:circe-core : 0.14.14 -> 0.14.15 * io.circe:circe-generic : 0.14.14 -> 0.14.15 * io.circe:circe-parser : 0.14.14 -> 0.14.15 * org.apache.lucene:lucene-queryparser : 10.3.0 -> 10.3.1 * org.liquibase:liquibase-core:test : 4.33.0 -> 5.0.1 * org.mongodb.scala:mongo-scala-driver : 5.6.0 -> 5.6.1 * org.scala-lang:scala-library : 2.13.16 -> 2.13.17 * org.scalameta:munit : 1.2.0 -> 1.2.1 --- build.sbt | 10 +++++----- build_test.sbt | 6 +++--- 2 files changed, 8 insertions(+), 8 deletions(-) diff --git a/build.sbt b/build.sbt index 905d2b4..601c4bf 100644 --- a/build.sbt +++ b/build.sbt @@ -20,7 +20,7 @@ developers := List( licenses += ("Apache-2.0", url("https://www.apache.org/licenses/LICENSE-2.0.html")) -crossScalaVersions := Seq("3.7.2", "2.13.16") +crossScalaVersions := Seq("3.7.2", "2.13.17") scalaVersion := crossScalaVersions.value.last @@ -39,11 +39,11 @@ resolvers += "Sonatype OSS Snapshots".at("https://oss.sonatype.org/content/repos libraryDependencies += "joda-time" % "joda-time" % "2.14.0" -val circeVersion = "0.14.14" +val circeVersion = "0.14.15" libraryDependencies ++= Seq("io.circe" %% "circe-core", "io.circe" %% "circe-generic", "io.circe" %% "circe-parser").map(_ % circeVersion) -libraryDependencies += ("org.mongodb.scala" %% "mongo-scala-driver" % "5.6.0").cross(CrossVersion.for3Use2_13) +libraryDependencies += ("org.mongodb.scala" %% "mongo-scala-driver" % "5.6.1").cross(CrossVersion.for3Use2_13) val MongoJavaServerVersion = "1.47.0" @@ -53,9 +53,9 @@ libraryDependencies += "de.bwaldvogel" % "mongo-java-server-h2-backend" % MongoJ libraryDependencies += "org.xerial.snappy" % "snappy-java" % "1.1.10.8" % Provided -libraryDependencies += "com.github.luben" % "zstd-jni" % "1.5.7-4" % Provided +libraryDependencies += "com.github.luben" % "zstd-jni" % "1.5.7-6" % Provided -libraryDependencies += "org.apache.lucene" % "lucene-queryparser" % "10.3.0" +libraryDependencies += "org.apache.lucene" % "lucene-queryparser" % "10.3.1" libraryDependencies += "com.github.pathikrit" %% "better-files" % "3.9.2" diff --git a/build_test.sbt b/build_test.sbt index b6be5a1..2d0862e 100644 --- a/build_test.sbt +++ b/build_test.sbt @@ -1,9 +1,9 @@ Test / parallelExecution := false -libraryDependencies += "org.liquibase" % "liquibase-core" % "4.33.0" % Test +libraryDependencies += "org.liquibase" % "liquibase-core" % "5.0.1" % Test // Test -libraryDependencies += "ch.qos.logback" % "logback-classic" % "1.5.18" % Test +libraryDependencies += "ch.qos.logback" % "logback-classic" % "1.5.20" % Test -libraryDependencies += "org.scalameta" %% "munit" % "1.2.0" +libraryDependencies += "org.scalameta" %% "munit" % "1.2.1" From 3295890bb31cacd66fd8a1ee9b285842f5364fbb Mon Sep 17 00:00:00 2001 From: QuadStingray Date: Fri, 7 Nov 2025 10:04:58 +0100 Subject: [PATCH 2/2] build: release version 3.0.12 --- package.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package.json b/package.json index 60e0b62..e9af000 100644 --- a/package.json +++ b/package.json @@ -1,7 +1,7 @@ { "name" : "mongodb-driver", "organization" : "dev.mongocamp", - "version" : "3.0.12.snapshot", + "version" : "3.0.12", "author" : "info@mongocamp.dev", "license" : "Apache-2.0", "type" : "module",