Skip to content

Commit

Permalink
Added mima filters for CallbackStack changes
Browse files Browse the repository at this point in the history
  • Loading branch information
djspiewak committed Mar 14, 2022
1 parent 3f1dfb5 commit 489770d
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion build.sbt
Original file line number Diff line number Diff line change
Expand Up @@ -454,7 +454,10 @@ lazy val core = crossProject(JSPlatform, JVMPlatform)
ProblemFilters.exclude[MissingClassProblem]("cats.effect.unsafe.WorkerThread$Data"),
// introduced by #2844, Thread local fallback weak bag
// changes to `cats.effect.unsafe` package private code
ProblemFilters.exclude[MissingClassProblem]("cats.effect.unsafe.SynchronizedWeakBag")
ProblemFilters.exclude[MissingClassProblem]("cats.effect.unsafe.SynchronizedWeakBag"),
// introduced by #2868
// added signaling from CallbackStack to indicate successful invocation
ProblemFilters.exclude[DirectMissingMethodProblem]("cats.effect.CallbackStack.apply")
) ++ {
if (isDotty.value) {
// Scala 3 specific exclusions
Expand Down

0 comments on commit 489770d

Please sign in to comment.