Skip to content
This repository has been archived by the owner on Jun 28, 2022. It is now read-only.

Commit

Permalink
fix(deps): bump protobuf versions for Java artman builds (#3261)
Browse files Browse the repository at this point in the history
  • Loading branch information
alexander-fenster committed Jul 24, 2020
1 parent 1cb54ee commit 8620732
Show file tree
Hide file tree
Showing 7 changed files with 12 additions and 12 deletions.
2 changes: 1 addition & 1 deletion build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -403,7 +403,7 @@ task createToolPaths {
DependencyResolver resolver = new DependencyResolver(project)

def protoGenGrpcJavaExe = resolver.resolveExecutable(
'io.grpc:protoc-gen-grpc-java:1.10.0')
'io.grpc:protoc-gen-grpc-java:1.30.2')
Symlinks.createSymbolicLink("$buildDir/toolpaths/protoGenGrpcJavaExe", protoGenGrpcJavaExe)

def protobufJavaDir = resolver.extractArchive(
Expand Down
2 changes: 1 addition & 1 deletion dependencies.properties
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
# Target workspace name: com_google_api_codegen

# Versions only, for dependencies which actual artifacts differ between Bazel and Gradle
version.com_google_protobuf=3.9.1
version.com_google_protobuf=3.12.0
version.google_java_format=1.6

# Maven artifacts.
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -3298,7 +3298,7 @@ const Any = {
* if (duration.seconds < 0 && duration.nanos > 0) {
* duration.seconds += 1;
* duration.nanos -= 1000000000;
* } else if (durations.seconds > 0 && duration.nanos < 0) {
* } else if (duration.seconds > 0 && duration.nanos < 0) {
* duration.seconds -= 1;
* duration.nanos += 1000000000;
* }
Expand Down Expand Up @@ -3608,7 +3608,7 @@ const Empty = {
*
* The implementation of any API method which has a FieldMask type field in the
* request should verify the included field paths, and return an
* `INVALID_ARGUMENT` error if any path is duplicated or unmappable.
* `INVALID_ARGUMENT` error if any path is unmappable.
*
* @property {string[]} paths
* The set of field mask paths.
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -1386,7 +1386,7 @@ module Google
# if (duration.seconds < 0 && duration.nanos > 0) {
# duration.seconds += 1;
# duration.nanos -= 1000000000;
# } else if (durations.seconds > 0 && duration.nanos < 0) {
# } else if (duration.seconds > 0 && duration.nanos < 0) {
# duration.seconds -= 1;
# duration.nanos += 1000000000;
# }
Expand Down Expand Up @@ -1683,7 +1683,7 @@ module Google
#
# The implementation of any API method which has a FieldMask type field in the
# request should verify the included field paths, and return an
# `INVALID_ARGUMENT` error if any path is duplicated or unmappable.
# `INVALID_ARGUMENT` error if any path is unmappable.
# @!attribute [rw] paths
# @return [Array<String>]
# The set of field mask paths.
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -4102,7 +4102,7 @@ const Any = {
* if (duration.seconds < 0 && duration.nanos > 0) {
* duration.seconds += 1;
* duration.nanos -= 1000000000;
* } else if (durations.seconds > 0 && duration.nanos < 0) {
* } else if (duration.seconds > 0 && duration.nanos < 0) {
* duration.seconds -= 1;
* duration.nanos += 1000000000;
* }
Expand Down Expand Up @@ -4412,7 +4412,7 @@ const Empty = {
*
* The implementation of any API method which has a FieldMask type field in the
* request should verify the included field paths, and return an
* `INVALID_ARGUMENT` error if any path is duplicated or unmappable.
* `INVALID_ARGUMENT` error if any path is unmappable.
*
* @property {string[]} paths
* The set of field mask paths.
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -1386,7 +1386,7 @@ module Google
# if (duration.seconds < 0 && duration.nanos > 0) {
# duration.seconds += 1;
# duration.nanos -= 1000000000;
# } else if (durations.seconds > 0 && duration.nanos < 0) {
# } else if (duration.seconds > 0 && duration.nanos < 0) {
# duration.seconds -= 1;
# duration.nanos += 1000000000;
# }
Expand Down Expand Up @@ -1683,7 +1683,7 @@ module Google
#
# The implementation of any API method which has a FieldMask type field in the
# request should verify the included field paths, and return an
# `INVALID_ARGUMENT` error if any path is duplicated or unmappable.
# `INVALID_ARGUMENT` error if any path is unmappable.
# @!attribute [rw] paths
# @return [Array<String>]
# The set of field mask paths.
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -1266,7 +1266,7 @@ module Google
# if (duration.seconds < 0 && duration.nanos > 0) {
# duration.seconds += 1;
# duration.nanos -= 1000000000;
# } else if (durations.seconds > 0 && duration.nanos < 0) {
# } else if (duration.seconds > 0 && duration.nanos < 0) {
# duration.seconds -= 1;
# duration.nanos += 1000000000;
# }
Expand Down Expand Up @@ -1563,7 +1563,7 @@ module Google
#
# The implementation of any API method which has a FieldMask type field in the
# request should verify the included field paths, and return an
# `INVALID_ARGUMENT` error if any path is duplicated or unmappable.
# `INVALID_ARGUMENT` error if any path is unmappable.
# @!attribute [rw] paths
# @return [Array<String>]
# The set of field mask paths.
Expand Down

0 comments on commit 8620732

Please sign in to comment.