Skip to content

Commit cc96fae

Browse files
committed
Dependency updates (guava, jetty, mongo)
1 parent 52cfc50 commit cc96fae

File tree

2 files changed

+5
-4
lines changed

2 files changed

+5
-4
lines changed

commons-mongo/jvm/src/test/scala/com/avsystem/commons/mongo/typed/TypedMongoCollectionTest.scala

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,7 @@ import com.mongodb.client.model.Aggregates
77
import monix.eval.Task
88
import monix.execution.Scheduler
99
import org.bson.Document
10+
import org.scalactic.source.Position
1011
import org.scalatest.BeforeAndAfterEach
1112
import org.scalatest.concurrent.ScalaFutures
1213
import org.scalatest.funsuite.AnyFunSuite
@@ -22,7 +23,7 @@ class TypedMongoCollectionTest extends AnyFunSuite with ScalaFutures with Before
2223
PatienceConfig(timeout = Span(10, Seconds), interval = Span(100, Milliseconds))
2324

2425
implicit class taskOps[T](task: Task[T]) {
25-
def value: T = task.runToFuture.futureValue
26+
def value(implicit position: Position): T = task.runToFuture.futureValue
2627
}
2728

2829
final val Rte = RecordTestEntity

project/Build.scala

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -36,13 +36,13 @@ object Build extends BuildDef {
3636
val forIdeaImport: Boolean = System.getProperty("idea.managed", "false").toBoolean && System.getProperty("idea.runid") == null
3737

3838
val collectionCompatVersion = "2.5.0"
39-
val guavaVersion = "30.1.1-jre"
39+
val guavaVersion = "31.1-jre"
4040
val jsr305Version = "3.0.2"
4141
val scalatestVersion = "3.2.12"
4242
val scalatestplusScalacheckVersion = "3.2.12.0"
4343
val scalacheckVersion = "1.16.0"
44-
val jettyVersion = "9.4.49.v20220914"
45-
val mongoVersion = "4.7.2"
44+
val jettyVersion = "9.4.50.v20221201"
45+
val mongoVersion = "4.8.2"
4646
val springVersion = "4.3.26.RELEASE"
4747
val typesafeConfigVersion = "1.4.2"
4848
val commonsIoVersion = "1.3.2" // test only

0 commit comments

Comments
 (0)