Skip to content

Commit 6e296b9

Browse files
authored
Merge pull request #965 from scala-steward/update/6.2.x/patches
[6.2.x] Patch updates
2 parents a2e583e + 6b1dde1 commit 6e296b9

8 files changed

Lines changed: 10 additions & 7 deletions

File tree

.git-blame-ignore-revs

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,5 @@
11
# Scala Steward: Reformat with scalafmt 3.8.3
22
28e54446e0830b27d6f861bcdf10131fadce91d9
3+
4+
# Scala Steward: Reformat with scalafmt 3.9.7
5+
ebc50dd590170d8a3659779c49684ab45413e7f6

.scalafmt.conf

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
# This file was originally copied from https://github.com/playframework/playframework/blob/main/.scalafmt.conf
2-
version = 3.9.5
2+
version = 3.9.7
33
runner.dialect = scala213
44
align.preset = more
55
assumeStandardLibraryStripMargin = true

build.sbt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ lazy val commonSettings = Seq(
2424
compile / javacOptions ++= Seq("--release", "11"),
2525
doc / javacOptions := Seq("-source", "11"),
2626
scalaVersion := "2.13.16",
27-
crossScalaVersions := Seq("2.13.16", "3.3.5"),
27+
crossScalaVersions := Seq("2.13.16", "3.3.6"),
2828
scalacOptions ++= Seq("-deprecation", "-feature", "-unchecked", "-encoding", "utf8") ++
2929
(CrossVersion.partialVersion(scalaVersion.value) match {
3030
case Some((2, 13)) => Seq("-Xsource:3")

project/Dependencies.scala

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ object Dependencies {
2121
object Version {
2222
val play = _root_.play.core.PlayVersion.current
2323

24-
val slick = "3.6.0"
24+
val slick = "3.6.1"
2525
val h2 = "2.3.232"
2626
}
2727

project/Omnidoc.scala

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ object Omnidoc extends AutoPlugin {
3232
val tagged: String = omnidocTagPrefix.getOrElse("v") + version.value
3333
val tree: String = if (isSnapshot.value) development else tagged
3434
val prefix: String = "/" + (omnidocPathPrefix ?? "").value
35-
val path: String = {
35+
val path: String = {
3636
val buildDir: File = (ThisBuild / baseDirectory).value
3737
val projDir: File = baseDirectory.value
3838
val rel: Option[String] = IO.relativize(buildDir, projDir)

project/Playdoc.scala

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ object Playdoc extends AutoPlugin {
1919
override def projectSettings =
2020
Defaults.packageTaskSettings(playdocPackage, playdocPackage / mappings) ++
2121
Seq(
22-
playdocDirectory := (ThisBuild / baseDirectory).value / "docs" / "manual",
22+
playdocDirectory := (ThisBuild / baseDirectory).value / "docs" / "manual",
2323
playdocPackage / mappings := {
2424
val base: File = playdocDirectory.value
2525
base.allPaths.pair(IO.relativize(base.getParentFile(), _))

src/core/src/test/scala/play/api/db/slick/util/WithReferenceConfig.scala

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ import org.specs2.specification.Scope
55
import play.api.Configuration
66

77
trait WithReferenceConfig extends Scope {
8-
val ref = Configuration.reference
8+
val ref = Configuration.reference
99
def enabledModules(c: Configuration): List[String] = {
1010
ref.get[Seq[String]]("play.modules.enabled").toList
1111
}

src/evolutions/src/main/scala/play/api/db/slick/evolutions/internal/DBApiAdapter.scala

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -51,7 +51,7 @@ private[evolutions] object DBApiAdapter {
5151
dbConfig.db.source match {
5252
case ds: DataSourceJdbcDataSource => ds.ds
5353
case hds: HikariCPJdbcDataSource => hds.ds
54-
case other =>
54+
case other =>
5555
logger.error(s"Unexpected data source type ${other.getClass}. Please, file a ticket $IssueTracker.")
5656
throw new UnsupportedOperationException
5757
}

0 commit comments

Comments
 (0)