Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

google-pub-sub-grpc, google-cloud-bigquery-storage: Bump pubsub protos and protobuf-java dep #277

Merged
merged 7 commits into from
Feb 7, 2024
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
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -21,3 +21,4 @@ ext-lib-src/
.metals/
metals.sbt
.bsp/
.vscode/
8 changes: 4 additions & 4 deletions project/Dependencies.scala
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ object Dependencies {
val ScalaTestVersion = "3.2.17"
val TestContainersScalaTestVersion = "0.41.0"
val mockitoVersion = "4.11.0" // check even https://github.com/scalatest/scalatestplus-mockito/releases
val protobufJavaVersion = "3.21.12"
val protobufJavaVersion = "3.25.2"
val hoverflyVersion = "0.14.1"
val scalaCheckVersion = "1.17.0"

Expand Down Expand Up @@ -229,7 +229,7 @@ object Dependencies {
"org.apache.avro" % "avro" % AvroVersion % "provided",
"org.apache.arrow" % "arrow-vector" % ArrowVersion % "provided",
"io.grpc" % "grpc-auth" % org.apache.pekko.grpc.gen.BuildInfo.grpcVersion,
"com.google.protobuf" % "protobuf-java" % protobufJavaVersion,
"com.google.protobuf" % "protobuf-java" % protobufJavaVersion % Runtime,
"org.apache.pekko" %% "pekko-discovery" % PekkoVersion,
"org.apache.pekko" %% "pekko-http-spray-json" % PekkoHttpVersion,
"org.apache.pekko" %% "pekko-http-core" % PekkoHttpVersion,
Expand All @@ -248,10 +248,10 @@ object Dependencies {
// see Pekko gRPC version in plugins.sbt
libraryDependencies ++= Seq(
// https://github.com/googleapis/java-pubsub/tree/master/proto-google-cloud-pubsub-v1/
"com.google.cloud" % "google-cloud-pubsub" % "1.122.2" % "protobuf-src",
"com.google.cloud" % "google-cloud-pubsub" % "1.123.20" % "protobuf-src",
"io.grpc" % "grpc-auth" % org.apache.pekko.grpc.gen.BuildInfo.grpcVersion,
"com.google.auth" % "google-auth-library-oauth2-http" % GoogleAuthVersion,
"com.google.protobuf" % "protobuf-java" % protobufJavaVersion,
"com.google.protobuf" % "protobuf-java" % protobufJavaVersion % Runtime,
// pull in Pekko Discovery for our Pekko version
"org.apache.pekko" %% "pekko-discovery" % PekkoVersion))

Expand Down
Loading