File tree Expand file tree Collapse file tree 1 file changed +12
-0
lines changed
Expand file tree Collapse file tree 1 file changed +12
-0
lines changed Original file line number Diff line number Diff line change @@ -9,6 +9,18 @@ object MiMaFilters {
99 // Additions that require a new minor version of the library
1010 Build .mimaPreviousDottyVersion -> Seq (
1111 ProblemFilters .exclude[DirectMissingMethodProblem ](" scala.caps.package#package.freeze" ),
12+
13+ // against 3.8.0-RC1
14+ // private[MapOps] MapOps.allKeys changing types
15+ ProblemFilters .exclude[ReversedMissingMethodProblem ](" scala.collection.MapOps#GenKeySet.allKeys" ),
16+ ProblemFilters .exclude[ReversedMissingMethodProblem ](" scala.collection.MapOps#GenKeySet.scala$collection$MapOps$GenKeySet$_setter_$allKeys_=" ),
17+ ProblemFilters .exclude[IncompatibleResultTypeProblem ](" scala.collection.MapOps#KeySet.allKeys" ),
18+ ProblemFilters .exclude[IncompatibleResultTypeProblem ](" scala.collection.SortedMapOps#KeySortedSet.allKeys" ),
19+ ProblemFilters .exclude[IncompatibleResultTypeProblem ](" scala.collection.immutable.SortedMapOps#ImmutableKeySortedSet.allKeys" ),
20+ // new private[collection] classes
21+ ProblemFilters .exclude[MissingClassProblem ](" scala.collection.SortedMapOps$LazyKeySortedSet" ),
22+ ProblemFilters .exclude[MissingClassProblem ](" scala.collection.immutable.MapOps$LazyImmutableKeySet" ),
23+ ProblemFilters .exclude[MissingClassProblem ](" scala.collection.immutable.SortedMapOps$LazyImmutableKeySortedSet" ),
1224 ),
1325
1426 )
You can’t perform that action at this time.
0 commit comments