Skip to content

Commit

Permalink
Fix MiMa issues
Browse files Browse the repository at this point in the history
  • Loading branch information
BalmungSan committed Oct 19, 2024
1 parent 7ba4920 commit 843c382
Showing 1 changed file with 17 additions and 1 deletion.
18 changes: 17 additions & 1 deletion build.sbt
Original file line number Diff line number Diff line change
Expand Up @@ -256,7 +256,23 @@ ThisBuild / mimaBinaryIssueFilters ++= Seq(
ProblemFilters.exclude[DirectMissingMethodProblem]("fs2.hash.createHash"),
ProblemFilters.exclude[MissingClassProblem]("fs2.hash$Hash"),
ProblemFilters.exclude[MissingFieldProblem]("fs2.hash.openssl"),
ProblemFilters.exclude[MissingClassProblem]("fs2.hash$openssl$")
ProblemFilters.exclude[MissingClassProblem]("fs2.hash$openssl$"),
// Privates: #3387
ProblemFilters.exclude[MissingClassProblem](
"fs2.interop.flow.StreamSubscriber$Input$Next"
),
ProblemFilters.exclude[MissingClassProblem](
"fs2.interop.flow.StreamSubscriber$Input$Next$"
),
ProblemFilters.exclude[MissingFieldProblem](
"fs2.interop.flow.StreamSubscriber#Input.Next"
),
ProblemFilters.exclude[Problem](
"fs2.interop.flow.StreamSubscriber#State#WaitingOnUpstream.*"
),
ProblemFilters.exclude[MissingTypesProblem](
"fs2.interop.flow.StreamSubscriber$State$WaitingOnUpstream$"
)
)

lazy val root = tlCrossRootProject
Expand Down

0 comments on commit 843c382

Please sign in to comment.