Skip to content

Commit

Permalink
Merge remote-tracking branch 'origin/delete_migration' into chimney_w…
Browse files Browse the repository at this point in the history
…rapper
  • Loading branch information
urmaul committed May 17, 2024
2 parents 86b11ad + 9a1e95f commit 51519bd
Showing 1 changed file with 10 additions and 1 deletion.
11 changes: 10 additions & 1 deletion build.sbt
Original file line number Diff line number Diff line change
Expand Up @@ -159,7 +159,16 @@ lazy val mimaSettings = Seq(
mimaPreviousArtifacts := Set("io.moia" %% "teleproto" % "2.0.0"),
mimaBinaryIssueFilters ++= Seq(
// Method was added in 2.1.0
ProblemFilters.exclude[ReversedMissingMethodProblem]("io.moia.protos.teleproto.PbResult.toEither")
ProblemFilters.exclude[ReversedMissingMethodProblem]("io.moia.protos.teleproto.PbResult.toEither"),
// Classes were removed in 3.0.0
ProblemFilters.exclude[MissingClassProblem]("io.moia.protos.teleproto.Migration"),
ProblemFilters.exclude[MissingClassProblem]("io.moia.protos.teleproto.Migration$"),
ProblemFilters.exclude[MissingClassProblem]("io.moia.protos.teleproto.MigrationImpl"),
ProblemFilters.exclude[MissingClassProblem]("io.moia.protos.teleproto.MigrationImpl$Automatically"),
ProblemFilters.exclude[MissingClassProblem]("io.moia.protos.teleproto.MigrationImpl$Automatically$"),
ProblemFilters.exclude[MissingClassProblem]("io.moia.protos.teleproto.MigrationImpl$ParamMigration"),
ProblemFilters.exclude[MissingClassProblem]("io.moia.protos.teleproto.MigrationImpl$Required"),
ProblemFilters.exclude[MissingClassProblem]("io.moia.protos.teleproto.MigrationImpl$Required$"),
)
)

Expand Down

0 comments on commit 51519bd

Please sign in to comment.