Skip to content

Commit 2208b23

Browse files
committed
Add MiMa filters
1 parent bc3e094 commit 2208b23

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
@@ -1149,7 +1149,12 @@ lazy val std = crossProject(JSPlatform, JVMPlatform, NativePlatform)
11491149
ProblemFilters.exclude[DirectMissingMethodProblem](
11501150
"cats.effect.std.Mutex#ConcurrentImpl.EmptyCell"),
11511151
ProblemFilters.exclude[DirectMissingMethodProblem](
1152-
"cats.effect.std.Mutex#ConcurrentImpl.LockQueueCell")
1152+
"cats.effect.std.Mutex#ConcurrentImpl.LockQueueCell"),
1153+
// #4424, refactored private classes
1154+
ProblemFilters.exclude[IncompatibleMethTypeProblem](
1155+
"cats.effect.std.AtomicCell#AsyncImpl.this"),
1156+
ProblemFilters.exclude[IncompatibleMethTypeProblem](
1157+
"cats.effect.std.AtomicCell#ConcurrentImpl.this")
11531158
)
11541159
)
11551160
.jsSettings(

0 commit comments

Comments
 (0)