Skip to content

Commit af98659

Browse files
committed
Add MiMa filters
1 parent 8cb3bd6 commit af98659

File tree

1 file changed

+7
-1
lines changed

1 file changed

+7
-1
lines changed

build.sbt

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1045,7 +1045,13 @@ lazy val std = crossProject(JSPlatform, JVMPlatform, NativePlatform)
10451045
ProblemFilters.exclude[FinalMethodProblem](
10461046
"cats.effect.std.Dispatcher#RegState#Unstarted.toString"),
10471047
ProblemFilters.exclude[DirectMissingMethodProblem](
1048-
"cats.effect.std.Dispatcher#Registration#Primary.*")
1048+
"cats.effect.std.Dispatcher#Registration#Primary.*"),
1049+
// #4065, moved to its own file.
1050+
ProblemFilters.exclude[MissingClassProblem]("cats.effect.std.Mutex$ConcurrentImpl$"),
1051+
ProblemFilters.exclude[DirectMissingMethodProblem](
1052+
"cats.effect.std.Mutex#ConcurrentImpl.EmptyCell"),
1053+
ProblemFilters.exclude[DirectMissingMethodProblem](
1054+
"cats.effect.std.Mutex#ConcurrentImpl.LockQueueCell")
10491055
)
10501056
)
10511057
.jsSettings(

0 commit comments

Comments
 (0)