summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSeth Tisue <seth@tisue.net>2016-12-01 12:26:04 -0800
committerSeth Tisue <seth@tisue.net>2016-12-01 12:26:04 -0800
commit212c525fc185f0d445d96f8f3c07f6edd0f3dba6 (patch)
tree69eeaacc188a238e8dd95ccddcbd81e86d092081
parentc2eb299b0e1ed2f321a81d4afbdb36762e2c0e7b (diff)
parent264cc5f20cd9a6b9c6d414dfea696de1b8608dc5 (diff)
downloadscala-212c525fc185f0d445d96f8f3c07f6edd0f3dba6.tar.gz
scala-212c525fc185f0d445d96f8f3c07f6edd0f3dba6.tar.bz2
scala-212c525fc185f0d445d96f8f3c07f6edd0f3dba6.zip
Merge remote-tracking branch 'origin/2.11.x' into merge-2.11.x-to-2.12.x-dec-1
-rw-r--r--bincompat-backward.whitelist.conf26
-rw-r--r--bincompat-forward.whitelist.conf6
-rw-r--r--project/plugins.sbt2
3 files changed, 33 insertions, 1 deletions
diff --git a/bincompat-backward.whitelist.conf b/bincompat-backward.whitelist.conf
index af80bedf5b..6e260872c9 100644
--- a/bincompat-backward.whitelist.conf
+++ b/bincompat-backward.whitelist.conf
@@ -16,6 +16,32 @@ filter {
{
matchName="scala.sys.process.ProcessImpl#CompoundProcess.getExitValue"
problemName=DirectMissingMethodProblem
+ },
+ # these next seven can be removed once there is a fix for
+ # https://github.com/typesafehub/migration-manager/issues/147
+ {
+ matchName="scala.collection.Iterator#Leading#1.hd_="
+ problemName=DirectMissingMethodProblem
+ },
+ {
+ matchName="scala.collection.Iterator#Leading#1.hd"
+ problemName=DirectMissingMethodProblem
+ },
+ {
+ matchName="scala.collection.Iterator#Leading#1.status_="
+ problemName=DirectMissingMethodProblem
+ },
+ {
+ matchName="scala.collection.Iterator#Leading#1.lookahead_="
+ problemName=DirectMissingMethodProblem
+ },
+ {
+ matchName="scala.collection.Iterator#Leading#1.status"
+ problemName=DirectMissingMethodProblem
+ },
+ {
+ matchName="scala.collection.Iterator#Leading#1.lookahead"
+ problemName=DirectMissingMethodProblem
}
]
}
diff --git a/bincompat-forward.whitelist.conf b/bincompat-forward.whitelist.conf
index aebd2c8d1b..4461974081 100644
--- a/bincompat-forward.whitelist.conf
+++ b/bincompat-forward.whitelist.conf
@@ -24,6 +24,12 @@ filter {
{
matchName="scala.reflect.runtime.Settings.Yvirtpatmat"
problemName=DirectMissingMethodProblem
+ },
+ # this one can be removed once there is a fix for
+ # https://github.com/typesafehub/migration-manager/issues/147
+ {
+ matchName="scala.collection.Iterator#Leading#1.trailer"
+ problemName=DirectMissingMethodProblem
}
]
}
diff --git a/project/plugins.sbt b/project/plugins.sbt
index e056de55ec..d2476d9207 100644
--- a/project/plugins.sbt
+++ b/project/plugins.sbt
@@ -19,4 +19,4 @@ buildInfoKeys := Seq[BuildInfoKey](buildClasspath)
buildInfoPackage := "scalabuild"
-libraryDependencies += "com.typesafe" %% "mima-reporter" % "0.1.11"
+libraryDependencies += "com.typesafe" %% "mima-reporter" % "0.1.12"