From e34b98b5d95133e3d0de56c05dfeae15c195be4a Mon Sep 17 00:00:00 2001 From: Grigory Pomadchin Date: Sat, 19 Apr 2025 10:00:50 -0400 Subject: [PATCH] Dependencies update --- .scalafmt.conf | 2 +- build.sbt | 18 +++++++++++------- project/plugins.sbt | 2 +- 3 files changed, 13 insertions(+), 9 deletions(-) diff --git a/.scalafmt.conf b/.scalafmt.conf index 038f3d925..771bfd31a 100644 --- a/.scalafmt.conf +++ b/.scalafmt.conf @@ -1,4 +1,4 @@ -version = 3.8.1 +version = 3.8.6 runner.dialect = scala213 newlines.beforeMultilineDef = keep diff --git a/build.sbt b/build.sbt index de77f4d36..1c61425cb 100644 --- a/build.sbt +++ b/build.sbt @@ -1,24 +1,25 @@ val sparkVersion = "3.5.5" val spark34Version = "3.4.4" val spark33Version = "3.3.4" -val catsCoreVersion = "2.12.0" -val catsEffectVersion = "3.5.7" +val catsCoreVersion = "2.13.0" +val catsEffectVersion = "3.6.1" val catsMtlVersion = "1.5.0" val scalatest = "3.2.19" val scalatestplus = "3.1.0.0-RC2" -val shapeless = "2.3.12" +val shapeless = "2.3.13" val scalacheck = "1.18.1" val scalacheckEffect = "1.0.4" -val refinedVersion = "0.11.2" +val refinedVersion = "0.11.3" val nakedFSVersion = "0.1.0" -val Scala212 = "2.12.19" -val Scala213 = "2.13.14" +val Scala212 = "2.12.20" +val Scala213 = "2.13.16" ThisBuild / tlBaseVersion := "0.16" ThisBuild / crossScalaVersions := Seq(Scala213, Scala212) ThisBuild / scalaVersion := Scala212 +ThisBuild / coverageScalacPluginVersion := "2.3.0" lazy val root = project .in(file(".")) @@ -244,7 +245,10 @@ lazy val datasetSettings = ) }, coverageExcludedPackages := "org.apache.spark.sql.reflection", - libraryDependencies += "com.globalmentor" % "hadoop-bare-naked-local-fs" % nakedFSVersion % Test exclude ("org.apache.hadoop", "hadoop-commons") + libraryDependencies += "com.globalmentor" % "hadoop-bare-naked-local-fs" % nakedFSVersion % Test exclude ( + "org.apache.hadoop", + "hadoop-commons" + ) ) lazy val refinedSettings = diff --git a/project/plugins.sbt b/project/plugins.sbt index a400469a0..ccef7e136 100644 --- a/project/plugins.sbt +++ b/project/plugins.sbt @@ -4,7 +4,7 @@ addSbtPlugin("org.typelevel" % "sbt-typelevel-ci-release" % sbtTypelevelVersion) addSbtPlugin("org.typelevel" % "sbt-typelevel-site" % sbtTypelevelVersion) -addSbtPlugin("org.scoverage" % "sbt-scoverage" % "2.2.0") +addSbtPlugin("org.scoverage" % "sbt-scoverage" % "2.2.2") addSbtPlugin("org.scalameta" % "sbt-scalafmt" % "2.5.4")