Skip to content

Commit 583d26d

Browse files
committed
upgrade to last safe
1 parent 54ff742 commit 583d26d

5 files changed

Lines changed: 16 additions & 16 deletions

File tree

MODULE.bazel

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -8,9 +8,9 @@ module(
88
# GRPC_DEPS_START
99
IO_GRPC_GRPC_JAVA_ARTIFACTS = [
1010
"com.google.android:annotations:4.1.1.4",
11-
"com.google.api.grpc:proto-google-common-protos:2.63.2",
12-
"com.google.auth:google-auth-library-credentials:1.41.0",
13-
"com.google.auth:google-auth-library-oauth2-http:1.41.0",
11+
"com.google.api.grpc:proto-google-common-protos:2.64.1",
12+
"com.google.auth:google-auth-library-credentials:1.42.1",
13+
"com.google.auth:google-auth-library-oauth2-http:1.42.1",
1414
"com.google.auto.value:auto-value-annotations:1.11.0",
1515
"com.google.auto.value:auto-value:1.11.0",
1616
"com.google.code.findbugs:jsr305:3.0.2",

examples/example-gauth/build.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ dependencies {
3030
implementation "io.grpc:grpc-protobuf:${grpcVersion}"
3131
implementation "io.grpc:grpc-stub:${grpcVersion}"
3232
implementation "io.grpc:grpc-auth:${grpcVersion}"
33-
implementation "com.google.auth:google-auth-library-oauth2-http:1.41.0"
33+
implementation "com.google.auth:google-auth-library-oauth2-http:1.42.1"
3434
implementation "com.google.api.grpc:grpc-google-cloud-pubsub-v1:0.1.24"
3535
runtimeOnly "io.grpc:grpc-netty-shaded:${grpcVersion}"
3636
}

examples/example-oauth/build.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ dependencies {
2929
implementation "io.grpc:grpc-protobuf:${grpcVersion}"
3030
implementation "io.grpc:grpc-stub:${grpcVersion}"
3131
implementation "io.grpc:grpc-auth:${grpcVersion}"
32-
implementation "com.google.auth:google-auth-library-oauth2-http:1.41.0"
32+
implementation "com.google.auth:google-auth-library-oauth2-http:1.42.1"
3333

3434
runtimeOnly "io.grpc:grpc-netty-shaded:${grpcVersion}"
3535

gradle/libs.versions.toml

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -53,17 +53,17 @@ errorprone-core = "com.google.errorprone:error_prone_core:2.31.0"
5353
# checkForUpdates: errorprone-corejava8:2.10.+
5454
errorprone-corejava8 = "com.google.errorprone:error_prone_core:2.10.0"
5555
# 2.67.0+ requires protobuf 4.x.
56-
# checkForUpdates: google-api-protos:2.63.+
57-
google-api-protos = "com.google.api.grpc:proto-google-common-protos:2.63.2"
56+
# checkForUpdates: google-api-protos:2.64.+
57+
google-api-protos = "com.google.api.grpc:proto-google-common-protos:2.64.1"
5858
# 1.43.0+ versions of google-auth-library requires protobuf 4.x
59-
# checkForUpdates: google-auth-credentials:1.41.+
60-
google-auth-credentials = "com.google.auth:google-auth-library-credentials:1.41.0"
61-
# checkForUpdates: google-auth-oauth2Http:1.41.+
62-
google-auth-oauth2Http = "com.google.auth:google-auth-library-oauth2-http:1.41.0"
59+
# checkForUpdates: google-auth-credentials:1.42.+
60+
google-auth-credentials = "com.google.auth:google-auth-library-credentials:1.42.1"
61+
# checkForUpdates: google-auth-oauth2Http:1.42.+
62+
google-auth-oauth2Http = "com.google.auth:google-auth-library-oauth2-http:1.42.1"
6363
# Release notes: https://cloud.google.com/logging/docs/release-notes
6464
# 3.28.0+ require protobuf 4.x
65-
# checkForUpdates: google-cloud-logging:3.23.+
66-
google-cloud-logging = "com.google.cloud:google-cloud-logging:3.23.9"
65+
# checkForUpdates: google-cloud-logging:3.27.+
66+
google-cloud-logging = "com.google.cloud:google-cloud-logging:3.27.0"
6767
gson = "com.google.code.gson:gson:2.13.2"
6868
guava = "com.google.guava:guava:33.5.0-android"
6969
guava-betaChecker = "com.google.guava:guava-beta-checker:1.0"

repositories.bzl

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -12,9 +12,9 @@ load("@bazel_tools//tools/build_defs/repo:http.bzl", "http_archive")
1212
# GRPC_DEPS_START
1313
IO_GRPC_GRPC_JAVA_ARTIFACTS = [
1414
"com.google.android:annotations:4.1.1.4",
15-
"com.google.api.grpc:proto-google-common-protos:2.63.2",
16-
"com.google.auth:google-auth-library-credentials:1.41.0",
17-
"com.google.auth:google-auth-library-oauth2-http:1.41.0",
15+
"com.google.api.grpc:proto-google-common-protos:2.64.1",
16+
"com.google.auth:google-auth-library-credentials:1.42.1",
17+
"com.google.auth:google-auth-library-oauth2-http:1.42.1",
1818
"com.google.auto.value:auto-value-annotations:1.11.0",
1919
"com.google.auto.value:auto-value:1.11.0",
2020
"com.google.code.findbugs:jsr305:3.0.2",

0 commit comments

Comments
 (0)