Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
13 changes: 6 additions & 7 deletions build.sbt
Original file line number Diff line number Diff line change
Expand Up @@ -29,10 +29,10 @@ import org.typelevel.scalacoptions.JavaMajorVersion.javaMajorVersion
// To test release candidates, find the beam repo and add it as a resolver
// ThisBuild / resolvers += "apache-beam-staging" at "https://repository.apache.org/content/repositories/"
val beamVendorVersion = "0.1"
val beamVersion = "2.64.0"
val beamVersion = "2.65.0"
Comment thread
charles-tan marked this conversation as resolved.

// check version used by beam
// https://github.com/apache/beam/blob/v2.64.0/buildSrc/src/main/groovy/org/apache/beam/gradle/BeamModulePlugin.groovy
// https://github.com/apache/beam/blob/v2.65.0/buildSrc/src/main/groovy/org/apache/beam/gradle/BeamModulePlugin.groovy
val autoServiceVersion = "1.0.1"
val autoValueVersion = "1.9"
val avroVersion = sys.props.getOrElse("avro.version", "1.11.4")
Expand All @@ -43,23 +43,22 @@ val commonsCompressVersion = "1.26.2"
val commonsIoVersion = "2.16.1"
val commonsLang3Version = "3.14.0"
val commonsMath3Version = "3.6.1"
val gcpLibrariesVersion = "26.56.0"
val gcpLibrariesVersion = "26.57.0"
val googleClientsVersion = "2.0.0"
val guavaVersion = "33.1.0-jre"
val hamcrestVersion = "2.1"
val httpClientVersion = "4.5.13"
val httpCoreVersion = "4.4.14"
val jacksonVersion = "2.15.4"
val jodaTimeVersion = "2.10.14"
val nettyVersion = "4.1.110.Final"
val nettyVersion = "4.1.118.Final"
val protobufVersion = "3.25.5"
val slf4jVersion = "1.7.30"
val zstdJniVersion = "1.5.6-3"
// dependent versions
val googleApiServicesBigQueryVersion = s"v2-rev20250216-$googleClientsVersion"
val googleApiServicesBigQueryVersion = s"v2-rev20250313-$googleClientsVersion"
val googleApiServicesDataflowVersion = s"v1b3-rev20250106-$googleClientsVersion"
val googleApiServicesPubsubVersion = s"v1-rev20220904-$googleClientsVersion"
val googleApiServicesStorageVersion = s"v1-rev20241206-$googleClientsVersion"
// beam tested versions
val zetasketchVersion = "0.1.0" // sdks/java/extensions/zetasketch/build.gradle
val flinkVersion = "1.19.0" // runners/flink/1.19/build.gradle
Expand All @@ -69,7 +68,7 @@ val sparkVersion = "3.5.0" // runners/spark/3/build.gradle
val sparkMajorVersion = VersionNumber(sparkVersion).numbers.take(1).mkString(".")

// check recommended versions from libraries-bom
// https://storage.googleapis.com/cloud-opensource-java-dashboard/com.google.cloud/libraries-bom/26.56.0/index.html
// https://storage.googleapis.com/cloud-opensource-java-dashboard/com.google.cloud/libraries-bom/26.57.0/index.html
val failureAccessVersion = "1.0.2"
val checkerQualVersion = "3.49.0"
val jsr305Version = "3.0.2"
Expand Down
2 changes: 1 addition & 1 deletion project/Exclude.scala
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ object Exclude {
"log4j" % "log4j"
)

// Beam 2.64 pulls in jackson-module-scala_2.12, which pulls in chill_2.12
// Beam 2.65 pulls in jackson-module-scala_2.12, which pulls in chill_2.12
def jacksonCrossBuilt(scalaVersion: String): Seq[ExclusionRule] = VersionNumber(
scalaVersion
) match {
Expand Down