Skip to content

Commit b7760ef

Browse files
authored
Merge pull request #962 from scala-steward/update/5.4.x/patches
[5.4.x] Patch updates
2 parents 53a1531 + 9e1b384 commit b7760ef

6 files changed

Lines changed: 8 additions & 5 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
d7d4bc4d51319e3a74b0e7858e68bd93e2e056f8
3+
4+
# Scala Steward: Reformat with scalafmt 3.9.7
5+
26bb9e5d48711aa372655293379a734ffe89809e

.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
@@ -20,7 +20,7 @@ lazy val commonSettings = Seq(
2020
// Work around https://issues.scala-lang.org/browse/SI-9311
2121
scalacOptions ~= (_.filterNot(_ == "-Xfatal-warnings")),
2222
scalaVersion := "2.13.16",
23-
crossScalaVersions := Seq("2.13.16", "3.3.5"),
23+
crossScalaVersions := Seq("2.13.16", "3.3.6"),
2424
pomExtra := scala.xml.NodeSeq.Empty, // Can be removed when dropping interplay
2525
developers += Developer(
2626
"playframework",

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

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)