Skip to content

Commit db86a3f

Browse files
littlegrasscaoSun Cao
andauthored
Upgrade delta-sharing version to 1.3.2 (#4659)
<!-- Thanks for sending a pull request! Here are some tips for you: 1. If this is your first time, please read our contributor guidelines: https://github.com/delta-io/delta/blob/master/CONTRIBUTING.md 2. If the PR is unfinished, add '[WIP]' in your PR title, e.g., '[WIP] Your PR title ...'. 3. Be sure to keep the PR description updated to reflect all changes. 4. Please write your PR title to summarize what this PR proposes. 5. If possible, provide a concise example to reproduce the issue for a faster review. 6. If applicable, include the corresponding issue number in the PR title and link it in the body. --> #### Which Delta project/connector is this regarding? <!-- Please add the component selected below to the beginning of the pull request title For example: [Spark] Title of my pull request --> - [ ] Spark - [ ] Standalone - [ ] Flink - [ ] Kernel - [x] Other (delta-sharing) ## Description Upgrade delta-sharing version to 1.3.2, which contains spark 4.0.0 ## How was this patch tested? Pipeline test ## Does this PR introduce _any_ user-facing changes? No --------- Co-authored-by: Sun Cao <sun.cao+data@databricks.com>
1 parent 68582cd commit db86a3f

File tree

1 file changed

+3
-6
lines changed

1 file changed

+3
-6
lines changed

build.sbt

Lines changed: 3 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -542,14 +542,13 @@ lazy val sharing = (project in file("sharing"))
542542
name := "delta-sharing-spark",
543543
commonSettings,
544544
scalaStyleSettings,
545-
// TODO re-enable release once 1.3.2 is available
546-
skipReleaseSettings,
545+
releaseSettings,
547546
crossSparkSettings(),
548547
Test / javaOptions ++= Seq("-ea"),
549548
libraryDependencies ++= Seq(
550549
"org.apache.spark" %% "spark-sql" % sparkVersion.value % "provided",
551550

552-
"io.delta" %% "delta-sharing-client" % "1.2.4",
551+
"io.delta" %% "delta-sharing-client" % "1.3.2",
553552

554553
// Test deps
555554
"org.scalatest" %% "scalatest" % scalaTestVersion % "test",
@@ -976,9 +975,7 @@ val createTargetClassesDir = taskKey[Unit]("create target classes dir")
976975

977976
// Don't use these groups for any other projects
978977
lazy val sparkGroup = project
979-
// TODO remove sharing for now since requires sharing client release for tests to pass, add back
980-
// once release is available
981-
.aggregate(spark, contribs, storage, storageS3DynamoDB, hudi)
978+
.aggregate(spark, contribs, storage, storageS3DynamoDB, hudi, sharing)
982979
.settings(
983980
// crossScalaVersions must be set to Nil on the aggregating project
984981
crossScalaVersions := Nil,

0 commit comments

Comments
 (0)