Skip to content

Commit

Permalink
Delete deprecated rendering class (#2261)
Browse files Browse the repository at this point in the history
  • Loading branch information
paulpdaniels authored Jun 1, 2024
1 parent b500157 commit 8b0305f
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 39 deletions.
5 changes: 4 additions & 1 deletion build.sbt
Original file line number Diff line number Diff line change
Expand Up @@ -774,7 +774,10 @@ lazy val enableMimaSettingsJVM =
Def.settings(
mimaFailOnProblem := enforceMimaCompatibility,
mimaPreviousArtifacts := previousStableVersion.value.map(organization.value %% moduleName.value % _).toSet,
mimaBinaryIssueFilters ++= Seq()
mimaBinaryIssueFilters ++= Seq(
ProblemFilters.exclude[MissingClassProblem]("caliban.Rendering"),
ProblemFilters.exclude[MissingClassProblem]("caliban.Rendering$")
)
)

lazy val enableMimaSettingsJS =
Expand Down
38 changes: 0 additions & 38 deletions core/src/main/scala/caliban/Rendering.scala

This file was deleted.

0 comments on commit 8b0305f

Please sign in to comment.