@@ -3,6 +3,41 @@ import tastymima.intf._
33
44object TastyMiMaFilters {
55 val StdlibBootstrapped : java.util.List [ProblemMatcher ] = asList(
6+ // Ok (needs library from 2.13.12): Inferred result type of non-private member differs
7+ ProblemMatcher .make(ProblemKind .IncompatibleTypeChange , " scala.collection.*.elemTag" ), // Fix in https://github.com/scala/scala/pull/10444
8+ ProblemMatcher .make(ProblemKind .IncompatibleTypeChange , " scala.collection.convert.JavaCollectionWrappers.JCollectionWrapper.iterableFactory" ), // Fix in https://github.com/scala/scala/pull/10435
9+ ProblemMatcher .make(ProblemKind .IncompatibleTypeChange , " scala.collection.convert.JavaCollectionWrappers.JConcurrentMapWrapper.empty" ), // Fix in https://github.com/scala/scala/pull/10435
10+ ProblemMatcher .make(ProblemKind .IncompatibleTypeChange , " scala.collection.convert.JavaCollectionWrappers.JDictionaryWrapper.mapFactory" ), // Fix in https://github.com/scala/scala/pull/10435
11+ ProblemMatcher .make(ProblemKind .IncompatibleTypeChange , " scala.collection.convert.JavaCollectionWrappers.JIterableWrapper.iterableFactory" ), // Fix in https://github.com/scala/scala/pull/10435
12+ ProblemMatcher .make(ProblemKind .IncompatibleTypeChange , " scala.collection.convert.JavaCollectionWrappers.JListWrapper.iterableFactory" ), // Fix in https://github.com/scala/scala/pull/10435
13+ ProblemMatcher .make(ProblemKind .IncompatibleTypeChange , " scala.collection.convert.JavaCollectionWrappers.JMapWrapper.empty" ), // Fix in https://github.com/scala/scala/pull/10435
14+ ProblemMatcher .make(ProblemKind .IncompatibleTypeChange , " scala.collection.convert.JavaCollectionWrappers.JPropertiesWrapper.empty" ), // Fix in https://github.com/scala/scala/pull/10435
15+ ProblemMatcher .make(ProblemKind .IncompatibleTypeChange , " scala.collection.convert.JavaCollectionWrappers.JPropertiesWrapper.mapFactory" ), // Fix in https://github.com/scala/scala/pull/10435
16+ ProblemMatcher .make(ProblemKind .IncompatibleTypeChange , " scala.collection.immutable.TreeSet.sortedIterableFactory" ), // Fix in https://github.com/scala/scala/pull/10435
17+ ProblemMatcher .make(ProblemKind .IncompatibleTypeChange , " scala.collection.mutable.TreeMap.sortedMapFactory" ), // Fix in https://github.com/scala/scala/pull/10435
18+ ProblemMatcher .make(ProblemKind .IncompatibleTypeChange , " scala.collection.mutable.UnrolledBuffer.classTagCompanion" ), // Fix in https://github.com/scala/scala/pull/10435
19+ ProblemMatcher .make(ProblemKind .IncompatibleTypeChange , " scala.collection.View.LeftPartitionMapped.iterator" ), // Fix in https://github.com/scala/scala/pull/10435
20+ ProblemMatcher .make(ProblemKind .IncompatibleTypeChange , " scala.collection.View.RightPartitionMapped.iterator" ), // Fix in https://github.com/scala/scala/pull/10435
21+ ProblemMatcher .make(ProblemKind .IncompatibleTypeChange , " scala.concurrent.duration.FiniteDuration.unary_-" ), // Fix in https://github.com/scala/scala/pull/10435
22+ ProblemMatcher .make(ProblemKind .IncompatibleTypeChange , " scala.reflect.ManifestFactory.*.runtimeClass" ), // Fix in https://github.com/scala/scala/pull/10444
23+ ProblemMatcher .make(ProblemKind .IncompatibleTypeChange , " scala.sys.process.ProcessBuilderImpl.AbstractBuilder.toSink" ), // Fix in https://github.com/scala/scala/pull/10435
24+ ProblemMatcher .make(ProblemKind .IncompatibleTypeChange , " scala.sys.process.ProcessBuilderImpl.AbstractBuilder.toSource" ), // Fix in https://github.com/scala/scala/pull/10435
25+ ProblemMatcher .make(ProblemKind .IncompatibleTypeChange , " scala.sys.process.ProcessBuilderImpl.FileImpl.toSink" ), // Fix in https://github.com/scala/scala/pull/10435
26+ ProblemMatcher .make(ProblemKind .IncompatibleTypeChange , " scala.sys.process.ProcessBuilderImpl.FileImpl.toSource" ), // Fix in https://github.com/scala/scala/pull/10435
27+ ProblemMatcher .make(ProblemKind .IncompatibleTypeChange , " scala.sys.process.ProcessBuilderImpl.URLImpl.toSource" ), // Fix in https://github.com/scala/scala/pull/10435
28+ ProblemMatcher .make(ProblemKind .MissingTermMember , " scala.collection.concurrent.FailedNode.string" ), // Fix in https://github.com/scala/scala/pull/10444
29+ ProblemMatcher .make(ProblemKind .MissingTermMember , " scala.collection.convert.JavaCollectionWrappers.IterableWrapperTrait.iterator" ), // Fix in https://github.com/scala/scala/pull/10435
30+ ProblemMatcher .make(ProblemKind .MissingTermMember , " scala.collection.convert.JavaCollectionWrappers.IteratorWrapper.remove" ), // Fix in https://github.com/scala/scala/pull/10435
31+ ProblemMatcher .make(ProblemKind .MissingTermMember , " scala.collection.mutable.LinkedHashMap.newBuilder" ), // Fix in https://github.com/scala/scala/pull/10435
32+ ProblemMatcher .make(ProblemKind .MissingTermMember , " scala.collection.mutable.LinkedHashSet.newBuilder" ), // Fix in https://github.com/scala/scala/pull/10435
33+ ProblemMatcher .make(ProblemKind .MissingTermMember , " scala.math.Ordering.tryCompare" ), // Fix in https://github.com/scala/scala/pull/10435
34+ ProblemMatcher .make(ProblemKind .MissingTermMember , " scala.sys.process.ProcessBuilderImpl.AndBuilder.createProcess" ), // Fix in https://github.com/scala/scala/pull/10435
35+ ProblemMatcher .make(ProblemKind .MissingTermMember , " scala.sys.process.ProcessBuilderImpl.OrBuilder.createProcess" ), // Fix in https://github.com/scala/scala/pull/10435
36+ ProblemMatcher .make(ProblemKind .MissingTermMember , " scala.sys.process.ProcessBuilderImpl.PipedBuilder.createProcess" ), // Fix in https://github.com/scala/scala/pull/10435
37+ ProblemMatcher .make(ProblemKind .MissingTermMember , " scala.sys.process.ProcessBuilderImpl.SequenceBuilder.createProcess" ), // Fix in https://github.com/scala/scala/pull/10435
38+ ProblemMatcher .make(ProblemKind .IncompatibleTypeChange , " scala.collection.immutable.BitSet.bitSetFactory" ), // Fix in https://github.com/scala/scala/pull/10444
39+ ProblemMatcher .make(ProblemKind .IncompatibleTypeChange , " scala.collection.mutable.BitSet.bitSetFactory" ), // Fix in https://github.com/scala/scala/pull/10444
40+
641 // Probably OK
742 ProblemMatcher .make(ProblemKind .IncompatibleSelfTypeChange , " scala.*" ),
843
@@ -12,10 +47,6 @@ object TastyMiMaFilters {
1247 // Problem: Missing Serializable in companions of serializable classes
1348 ProblemMatcher .make(ProblemKind .MissingParent , " scala.*$" ),
1449
15- // Problem: Class[T] or ClassTag[T] with `T` equal to wildcard `_ >: Nothing <: AnyVal` instead of a specific primitive type `T`
16- ProblemMatcher .make(ProblemKind .IncompatibleTypeChange , " scala.reflect.ManifestFactory.*.runtimeClass" ),
17- ProblemMatcher .make(ProblemKind .IncompatibleTypeChange , " scala.collection.*.elemTag" ),
18-
1950 // Problem: ConstantType for `null` versus `scala.Null`
2051 ProblemMatcher .make(ProblemKind .IncompatibleTypeChange , " scala.collection.mutable.UnrolledBuffer.Unrolled.<init>$default$4" ),
2152
@@ -30,11 +61,6 @@ object TastyMiMaFilters {
3061 ProblemMatcher .make(ProblemKind .MissingTermMember , " scala.math.Big*.underlying" ),
3162 ProblemMatcher .make(ProblemKind .NewAbstractMember , " scala.math.ScalaNumericConversions.underlying" ),
3263
33- // Problem: Inferred result type of non-private member differs
34- ProblemMatcher .make(ProblemKind .MissingTermMember , " scala.collection.convert.JavaCollectionWrappers.IterableWrapperTrait.iterator" ),
35- ProblemMatcher .make(ProblemKind .IncompatibleTypeChange , " scala.collection.mutable.UnrolledBuffer.classTagCompanion" ),
36- ProblemMatcher .make(ProblemKind .MissingTermMember , " scala.collection.concurrent.FailedNode.string" ),
37-
3864 // Problem: super accessors
3965 ProblemMatcher .make(ProblemKind .NewAbstractMember , " scala.*.superscala$*$*$$*" ), // The member scala.collection.mutable.Cloneable.superscala$collection$mutable$Cloneable$$clone was concrete or did not exist but is abstract in current version
4066
@@ -47,10 +73,6 @@ object TastyMiMaFilters {
4773 // TASTy-MiMa bug? Wildcards in self type
4874 ProblemMatcher .make(ProblemKind .MissingTypeMember , " scala.collection.generic.DefaultSerializable._$1" ),
4975
50- // TASTy-MiMa bug? module classes
51- ProblemMatcher .make(ProblemKind .IncompatibleTypeChange , " scala.collection.immutable.BitSet.bitSetFactory" ), // The symbol scala.collection.immutable.BitSet.bitSetFactory has an incompatible type in current version: before: scala.collection.immutable.BitSet$; after: scala.collection.immutable.BitSet.type
52- ProblemMatcher .make(ProblemKind .IncompatibleTypeChange , " scala.collection.mutable.BitSet.bitSetFactory" ), // The symbol scala.collection.mutable.BitSet.bitSetFactory has an incompatible type in current version: before: scala.collection.mutable.BitSet$; after: scala.collection.mutable.BitSet.type
53-
5476 // TASTy-MiMa bugs
5577 ProblemMatcher .make(ProblemKind .InternalError , " scala.collection.SeqView.appendedAll" ),
5678 ProblemMatcher .make(ProblemKind .InternalError , " scala.collection.SeqView.concat" ),
0 commit comments