Skip to content

Commit d81546f

Browse files
committed
Add MiMa filters related to lightbend-labs/mima#211
1 parent 2208b23 commit d81546f

File tree

1 file changed

+10
-1
lines changed

1 file changed

+10
-1
lines changed

build.sbt

Lines changed: 10 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1154,7 +1154,16 @@ lazy val std = crossProject(JSPlatform, JVMPlatform, NativePlatform)
11541154
ProblemFilters.exclude[IncompatibleMethTypeProblem](
11551155
"cats.effect.std.AtomicCell#AsyncImpl.this"),
11561156
ProblemFilters.exclude[IncompatibleMethTypeProblem](
1157-
"cats.effect.std.AtomicCell#ConcurrentImpl.this")
1157+
"cats.effect.std.AtomicCell#ConcurrentImpl.this"),
1158+
// #4424, false warnings in CommonImpl due to lightbend-labs/mima#211
1159+
ProblemFilters.exclude[DirectAbstractMethodProblem](
1160+
"cats.effect.std.AtomicCell.modify"),
1161+
ProblemFilters.exclude[DirectAbstractMethodProblem](
1162+
"cats.effect.std.AtomicCell.evalUpdate"),
1163+
ProblemFilters.exclude[DirectAbstractMethodProblem](
1164+
"cats.effect.std.AtomicCell.evalGetAndUpdate"),
1165+
ProblemFilters.exclude[DirectAbstractMethodProblem](
1166+
"cats.effect.std.AtomicCell.evalUpdateAndGet")
11581167
)
11591168
)
11601169
.jsSettings(

0 commit comments

Comments
 (0)