From e0216b2c8a890af7a4e933c551af3901970efb9f Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?S=C3=A9bastien=20Doeraene?= Date: Thu, 20 Jul 2023 10:12:00 +0200 Subject: [PATCH] Upgrade to tasty-mima v0.4.0. --- project/Build.scala | 1 - project/TastyMiMaFilters.scala | 7 ------- project/plugins.sbt | 2 +- 3 files changed, 1 insertion(+), 9 deletions(-) diff --git a/project/Build.scala b/project/Build.scala index 4680474d4411..3265eb04677c 100644 --- a/project/Build.scala +++ b/project/Build.scala @@ -1002,7 +1002,6 @@ object Build { "scala.annotation.specialized", "scala.annotation.unspecialized", ), - tastyMiMaTastyQueryVersionOverride := Some("0.8.4"), tastyMiMaPreviousArtifacts += "org.scala-lang" % "scala-library" % stdlibVersion(Bootstrapped), tastyMiMaCurrentClasspath := { val javaBootCp = tastyMiMaJavaBootClasspath.value diff --git a/project/TastyMiMaFilters.scala b/project/TastyMiMaFilters.scala index 3d2aea53426d..8a34fe32f15d 100644 --- a/project/TastyMiMaFilters.scala +++ b/project/TastyMiMaFilters.scala @@ -49,10 +49,6 @@ object TastyMiMaFilters { // Tested in stdlib-bootstrapped/test/scala/collection/UnrolledBufferTest.scala ProblemMatcher.make(ProblemKind.IncompatibleTypeChange, "scala.collection.mutable.UnrolledBuffer.Unrolled.$default$4"), - // Problem: Missing type arguments with higher-kinded types - ProblemMatcher.make(ProblemKind.MissingTypeMember, "scala.collection.SortedSetFactoryDefaults._$5"), - ProblemMatcher.make(ProblemKind.MissingTypeMember, "scala.collection.SortedMapFactoryDefaults._$6"), - // Problem? Very complicated signature ProblemMatcher.make(ProblemKind.IncompatibleTypeChange, "scala.collection.generic.IsMap.mapOpsIsMap"), @@ -71,9 +67,6 @@ object TastyMiMaFilters { // Problem Missing setter for `protected var` ProblemMatcher.make(ProblemKind.NewAbstractMember, "scala.collection.convert.impl.*_="), - // TASTy-MiMa bug? Wildcards in self type - ProblemMatcher.make(ProblemKind.MissingTypeMember, "scala.collection.generic.DefaultSerializable._$1"), - // TASTy-MiMa bugs ProblemMatcher.make(ProblemKind.InternalError, "scala.collection.SeqView.appendedAll"), ProblemMatcher.make(ProblemKind.InternalError, "scala.collection.SeqView.concat"), diff --git a/project/plugins.sbt b/project/plugins.sbt index 9362b035fbb4..87802edf302a 100644 --- a/project/plugins.sbt +++ b/project/plugins.sbt @@ -20,4 +20,4 @@ addSbtPlugin("com.eed3si9n" % "sbt-buildinfo" % "0.11.0") addSbtPlugin("com.typesafe" % "sbt-mima-plugin" % "1.1.2") -addSbtPlugin("ch.epfl.scala" % "sbt-tasty-mima" % "0.3.1") +addSbtPlugin("ch.epfl.scala" % "sbt-tasty-mima" % "0.4.0")