Skip to content

Commit a3337a8

Browse files
authored
Update to mima 0.7.0 to prevent compilation issues with Akka bu… (akka#3005)
* Update to mima 0.7.0 to prevent compilation issues with Akka build * core: add mima filter for previous CommonAction change in backport commit c32f822
1 parent 980e416 commit a3337a8

File tree

3 files changed

+7
-2
lines changed

3 files changed

+7
-2
lines changed
Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
# Only happening with Scala 2.11, probably introduced in c32f822b9d540bfc4cf25e24754169d3056489d2
2+
3+
# Change in internal class
4+
ProblemFilters.exclude[ReversedMissingMethodProblem]("akka.http.impl.model.parser.CommonActions.equalsAsciiCaseInsensitive")

project/MiMa.scala

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -90,7 +90,8 @@ object MiMa extends AutoPlugin {
9090

9191
forks.flatMap(forkFilter).toMap ++
9292
filters.filterKeys(_ startsWith currentFork)
93-
}
93+
},
94+
mimaReportSignatureProblems := true,
9495
)
9596

9697
def latestForkVersion(fork: String, allVersions: Seq[String]): String =

project/plugins.sbt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ resolvers += Resolver.jcenterRepo
88

99
addSbtPlugin("com.typesafe.sbt" % "sbt-multi-jvm" % "0.4.0")
1010
addSbtPlugin("com.typesafe.sbt" % "sbt-git" % "1.0.0")
11-
addSbtPlugin("com.typesafe" % "sbt-mima-plugin" % "0.6.4")
11+
addSbtPlugin("com.typesafe" % "sbt-mima-plugin" % "0.7.0")
1212
addSbtPlugin("org.scalariform" % "sbt-scalariform" % "1.8.3")
1313
addSbtPlugin("com.dwijnand" % "sbt-dynver" % "4.0.0")
1414
addSbtPlugin("com.eed3si9n" % "sbt-unidoc" % "0.4.3")

0 commit comments

Comments
 (0)