Skip to content

Commit a5c0ca8

Browse files
committed
Add MiMa filters
1 parent a52f618 commit a5c0ca8

File tree

1 file changed

+6
-1
lines changed

1 file changed

+6
-1
lines changed

build.sbt

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1148,7 +1148,12 @@ lazy val std = crossProject(JSPlatform, JVMPlatform, NativePlatform)
11481148
ProblemFilters.exclude[DirectMissingMethodProblem](
11491149
"cats.effect.std.Mutex#ConcurrentImpl.EmptyCell"),
11501150
ProblemFilters.exclude[DirectMissingMethodProblem](
1151-
"cats.effect.std.Mutex#ConcurrentImpl.LockQueueCell")
1151+
"cats.effect.std.Mutex#ConcurrentImpl.LockQueueCell"),
1152+
// #4424, refactored private classes
1153+
ProblemFilters.exclude[IncompatibleMethTypeProblem](
1154+
"cats.effect.std.AtomicCell#AsyncImpl.this"),
1155+
ProblemFilters.exclude[IncompatibleMethTypeProblem](
1156+
"cats.effect.std.AtomicCell#ConcurrentImpl.this")
11521157
)
11531158
)
11541159
.jsSettings(

0 commit comments

Comments
 (0)