Skip to content

Commit e0503c9

Browse files
committed
Mima exclusions
1 parent 802d2ba commit e0503c9

File tree

1 file changed

+7
-1
lines changed

1 file changed

+7
-1
lines changed

build.sbt

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -155,7 +155,13 @@ ThisBuild / mimaBinaryIssueFilters ++= Seq(
155155
ProblemFilters.exclude[MissingTypesProblem]("fs2.compression$DeflateParams$DeflateParamsImpl$"),
156156
ProblemFilters.exclude[DirectMissingMethodProblem](
157157
"fs2.compression#DeflateParams#DeflateParamsImpl.apply"
158-
)
158+
),
159+
// Scala 3 exclusions for copy methods that should not have existed
160+
ProblemFilters.exclude[DirectMissingMethodProblem]("fs2.Chunk#ByteBuffer.copy"),
161+
ProblemFilters.exclude[DirectMissingMethodProblem]("fs2.Chunk#ByteBuffer.copy$default$1"),
162+
ProblemFilters.exclude[DirectMissingMethodProblem]("fs2.Chunk#ByteBuffer.copy$default$2"),
163+
ProblemFilters.exclude[DirectMissingMethodProblem]("fs2.Chunk#ByteBuffer.copy$default$3"),
164+
ProblemFilters.exclude[DirectMissingMethodProblem]("fs2.Chunk#ByteBuffer.apply")
159165
)
160166

161167
lazy val root = tlCrossRootProject

0 commit comments

Comments
 (0)