8000 Dependencies update by pomadchin · Pull Request #875 · typelevel/frameless · GitHub
[go: up one dir, main page]
More Web Proxy on the site http://driver.im/
Skip to content

Dependencies update #875

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 1 commit into from
Apr 19, 2025
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .scalafmt.conf
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
version = 3.8.1
version = 3.8.6
runner.dialect = scala213

newlines.beforeMultilineDef = keep
Expand Down
18 changes: 11 additions & 7 deletions build.sbt
Original file line number Diff line number Diff line change
@@ -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("."))
Expand Down Expand Up @@ -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 =
Expand Down
2 changes: 1 addition & 1 deletion project/plugins.sbt
Original file line number Diff line number Diff line change
Expand Up @@ -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")

Expand Down
Loading
0