Repository: spark Updated Branches: refs/heads/master 75db1742a -> 140787173
[MLLIB] make Mima ignore updateFeatures (private) in ALS Fix Mima issues in #1521. Author: Xiangrui Meng <[email protected]> Closes #1533 from mengxr/mima-als and squashes the following commits: 78386e1 [Xiangrui Meng] make Mima ignore updateFeatures (private) in ALS Project: http://git-wip-us.apache.org/repos/asf/spark/repo Commit: http://git-wip-us.apache.org/repos/asf/spark/commit/14078717 Tree: http://git-wip-us.apache.org/repos/asf/spark/tree/14078717 Diff: http://git-wip-us.apache.org/repos/asf/spark/diff/14078717 Branch: refs/heads/master Commit: 1407871733176c92c67ac547adf603c41a772f7f Parents: 75db174 Author: Xiangrui Meng <[email protected]> Authored: Tue Jul 22 11:45:37 2014 -0700 Committer: Xiangrui Meng <[email protected]> Committed: Tue Jul 22 11:45:37 2014 -0700 ---------------------------------------------------------------------- project/MimaExcludes.scala | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/spark/blob/14078717/project/MimaExcludes.scala ---------------------------------------------------------------------- diff --git a/project/MimaExcludes.scala b/project/MimaExcludes.scala index 4d86e1a..5e5ddd2 100644 --- a/project/MimaExcludes.scala +++ b/project/MimaExcludes.scala @@ -82,7 +82,9 @@ object MimaExcludes { ProblemFilters.exclude[MissingMethodProblem]( // The only public constructor is the one without arguments. "org.apache.spark.mllib.recommendation.ALS.this"), ProblemFilters.exclude[MissingMethodProblem]( - "org.apache.spark.mllib.recommendation.ALS.org$apache$spark$mllib$recommendation$ALS$$<init>$default$7") + "org.apache.spark.mllib.recommendation.ALS.org$apache$spark$mllib$recommendation$ALS$$<init>$default$7"), + ProblemFilters.exclude[IncompatibleMethTypeProblem]( + "org.apache.spark.mllib.recommendation.ALS.org$apache$spark$mllib$recommendation$ALS$^dateFeatures") ) ++ MimaBuild.excludeSparkClass("mllib.linalg.distributed.ColumnStatisticsAggregator") ++ MimaBuild.excludeSparkClass("rdd.ZippedRDD") ++
