From dc807e189e2839194faaff10fcf4fbcd6a93814a Mon Sep 17 00:00:00 2001 From: xerial-bot Date: Wed, 13 Sep 2023 01:23:35 -0700 Subject: [PATCH] Update spark-sql to 3.5.0 (#3219) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit ## About this PR 📦 Updates [org.apache.spark:spark-sql](https://spark.apache.org/) from `3.4.1` to `3.5.0` ## Usage ✅ **Please merge!** I'll automatically update this PR to resolve conflicts as long as you don't change it yourself. If you'd like to skip this version, you can just close this PR. If you have any feedback, just mention me in the comments below. Configure Scala Steward for your repository with a [`.scala-steward.conf`](https://github.com/scala-steward-org/scala-steward/blob/b83aae55d9dd000548c3b3c9b63d79636e7b3c8b/docs/repo-specific-configuration.md) file. _Have a fantastic day writing Scala!_
🔍 Files still referring to the old version number The following files still refer to the old version number (3.4.1). You might want to review and update them manually. ``` docs/release-notes.md examples/rx-demo/gallery/src/main/public/index.html ```
⚙ Adjust future updates Add this to your `.scala-steward.conf` file to ignore future updates of this dependency: ``` updates.ignore = [ { groupId = "org.apache.spark", artifactId = "spark-sql" } ] ``` Or, add this to slow down future updates of this dependency: ``` dependencyOverrides = [{ pullRequests = { frequency = "30 days" }, dependency = { groupId = "org.apache.spark", artifactId = "spark-sql" } }] ```
labels: test-library-update --- build.sbt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/build.sbt b/build.sbt index d009733886..0260875901 100644 --- a/build.sbt +++ b/build.sbt @@ -880,7 +880,7 @@ def sqlRefLib = { scalaVersion: String => if (scalaVersion.startsWith("2.13")) { Seq( // Include Spark just as a reference implementation - "org.apache.spark" %% "spark-sql" % "3.4.1" % Test, + "org.apache.spark" %% "spark-sql" % "3.5.0" % Test, // Include Trino as a reference implementation "io.trino" % "trino-main" % "426" % Test )