Skip to content

Commit

Permalink
mima
Browse files Browse the repository at this point in the history
  • Loading branch information
kellen committed Aug 22, 2024
1 parent 23fceb8 commit 14dd0b2
Showing 1 changed file with 12 additions and 2 deletions.
14 changes: 12 additions & 2 deletions build.sbt
Original file line number Diff line number Diff line change
Expand Up @@ -225,7 +225,15 @@ ThisBuild / githubWorkflowAddedJobs ++= Seq(
// mima
ThisBuild / mimaBinaryIssueFilters ++= Seq(
// genFunnelMacro should not be available to users
ProblemFilters.exclude[DirectMissingMethodProblem]("magnolify.guava.auto.package.genFunnelMacro")
ProblemFilters.exclude[DirectMissingMethodProblem]("magnolify.guava.auto.package.genFunnelMacro"),
// incorrectly named implicit
ProblemFilters.exclude[DirectMissingMethodProblem](
"magnolify.parquet.logical.package#micros.pfTimestampMillis"
),
// incorrectly named implicit
ProblemFilters.exclude[DirectMissingMethodProblem](
"magnolify.parquet.logical.package#micros.pfLocalDateTimeMillis"
)
)
ThisBuild / tlVersionIntroduced := Map("3" -> "0.8.0")

Expand Down Expand Up @@ -506,7 +514,9 @@ lazy val beam = project
libraryDependencies ++= Seq(
"org.apache.beam" % "beam-sdks-java-core" % beamVersion % Provided,
"com.google.protobuf" % "protobuf-java" % protobufVersion % ProtobufConfig
)
),
// TODO remove this line after release
tlMimaPreviousVersions := Set.empty
)

lazy val bigquery = project
Expand Down

0 comments on commit 14dd0b2

Please sign in to comment.