From 62ee4fbfcb208931830717aa6c3cd3457cb19f90 Mon Sep 17 00:00:00 2001 From: "scala-steward-asf[bot]" <147768647+scala-steward-asf[bot]@users.noreply.github.com> Date: Sun, 11 Feb 2024 00:04:51 +0000 Subject: [PATCH 1/4] Update scalatest to 3.2.18 --- project/Dependencies.scala | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/project/Dependencies.scala b/project/Dependencies.scala index 7bdd653a803..17a243c6620 100644 --- a/project/Dependencies.scala +++ b/project/Dependencies.scala @@ -45,7 +45,7 @@ object Dependencies { val sslConfigVersion = "0.6.1" - val scalaTestVersion = "3.2.17" + val scalaTestVersion = "3.2.18" val scalaTestScalaCheckVersion = "1-17" val scalaCheckVersion = "1.17.0" From bcf5a8dfc70be6aacfd35ef1d216a5a8b018b997 Mon Sep 17 00:00:00 2001 From: PJ Fanning Date: Sun, 11 Feb 2024 10:54:01 +0100 Subject: [PATCH 2/4] testng update --- project/Dependencies.scala | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/project/Dependencies.scala b/project/Dependencies.scala index 17a243c6620..62cb975c505 100644 --- a/project/Dependencies.scala +++ b/project/Dependencies.scala @@ -128,7 +128,7 @@ object Dependencies { // but the version of each module starts with the scalatest // version it was intended to work with val scalatestJUnit = "org.scalatestplus" %% "junit-4-13" % (scalaTestVersion + ".0") % Test - val scalatestTestNG = "org.scalatestplus" %% "testng-7-5" % (scalaTestVersion + ".0") % Test + val scalatestTestNG = "org.scalatestplus" %% "testng-7-9" % (scalaTestVersion + ".0") % Test val scalatestScalaCheck = "org.scalatestplus" %% s"scalacheck-$scalaTestScalaCheckVersion" % (scalaTestVersion + ".0") % Test val scalatestMockito = "org.scalatestplus" %% "mockito-4-11" % (scalaTestVersion + ".0") % Test From 13b604cfc02bb541a6d39853f025881a73893e1e Mon Sep 17 00:00:00 2001 From: PJ Fanning Date: Sun, 11 Feb 2024 11:18:16 +0100 Subject: [PATCH 3/4] Update Dependencies.scala --- project/Dependencies.scala | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/project/Dependencies.scala b/project/Dependencies.scala index 62cb975c505..1f1add878a4 100644 --- a/project/Dependencies.scala +++ b/project/Dependencies.scala @@ -131,7 +131,8 @@ object Dependencies { val scalatestTestNG = "org.scalatestplus" %% "testng-7-9" % (scalaTestVersion + ".0") % Test val scalatestScalaCheck = "org.scalatestplus" %% s"scalacheck-$scalaTestScalaCheckVersion" % (scalaTestVersion + ".0") % Test - val scalatestMockito = "org.scalatestplus" %% "mockito-4-11" % (scalaTestVersion + ".0") % Test + // https://github.com/scalatest/scalatest/issues/2311 + val scalatestMockito = "org.scalatestplus" %% "mockito-4-11" % "3.2.17.0" % Test val pojosr = "com.googlecode.pojosr" % "de.kalpatec.pojosr.framework" % "0.2.1" % Test val tinybundles = "org.ops4j.pax.tinybundles" % "tinybundles" % "3.0.0" % Test From 1767a82fd642530a67cf5db992afb03a2f68c245 Mon Sep 17 00:00:00 2001 From: PJ Fanning Date: Sun, 11 Feb 2024 23:32:31 +0100 Subject: [PATCH 4/4] need to stick with testng 7.5 due to java 8 reqs --- project/Dependencies.scala | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/project/Dependencies.scala b/project/Dependencies.scala index 1f1add878a4..06dea95aa51 100644 --- a/project/Dependencies.scala +++ b/project/Dependencies.scala @@ -128,7 +128,7 @@ object Dependencies { // but the version of each module starts with the scalatest // version it was intended to work with val scalatestJUnit = "org.scalatestplus" %% "junit-4-13" % (scalaTestVersion + ".0") % Test - val scalatestTestNG = "org.scalatestplus" %% "testng-7-9" % (scalaTestVersion + ".0") % Test + val scalatestTestNG = "org.scalatestplus" %% "testng-7-5" % "3.2.17.0" % Test val scalatestScalaCheck = "org.scalatestplus" %% s"scalacheck-$scalaTestScalaCheckVersion" % (scalaTestVersion + ".0") % Test // https://github.com/scalatest/scalatest/issues/2311