This is an automated email from the ASF dual-hosted git repository.
fanningpj pushed a commit to branch 1.3.x
in repository https://gitbox.apache.org/repos/asf/pekko-connectors.git
The following commit(s) were added to refs/heads/1.3.x by this push:
new ef1379eb2 Upgrade Google cloud big query storage dependencies (#1461)
ef1379eb2 is described below
commit ef1379eb233b876238f218b0d5d68e49abc304b2
Author: PJ Fanning <[email protected]>
AuthorDate: Fri Feb 27 12:36:50 2026 +0100
Upgrade Google cloud big query storage dependencies (#1461)
* omit the core protobuf-java classes from the jar (#1459)
* Update google-auth-library-credentials, ... to 1.43.0 (#1443)
* Update proto-google-cloud-bigquerystorage-v1 to 3.21.0 (#1419)
* Update build.sbt
* Update Dependencies.scala
* Update Dependencies.scala
* Update proto-google-cloud-bigquerystorage-v1 to 3.22.0 (#1463)
---------
Co-authored-by: Scala Steward
<[email protected]>
---
build.sbt | 11 +++++++++--
project/Dependencies.scala | 10 +++++-----
2 files changed, 14 insertions(+), 7 deletions(-)
diff --git a/build.sbt b/build.sbt
index 9a2dbb439..d616fb4e8 100644
--- a/build.sbt
+++ b/build.sbt
@@ -234,8 +234,15 @@ lazy val googleCloudBigQueryStorage =
pekkoConnectorProject(
Compile / scalacOptions ++= Seq(
"-Wconf:src=.+/pekko-grpc/main/.+:s",
"-Wconf:src=.+/pekko-grpc/test/.+:s"),
- compile / javacOptions := (compile / javacOptions).value.filterNot(_ ==
"-Xlint:deprecation")).dependsOn(
- googleCommon).enablePlugins(PekkoGrpcPlugin)
+ compile / javacOptions := (compile / javacOptions).value.filterNot(_ ==
"-Xlint:deprecation"),
+ // the following is needed to exclude the gRPC generated sources for
protobuf-java from the sources,
+ // they cause Scaladoc tool fails -
https://github.com/apache/pekko-connectors/issues/1440
+ // and issues like https://github.com/apache/pekko-connectors/issues/1457
+ Compile / sources := (Compile / sources).value.filterNot { f =>
+ f.getPath.replace('\\',
'/').contains("/pekko-grpc/main/com/google/protobuf")
+ })
+ .dependsOn(googleCommon)
+ .enablePlugins(PekkoGrpcPlugin)
lazy val googleCloudPubSub = pekkoConnectorProject(
"google-cloud-pub-sub",
diff --git a/project/Dependencies.scala b/project/Dependencies.scala
index 98592d206..cbddf15b3 100644
--- a/project/Dependencies.scala
+++ b/project/Dependencies.scala
@@ -67,9 +67,9 @@ object Dependencies {
val Couchbase3Version = "3.6.0"
val CouchbaseVersionForDocs = "2.7"
- val GoogleAuthVersion = "1.39.0"
- val JwtScalaVersion = "11.0.2"
- val Log4jVersion = "2.25.1"
+ val GoogleAuthVersion = "1.43.0"
+ val JwtScalaVersion = "11.0.3"
+ val Log4jVersion = "2.25.3"
// Releases https://github.com/FasterXML/jackson-databind/releases
// CVE issues
https://github.com/FasterXML/jackson-databind/issues?utf8=%E2%9C%93&q=+label%3ACVE
@@ -277,12 +277,12 @@ object Dependencies {
"com.fasterxml.jackson.datatype" % "jackson-datatype-jsr310" %
JacksonVersion % Test,
"io.specto" % "hoverfly-java" % hoverflyVersion % Test) ++ Mockito)
- val ArrowVersion = "16.0.0"
+ val ArrowVersion = "17.0.0"
val GoogleBigQueryStorage = Seq(
// see Pekko gRPC version in plugins.sbt
libraryDependencies ++= Seq(
//
https://github.com/googleapis/java-bigquerystorage/tree/master/proto-google-cloud-bigquerystorage-v1
- "com.google.api.grpc" % "proto-google-cloud-bigquerystorage-v1" %
"3.18.0" % "protobuf-src",
+ "com.google.api.grpc" % "proto-google-cloud-bigquerystorage-v1" %
"3.22.0" % "protobuf-src",
"org.apache.avro" % "avro" % AvroVersion % "provided",
"org.apache.arrow" % "arrow-vector" % ArrowVersion % "provided",
"io.grpc" % "grpc-auth" %
org.apache.pekko.grpc.gen.BuildInfo.grpcVersion,
---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]