This is an automated email from the ASF dual-hosted git repository. wenchen pushed a commit to branch branch-4.0 in repository https://gitbox.apache.org/repos/asf/spark.git
The following commit(s) were added to refs/heads/branch-4.0 by this push: new f9a0f57f9ade [INFRA][MINOR] Update mima exclude f9a0f57f9ade is described below commit f9a0f57f9ade0c1c693646b10a38461313258d1f Author: Wenchen Fan <wenc...@databricks.com> AuthorDate: Thu May 29 11:36:48 2025 +0800 [INFRA][MINOR] Update mima exclude ### What changes were proposed in this pull request? This is a followup of https://github.com/apache/spark/pull/50797 , to exclde these private packages from mima check. ### Why are the changes needed? mima shouldn't check private APIs ### Does this PR introduce _any_ user-facing change? no ### How was this patch tested? N/A ### Was this patch authored or co-authored using generative AI tooling? no Closes #51038 from cloud-fan/mima. Authored-by: Wenchen Fan <wenc...@databricks.com> Signed-off-by: Wenchen Fan <wenc...@databricks.com> (cherry picked from commit f634311c7e77662e70604c4950f7bc7ebb15b53a) Signed-off-by: Wenchen Fan <wenc...@databricks.com> --- project/MimaExcludes.scala | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/project/MimaExcludes.scala b/project/MimaExcludes.scala index 731ff183d2e0..1f351462dc4d 100644 --- a/project/MimaExcludes.scala +++ b/project/MimaExcludes.scala @@ -241,6 +241,7 @@ object MimaExcludes { ProblemFilters.exclude[Problem]("org.spark_project.jetty.*"), ProblemFilters.exclude[Problem]("org.sparkproject.jetty.*"), ProblemFilters.exclude[Problem]("org.apache.spark.internal.*"), + ProblemFilters.exclude[Problem]("org.apache.spark.kafka010.*"), ProblemFilters.exclude[Problem]("org.apache.spark.unused.*"), ProblemFilters.exclude[Problem]("org.apache.spark.unsafe.*"), ProblemFilters.exclude[Problem]("org.apache.spark.memory.*"), @@ -251,11 +252,16 @@ object MimaExcludes { ProblemFilters.exclude[Problem]("org.apache.spark.sql.errors.*"), ProblemFilters.exclude[Problem]("org.apache.spark.sql.classic.*"), ProblemFilters.exclude[Problem]("org.apache.spark.sql.connect.*"), + ProblemFilters.exclude[Problem]("org.apache.spark.sql.scripting.*"), + ProblemFilters.exclude[Problem]("org.apache.spark.types.variant.*"), + ProblemFilters.exclude[Problem]("org.apache.spark.ui.flamegraph.*"), // DSv2 catalog and expression APIs are unstable yet. We should enable this back. ProblemFilters.exclude[Problem]("org.apache.spark.sql.connector.catalog.*"), ProblemFilters.exclude[Problem]("org.apache.spark.sql.connector.expressions.*"), // Avro source implementation is internal. ProblemFilters.exclude[Problem]("org.apache.spark.sql.v2.avro.*"), + ProblemFilters.exclude[Problem]("org.apache.spark.sql.avro.*"), + // SPARK-43169: shaded and generated protobuf code ProblemFilters.exclude[Problem]("org.sparkproject.spark_core.protobuf.*"), --------------------------------------------------------------------- To unsubscribe, e-mail: commits-unsubscr...@spark.apache.org For additional commands, e-mail: commits-h...@spark.apache.org