File tree Expand file tree Collapse file tree 1 file changed +7
-1
lines changed
Expand file tree Collapse file tree 1 file changed +7
-1
lines changed Original file line number Diff line number Diff 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
161167lazy val root = tlCrossRootProject
You can’t perform that action at this time.
0 commit comments