Skip to content

Commit 06c6e3e

Browse files
committed
Update to Scala 2.13.13
1 parent bea7d2b commit 06c6e3e

File tree

5 files changed

+6
-9
lines changed

5 files changed

+6
-9
lines changed

.scala-steward.conf

-3
Original file line numberDiff line numberDiff line change
@@ -8,9 +8,6 @@ updates.ignore = [
88
{ groupId = "org.apache.pekko", artifactId = "pekko-multi-node-testkit" },
99
{ groupId = "org.apache.pekko", artifactId = "pekko-http" },
1010
{ groupId = "com.lightbend.sbt", artifactId = "sbt-java-formatter" }
11-
# genjavadoc is broken with latest Scala 2.13.13, see https://github.com/lightbend/genjavadoc/issues/347 and https://github.com/scala/bug/issues/12966
12-
{ groupId = "org.scala-lang" }
13-
{ groupId = "ch.epfl.scala" }
1411
]
1512

1613
updates.pin = [

project/Dependencies.scala

+1-1
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@ object Dependencies {
3434
val scalafixVersion = _root_.scalafix.sbt.BuildInfo.scalafixVersion // grab from plugin
3535

3636
val scala212Version = "2.12.19"
37-
val scala213Version = "2.13.12"
37+
val scala213Version = "2.13.13"
3838
val scala3Version = "3.3.3"
3939
val allScalaVersions = Seq(scala213Version, scala212Version, scala3Version)
4040

project/Doc.scala

+1-1
Original file line numberDiff line numberDiff line change
@@ -184,5 +184,5 @@ object BootstrapGenjavadoc extends AutoPlugin {
184184
test / javacOptions += "-Xdoclint:none",
185185
doc / javacOptions += "-Xdoclint:none",
186186
Compile / scalacOptions += "-P:genjavadoc:fabricateParams=true",
187-
unidocGenjavadocVersion in Global := "0.18")).getOrElse(Seq.empty)
187+
unidocGenjavadocVersion in Global := "0.19")).getOrElse(Seq.empty)
188188
}

project/plugins.sbt

+1-1
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ addSbtPlugin("org.apache.pekko" % "pekko-sbt-paradox" % "1.0.1-RC1+5-13892678-SN
2727

2828
addSbtPlugin("de.heikoseeberger" % "sbt-header" % "5.10.0")
2929
addSbtPlugin("net.bzzt" % "sbt-reproducible-builds" % "0.32")
30-
addSbtPlugin("ch.epfl.scala" % "sbt-scalafix" % "0.11.1")
30+
addSbtPlugin("ch.epfl.scala" % "sbt-scalafix" % "0.12.0")
3131
addSbtPlugin("com.github.sbt" % "sbt-dynver" % "5.0.1")
3232
addSbtPlugin("com.github.pjfanning" % "sbt-source-dist" % "0.1.12")
3333
addSbtPlugin("com.github.pjfanning" % "sbt-pekko-build" % "0.3.3")

scripts/link-validator.conf

+3-3
Original file line numberDiff line numberDiff line change
@@ -55,9 +55,9 @@ site-link-validator {
5555
# apparent cert issue failing the build
5656
"https://www.reactivemanifesto.org"
5757
# Problematic link generated by scaladoc
58-
"https://www.scala-lang.org/api/2.13.12/scala/runtime/AbstractFunction1.html"
59-
"https://www.scala-lang.org/api/2.13.12/scala/runtime/AbstractFunction2.html"
60-
"https://www.scala-lang.org/api/2.13.12/scala/runtime/AbstractFunction3.html"
58+
"https://www.scala-lang.org/api/2.13.13/scala/runtime/AbstractFunction1.html"
59+
"https://www.scala-lang.org/api/2.13.13/scala/runtime/AbstractFunction2.html"
60+
"https://www.scala-lang.org/api/2.13.13/scala/runtime/AbstractFunction3.html"
6161
# Bug, see https://github.com/scala/bug/issues/12807 and https://github.com/lampepfl/dotty/issues/17973
6262
"https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/nio/file/StandardOpenOption$.html"
6363
# Occasionally returns a 500 Internal Server Error

0 commit comments

Comments
 (0)