From 26d03f2e2ba9f95996c8b34e6f82a24406369c6c Mon Sep 17 00:00:00 2001 From: colin-lamed <9568290+colin-lamed@users.noreply.github.com> Date: Mon, 23 Mar 2020 15:36:46 +0000 Subject: [PATCH] BDOG-657 Revert reactivemongo back to 0.18.8 --- project/LibraryDependencies.scala | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/project/LibraryDependencies.scala b/project/LibraryDependencies.scala index 7fc4f63..13125cc 100644 --- a/project/LibraryDependencies.scala +++ b/project/LibraryDependencies.scala @@ -9,7 +9,7 @@ object LibraryDependencies { val compile: Seq[ModuleID] = PlayCrossCompilation.dependencies( shared = Seq( "com.github.nscala-time" %% "nscala-time" % "2.22.0", - "org.reactivemongo" %% "reactivemongo" % "0.20.2", + "org.reactivemongo" %% "reactivemongo" % "0.18.8", "org.slf4j" % "slf4j-api" % "1.7.26", "org.slf4j" % "log4j-over-slf4j" % "1.7.26", // force commons-codec to avoid 1.13 and 1.14 until 1.15 is available @@ -18,7 +18,7 @@ object LibraryDependencies { ), play25 = Seq( "com.typesafe.play" %% "play" % play25Version, - "org.reactivemongo" %% "reactivemongo-play-json" % "0.20.2-play25", + "org.reactivemongo" %% "reactivemongo-play-json" % "0.18.8-play25", // force dependencies due to security flaws found in jackson-databind < 2.9.x using XRay "com.fasterxml.jackson.core" % "jackson-core" % "2.9.8", "com.fasterxml.jackson.core" % "jackson-databind" % "2.9.8", @@ -31,12 +31,12 @@ object LibraryDependencies { play26 = Seq( "com.typesafe.play" %% "play" % play26Version, "com.typesafe.play" %% "play-guice" % play26Version, - "org.reactivemongo" %% "reactivemongo-play-json" % "0.20.2-play26" + "org.reactivemongo" %% "reactivemongo-play-json" % "0.18.8-play26" ), play27 = Seq( "com.typesafe.play" %% "play" % play27Version, "com.typesafe.play" %% "play-guice" % play27Version, - "org.reactivemongo" %% "reactivemongo-play-json" % "0.20.2-play27" + "org.reactivemongo" %% "reactivemongo-play-json" % "0.18.8-play27" ) )