From a92b52838cd81fff49f0674a1147dc53d24e6ac1 Mon Sep 17 00:00:00 2001 From: Yoshi Automation Bot Date: Wed, 18 Mar 2020 15:49:10 -0700 Subject: [PATCH 01/20] chore: regenerate common templates (#26) --- .../DocumentUnderstandingServiceGrpc.java | 48 +++++++---- .../DocumentUnderstandingServiceGrpc.java | 48 +++++++---- samples/install-without-bom/pom.xml | 84 +++++++++++++++++++ samples/pom.xml | 56 +++++++++++++ samples/snapshot/pom.xml | 83 ++++++++++++++++++ samples/snippets/pom.xml | 60 +++++++++++++ synth.metadata | 20 ++--- 7 files changed, 353 insertions(+), 46 deletions(-) create mode 100644 samples/install-without-bom/pom.xml create mode 100644 samples/pom.xml create mode 100644 samples/snapshot/pom.xml create mode 100644 samples/snippets/pom.xml diff --git a/grpc-google-cloud-document-ai-v1beta1/src/main/java/com/google/cloud/documentai/v1beta1/DocumentUnderstandingServiceGrpc.java b/grpc-google-cloud-document-ai-v1beta1/src/main/java/com/google/cloud/documentai/v1beta1/DocumentUnderstandingServiceGrpc.java index 4e2477f9..437a1671 100644 --- a/grpc-google-cloud-document-ai-v1beta1/src/main/java/com/google/cloud/documentai/v1beta1/DocumentUnderstandingServiceGrpc.java +++ b/grpc-google-cloud-document-ai-v1beta1/src/main/java/com/google/cloud/documentai/v1beta1/DocumentUnderstandingServiceGrpc.java @@ -96,19 +96,43 @@ private DocumentUnderstandingServiceGrpc() {} /** Creates a new async stub that supports all call types for the service */ public static DocumentUnderstandingServiceStub newStub(io.grpc.Channel channel) { - return new DocumentUnderstandingServiceStub(channel); + io.grpc.stub.AbstractStub.StubFactory factory = + new io.grpc.stub.AbstractStub.StubFactory() { + @java.lang.Override + public DocumentUnderstandingServiceStub newStub( + io.grpc.Channel channel, io.grpc.CallOptions callOptions) { + return new DocumentUnderstandingServiceStub(channel, callOptions); + } + }; + return DocumentUnderstandingServiceStub.newStub(factory, channel); } /** * Creates a new blocking-style stub that supports unary and streaming output calls on the service */ public static DocumentUnderstandingServiceBlockingStub newBlockingStub(io.grpc.Channel channel) { - return new DocumentUnderstandingServiceBlockingStub(channel); + io.grpc.stub.AbstractStub.StubFactory factory = + new io.grpc.stub.AbstractStub.StubFactory() { + @java.lang.Override + public DocumentUnderstandingServiceBlockingStub newStub( + io.grpc.Channel channel, io.grpc.CallOptions callOptions) { + return new DocumentUnderstandingServiceBlockingStub(channel, callOptions); + } + }; + return DocumentUnderstandingServiceBlockingStub.newStub(factory, channel); } /** Creates a new ListenableFuture-style stub that supports unary calls on the service */ public static DocumentUnderstandingServiceFutureStub newFutureStub(io.grpc.Channel channel) { - return new DocumentUnderstandingServiceFutureStub(channel); + io.grpc.stub.AbstractStub.StubFactory factory = + new io.grpc.stub.AbstractStub.StubFactory() { + @java.lang.Override + public DocumentUnderstandingServiceFutureStub newStub( + io.grpc.Channel channel, io.grpc.CallOptions callOptions) { + return new DocumentUnderstandingServiceFutureStub(channel, callOptions); + } + }; + return DocumentUnderstandingServiceFutureStub.newStub(factory, channel); } /** @@ -159,11 +183,7 @@ public final io.grpc.ServerServiceDefinition bindService() { * */ public static final class DocumentUnderstandingServiceStub - extends io.grpc.stub.AbstractStub { - private DocumentUnderstandingServiceStub(io.grpc.Channel channel) { - super(channel); - } - + extends io.grpc.stub.AbstractAsyncStub { private DocumentUnderstandingServiceStub( io.grpc.Channel channel, io.grpc.CallOptions callOptions) { super(channel, callOptions); @@ -202,11 +222,7 @@ public void batchProcessDocuments( * */ public static final class DocumentUnderstandingServiceBlockingStub - extends io.grpc.stub.AbstractStub { - private DocumentUnderstandingServiceBlockingStub(io.grpc.Channel channel) { - super(channel); - } - + extends io.grpc.stub.AbstractBlockingStub { private DocumentUnderstandingServiceBlockingStub( io.grpc.Channel channel, io.grpc.CallOptions callOptions) { super(channel, callOptions); @@ -242,11 +258,7 @@ public com.google.longrunning.Operation batchProcessDocuments( * */ public static final class DocumentUnderstandingServiceFutureStub - extends io.grpc.stub.AbstractStub { - private DocumentUnderstandingServiceFutureStub(io.grpc.Channel channel) { - super(channel); - } - + extends io.grpc.stub.AbstractFutureStub { private DocumentUnderstandingServiceFutureStub( io.grpc.Channel channel, io.grpc.CallOptions callOptions) { super(channel, callOptions); diff --git a/grpc-google-cloud-document-ai-v1beta2/src/main/java/com/google/cloud/documentai/v1beta2/DocumentUnderstandingServiceGrpc.java b/grpc-google-cloud-document-ai-v1beta2/src/main/java/com/google/cloud/documentai/v1beta2/DocumentUnderstandingServiceGrpc.java index 6a2668bd..0de58fb5 100644 --- a/grpc-google-cloud-document-ai-v1beta2/src/main/java/com/google/cloud/documentai/v1beta2/DocumentUnderstandingServiceGrpc.java +++ b/grpc-google-cloud-document-ai-v1beta2/src/main/java/com/google/cloud/documentai/v1beta2/DocumentUnderstandingServiceGrpc.java @@ -145,19 +145,43 @@ private DocumentUnderstandingServiceGrpc() {} /** Creates a new async stub that supports all call types for the service */ public static DocumentUnderstandingServiceStub newStub(io.grpc.Channel channel) { - return new DocumentUnderstandingServiceStub(channel); + io.grpc.stub.AbstractStub.StubFactory factory = + new io.grpc.stub.AbstractStub.StubFactory() { + @java.lang.Override + public DocumentUnderstandingServiceStub newStub( + io.grpc.Channel channel, io.grpc.CallOptions callOptions) { + return new DocumentUnderstandingServiceStub(channel, callOptions); + } + }; + return DocumentUnderstandingServiceStub.newStub(factory, channel); } /** * Creates a new blocking-style stub that supports unary and streaming output calls on the service */ public static DocumentUnderstandingServiceBlockingStub newBlockingStub(io.grpc.Channel channel) { - return new DocumentUnderstandingServiceBlockingStub(channel); + io.grpc.stub.AbstractStub.StubFactory factory = + new io.grpc.stub.AbstractStub.StubFactory() { + @java.lang.Override + public DocumentUnderstandingServiceBlockingStub newStub( + io.grpc.Channel channel, io.grpc.CallOptions callOptions) { + return new DocumentUnderstandingServiceBlockingStub(channel, callOptions); + } + }; + return DocumentUnderstandingServiceBlockingStub.newStub(factory, channel); } /** Creates a new ListenableFuture-style stub that supports unary calls on the service */ public static DocumentUnderstandingServiceFutureStub newFutureStub(io.grpc.Channel channel) { - return new DocumentUnderstandingServiceFutureStub(channel); + io.grpc.stub.AbstractStub.StubFactory factory = + new io.grpc.stub.AbstractStub.StubFactory() { + @java.lang.Override + public DocumentUnderstandingServiceFutureStub newStub( + io.grpc.Channel channel, io.grpc.CallOptions callOptions) { + return new DocumentUnderstandingServiceFutureStub(channel, callOptions); + } + }; + return DocumentUnderstandingServiceFutureStub.newStub(factory, channel); } /** @@ -230,11 +254,7 @@ public final io.grpc.ServerServiceDefinition bindService() { * */ public static final class DocumentUnderstandingServiceStub - extends io.grpc.stub.AbstractStub { - private DocumentUnderstandingServiceStub(io.grpc.Channel channel) { - super(channel); - } - + extends io.grpc.stub.AbstractAsyncStub { private DocumentUnderstandingServiceStub( io.grpc.Channel channel, io.grpc.CallOptions callOptions) { super(channel, callOptions); @@ -291,11 +311,7 @@ public void processDocument( * */ public static final class DocumentUnderstandingServiceBlockingStub - extends io.grpc.stub.AbstractStub { - private DocumentUnderstandingServiceBlockingStub(io.grpc.Channel channel) { - super(channel); - } - + extends io.grpc.stub.AbstractBlockingStub { private DocumentUnderstandingServiceBlockingStub( io.grpc.Channel channel, io.grpc.CallOptions callOptions) { super(channel, callOptions); @@ -344,11 +360,7 @@ public com.google.cloud.documentai.v1beta2.Document processDocument( * */ public static final class DocumentUnderstandingServiceFutureStub - extends io.grpc.stub.AbstractStub { - private DocumentUnderstandingServiceFutureStub(io.grpc.Channel channel) { - super(channel); - } - + extends io.grpc.stub.AbstractFutureStub { private DocumentUnderstandingServiceFutureStub( io.grpc.Channel channel, io.grpc.CallOptions callOptions) { super(channel, callOptions); diff --git a/samples/install-without-bom/pom.xml b/samples/install-without-bom/pom.xml new file mode 100644 index 00000000..35948a6b --- /dev/null +++ b/samples/install-without-bom/pom.xml @@ -0,0 +1,84 @@ + + + 4.0.0 + com.google.cloud + documentai-install-without-bom + jar + Google Document AI Install Without Bom + https://github.com/googleapis/java-document-ai + + + + com.google.cloud.samples + shared-configuration + 1.0.12 + + + + 1.8 + 1.8 + UTF-8 + + + + + + + com.google.cloud + google-cloud-document-ai + 0.1.0 + + + + + junit + junit + 4.13 + test + + + com.google.truth + truth + 1.0.1 + test + + + + + + + + org.codehaus.mojo + build-helper-maven-plugin + 3.1.0 + + + add-snippets-source + + add-source + + + + ../snippets/src/main/java + + + + + add-snippets-tests + + add-test-source + + + + ../snippets/src/test/java + + + + + + + + diff --git a/samples/pom.xml b/samples/pom.xml new file mode 100644 index 00000000..5278f4e4 --- /dev/null +++ b/samples/pom.xml @@ -0,0 +1,56 @@ + + + 4.0.0 + com.google.cloud + google-cloud-documentai-samples + 0.0.1-SNAPSHOT + pom + Google Document AI Samples Parent + https://github.com/googleapis/java-document-ai + + Java idiomatic client for Google Cloud Platform services. + + + + + com.google.cloud.samples + shared-configuration + 1.0.12 + + + + 1.8 + 1.8 + UTF-8 + + + + install-without-bom + snapshot + snippets + + + + + + org.apache.maven.plugins + maven-deploy-plugin + 2.8.2 + + true + + + + org.sonatype.plugins + nexus-staging-maven-plugin + 1.6.8 + + true + + + + + diff --git a/samples/snapshot/pom.xml b/samples/snapshot/pom.xml new file mode 100644 index 00000000..290da858 --- /dev/null +++ b/samples/snapshot/pom.xml @@ -0,0 +1,83 @@ + + + 4.0.0 + com.google.cloud + documentai-snapshot + jar + Google Document AI Snapshot Samples + https://github.com/googleapis/java-document-ai + + + + com.google.cloud.samples + shared-configuration + 1.0.12 + + + + 1.8 + 1.8 + UTF-8 + + + + + + com.google.cloud + google-cloud-document-ai + 0.1.0 + + + + junit + junit + 4.13 + test + + + com.google.truth + truth + 1.0.1 + test + + + + + + + + + org.codehaus.mojo + build-helper-maven-plugin + 3.1.0 + + + add-snippets-source + + add-source + + + + ../snippets/src/main/java + + + + + add-snippets-tests + + add-test-source + + + + ../snippets/src/test/java + + + + + + + + \ No newline at end of file diff --git a/samples/snippets/pom.xml b/samples/snippets/pom.xml new file mode 100644 index 00000000..b523dacc --- /dev/null +++ b/samples/snippets/pom.xml @@ -0,0 +1,60 @@ + + + 4.0.0 + com.google.cloud + documentai-snippets + jar + Google Document AI Snippets + https://github.com/googleapis/java-document-ai + + + + com.google.cloud.samples + shared-configuration + 1.0.12 + + + + 1.8 + 1.8 + UTF-8 + + + + + + + + com.google.cloud + libraries-bom + 4.2.0 + pom + import + + + + + + + com.google.cloud + google-cloud-document-ai + + + + + junit + junit + 4.13 + test + + + com.google.truth + truth + 1.0.1 + test + + + diff --git a/synth.metadata b/synth.metadata index 53d9dd3f..e7080083 100644 --- a/synth.metadata +++ b/synth.metadata @@ -1,28 +1,28 @@ { - "updateTime": "2020-03-14T08:52:09.900978Z", + "updateTime": "2020-03-18T22:16:26.376548Z", "sources": [ { "git": { "name": "googleapis", "remote": "https://github.com/googleapis/googleapis.git", - "sha": "8386761d09819b665b6a6e1e6d6ff884bc8ff781", - "internalRef": "300843960" + "sha": "275fbcce2c900278d487c33293a3c7e1fbcd3a34", + "internalRef": "301661567" } }, { "git": { "name": "googleapis", "remote": "https://github.com/googleapis/googleapis.git", - "sha": "8386761d09819b665b6a6e1e6d6ff884bc8ff781", - "internalRef": "300843960", - "log": "8386761d09819b665b6a6e1e6d6ff884bc8ff781\nfeat: chromeos/modlab publish protos and config for Chrome OS Moblab API.\n\nPiperOrigin-RevId: 300843960\n\n" + "sha": "275fbcce2c900278d487c33293a3c7e1fbcd3a34", + "internalRef": "301661567", + "log": "275fbcce2c900278d487c33293a3c7e1fbcd3a34\nfeat: pubsub/v1 add an experimental filter field to Subscription\n\nPiperOrigin-RevId: 301661567\n\nf2b18cec51d27c999ad30011dba17f3965677e9c\nFix: UpdateBackupRequest.backup is a resource, not a resource reference - remove annotation.\n\nPiperOrigin-RevId: 301636171\n\n800384063ac93a0cac3a510d41726fa4b2cd4a83\nCloud Billing Budget API v1beta1\nModified api documentation to include warnings about the new filter field.\n\nPiperOrigin-RevId: 301634389\n\n0cc6c146b660db21f04056c3d58a4b752ee445e3\nCloud Billing Budget API v1alpha1\nModified api documentation to include warnings about the new filter field.\n\nPiperOrigin-RevId: 301630018\n\nff2ea00f69065585c3ac0993c8b582af3b6fc215\nFix: Add resource definition for a parent of InspectTemplate which was otherwise missing.\n\nPiperOrigin-RevId: 301623052\n\n55fa441c9daf03173910760191646399338f2b7c\nAdd proto definition for AccessLevel, AccessPolicy, and ServicePerimeter.\n\nPiperOrigin-RevId: 301620844\n\ne7b10591c5408a67cf14ffafa267556f3290e262\nCloud Bigtable Managed Backup service and message proto files.\n\nPiperOrigin-RevId: 301585144\n\nd8e226f702f8ddf92915128c9f4693b63fb8685d\nfeat: Add time-to-live in a queue for builds\n\nPiperOrigin-RevId: 301579876\n\n430375af011f8c7a5174884f0d0e539c6ffa7675\ndocs: add missing closing backtick\n\nPiperOrigin-RevId: 301538851\n\n0e9f1f60ded9ad1c2e725e37719112f5b487ab65\nbazel: Use latest release of gax_java\n\nPiperOrigin-RevId: 301480457\n\n5058c1c96d0ece7f5301a154cf5a07b2ad03a571\nUpdate GAPIC v2 with batching parameters for Logging API\n\nPiperOrigin-RevId: 301443847\n\n64ab9744073de81fec1b3a6a931befc8a90edf90\nFix: Introduce location-based organization/folder/billing-account resources\nChore: Update copyright years\n\nPiperOrigin-RevId: 301373760\n\n23d5f09e670ebb0c1b36214acf78704e2ecfc2ac\nUpdate field_behavior annotations in V1 and V2.\n\nPiperOrigin-RevId: 301337970\n\nb2cf37e7fd62383a811aa4d54d013ecae638851d\nData Catalog V1 API\n\nPiperOrigin-RevId: 301282503\n\n1976b9981e2900c8172b7d34b4220bdb18c5db42\nCloud DLP api update. Adds missing fields to Finding and adds support for hybrid jobs.\n\nPiperOrigin-RevId: 301205325\n\nae78682c05e864d71223ce22532219813b0245ac\nfix: several sample code blocks in comments are now properly indented for markdown\n\nPiperOrigin-RevId: 301185150\n\ndcd171d04bda5b67db13049320f97eca3ace3731\nPublish Media Translation API V1Beta1\n\nPiperOrigin-RevId: 301180096\n\nff1713453b0fbc5a7544a1ef6828c26ad21a370e\nAdd protos and BUILD rules for v1 API.\n\nPiperOrigin-RevId: 301179394\n\n" } }, { - "template": { - "name": "java_library", - "origin": "synthtool.gcp", - "version": "2020.2.4" + "git": { + "name": "synthtool", + "remote": "https://github.com/googleapis/synthtool.git", + "sha": "1326d00fa9e856aa6b244b6811404cf45b109119" } } ], From 0483a2a281fddff3d1492102c658e34ce2078f17 Mon Sep 17 00:00:00 2001 From: "release-please[bot]" <55107282+release-please[bot]@users.noreply.github.com> Date: Wed, 18 Mar 2020 20:02:20 -0700 Subject: [PATCH 02/20] chore: release 0.1.1-SNAPSHOT (#27) * updated versions.txt [ci skip] * updated google-cloud-document-ai-bom/pom.xml [ci skip] * updated google-cloud-document-ai/pom.xml [ci skip] * updated grpc-google-cloud-document-ai-v1beta1/pom.xml [ci skip] * updated grpc-google-cloud-document-ai-v1beta2/pom.xml [ci skip] * updated pom.xml [ci skip] * updated proto-google-cloud-document-ai-v1beta1/pom.xml [ci skip] * updated proto-google-cloud-document-ai-v1beta2/pom.xml [ci skip] Co-authored-by: release-please[bot] <55107282+release-please[bot]@users.noreply.github.com> --- google-cloud-document-ai-bom/pom.xml | 12 ++++++------ google-cloud-document-ai/pom.xml | 4 ++-- grpc-google-cloud-document-ai-v1beta1/pom.xml | 4 ++-- grpc-google-cloud-document-ai-v1beta2/pom.xml | 4 ++-- pom.xml | 10 +++++----- proto-google-cloud-document-ai-v1beta1/pom.xml | 4 ++-- proto-google-cloud-document-ai-v1beta2/pom.xml | 4 ++-- versions.txt | 10 +++++----- 8 files changed, 26 insertions(+), 26 deletions(-) diff --git a/google-cloud-document-ai-bom/pom.xml b/google-cloud-document-ai-bom/pom.xml index 7e847ac1..0e353edd 100644 --- a/google-cloud-document-ai-bom/pom.xml +++ b/google-cloud-document-ai-bom/pom.xml @@ -3,7 +3,7 @@ 4.0.0 com.google.cloud google-cloud-document-ai-bom - 0.1.0 + 0.1.1-SNAPSHOT pom com.google.cloud @@ -61,27 +61,27 @@ com.google.api.grpc proto-google-cloud-document-ai-v1beta1 - 0.1.0 + 0.1.1-SNAPSHOT com.google.api.grpc proto-google-cloud-document-ai-v1beta2 - 0.1.0 + 0.1.1-SNAPSHOT com.google.api.grpc grpc-google-cloud-document-ai-v1beta1 - 0.1.0 + 0.1.1-SNAPSHOT com.google.api.grpc grpc-google-cloud-document-ai-v1beta2 - 0.1.0 + 0.1.1-SNAPSHOT com.google.cloud google-cloud-document-ai - 0.1.0 + 0.1.1-SNAPSHOT diff --git a/google-cloud-document-ai/pom.xml b/google-cloud-document-ai/pom.xml index e7209b61..4e6774ae 100644 --- a/google-cloud-document-ai/pom.xml +++ b/google-cloud-document-ai/pom.xml @@ -3,7 +3,7 @@ 4.0.0 com.google.cloud google-cloud-document-ai - 0.1.0 + 0.1.1-SNAPSHOT jar Google Cloud Document AI https://github.com/googleapis/java-documentai @@ -11,7 +11,7 @@ com.google.cloud google-cloud-document-ai-parent - 0.1.0 + 0.1.1-SNAPSHOT google-cloud-document-ai diff --git a/grpc-google-cloud-document-ai-v1beta1/pom.xml b/grpc-google-cloud-document-ai-v1beta1/pom.xml index de9c6349..5a70b864 100644 --- a/grpc-google-cloud-document-ai-v1beta1/pom.xml +++ b/grpc-google-cloud-document-ai-v1beta1/pom.xml @@ -3,13 +3,13 @@ 4.0.0 com.google.api.grpc grpc-google-cloud-document-ai-v1beta1 - 0.1.0 + 0.1.1-SNAPSHOT grpc-google-cloud-document-ai-v1beta1 GRPC library for grpc-google-cloud-document-ai-v1beta1 com.google.cloud google-cloud-document-ai-parent - 0.1.0 + 0.1.1-SNAPSHOT diff --git a/grpc-google-cloud-document-ai-v1beta2/pom.xml b/grpc-google-cloud-document-ai-v1beta2/pom.xml index 5e120401..1f144d37 100644 --- a/grpc-google-cloud-document-ai-v1beta2/pom.xml +++ b/grpc-google-cloud-document-ai-v1beta2/pom.xml @@ -3,13 +3,13 @@ 4.0.0 com.google.api.grpc grpc-google-cloud-document-ai-v1beta2 - 0.1.0 + 0.1.1-SNAPSHOT grpc-google-cloud-document-ai-v1beta2 GRPC library for grpc-google-cloud-document-ai-v1beta2 com.google.cloud google-cloud-document-ai-parent - 0.1.0 + 0.1.1-SNAPSHOT diff --git a/pom.xml b/pom.xml index 77e8248b..e743da6d 100644 --- a/pom.xml +++ b/pom.xml @@ -4,7 +4,7 @@ com.google.cloud google-cloud-document-ai-parent pom - 0.1.0 + 0.1.1-SNAPSHOT Google Cloud Document AI Parent https://github.com/googleapis/java-documentai @@ -81,22 +81,22 @@ com.google.api.grpc grpc-google-cloud-document-ai-v1beta1 - 0.1.0 + 0.1.1-SNAPSHOT com.google.api.grpc grpc-google-cloud-document-ai-v1beta2 - 0.1.0 + 0.1.1-SNAPSHOT com.google.api.grpc proto-google-cloud-document-ai-v1beta1 - 0.1.0 + 0.1.1-SNAPSHOT com.google.api.grpc proto-google-cloud-document-ai-v1beta2 - 0.1.0 + 0.1.1-SNAPSHOT diff --git a/proto-google-cloud-document-ai-v1beta1/pom.xml b/proto-google-cloud-document-ai-v1beta1/pom.xml index ebea3d6e..331b75fd 100644 --- a/proto-google-cloud-document-ai-v1beta1/pom.xml +++ b/proto-google-cloud-document-ai-v1beta1/pom.xml @@ -3,13 +3,13 @@ 4.0.0 com.google.api.grpc proto-google-cloud-document-ai-v1beta1 - 0.1.0 + 0.1.1-SNAPSHOT proto-google-cloud-document-ai-v1beta1 PROTO library for proto-google-cloud-document-ai-v1beta1 com.google.cloud google-cloud-document-ai-parent - 0.1.0 + 0.1.1-SNAPSHOT diff --git a/proto-google-cloud-document-ai-v1beta2/pom.xml b/proto-google-cloud-document-ai-v1beta2/pom.xml index bd30c9e9..b75cc85e 100644 --- a/proto-google-cloud-document-ai-v1beta2/pom.xml +++ b/proto-google-cloud-document-ai-v1beta2/pom.xml @@ -3,13 +3,13 @@ 4.0.0 com.google.api.grpc proto-google-cloud-document-ai-v1beta2 - 0.1.0 + 0.1.1-SNAPSHOT proto-google-cloud-document-ai-v1beta2 PROTO library for proto-google-cloud-document-ai-v1beta2 com.google.cloud google-cloud-document-ai-parent - 0.1.0 + 0.1.1-SNAPSHOT diff --git a/versions.txt b/versions.txt index 7adcfcb3..6ac5c56a 100644 --- a/versions.txt +++ b/versions.txt @@ -1,5 +1,5 @@ -proto-google-cloud-document-ai-v1beta1:0.1.0:0.1.0 -proto-google-cloud-document-ai-v1beta2:0.1.0:0.1.0 -grpc-google-cloud-document-ai-v1beta1:0.1.0:0.1.0 -grpc-google-cloud-document-ai-v1beta2:0.1.0:0.1.0 -google-cloud-document-ai:0.1.0:0.1.0 +proto-google-cloud-document-ai-v1beta1:0.1.0:0.1.1-SNAPSHOT +proto-google-cloud-document-ai-v1beta2:0.1.0:0.1.1-SNAPSHOT +grpc-google-cloud-document-ai-v1beta1:0.1.0:0.1.1-SNAPSHOT +grpc-google-cloud-document-ai-v1beta2:0.1.0:0.1.1-SNAPSHOT +google-cloud-document-ai:0.1.0:0.1.1-SNAPSHOT From d126a9e40a1caf392a114098a0934c89f12d1f81 Mon Sep 17 00:00:00 2001 From: Yoshi Automation Bot Date: Thu, 19 Mar 2020 09:28:05 -0700 Subject: [PATCH 03/20] chore: regenerate README (#28) This PR was generated using Autosynth. :rainbow:
Log from Synthtool ``` 2020-03-19 02:14:09,211 synthtool > Executing /tmpfs/src/git/autosynth/working_repo/synth.py. 2020-03-19 02:14:09,263 synthtool > Ensuring dependencies. 2020-03-19 02:14:09,275 synthtool > Cloning googleapis. 2020-03-19 02:14:09,596 synthtool > Generating code for: google/cloud/documentai/v1beta1. 2020-03-19 02:14:14,331 synthtool > Generated code into /tmpfs/tmp/tmpjozg4vcw. 2020-03-19 02:14:14,334 synthtool > Replaced '// Generated by the protocol buffer compiler. DO NOT EDIT!' in /tmpfs/tmp/tmpjozg4vcw/google-cloud-documentai-v1beta1-java/proto-google-cloud-documentai-v1beta1-java/src/main/java/com/google/cloud/documentai/v1beta1/ProcessDocumentRequestOrBuilder.java. 2020-03-19 02:14:14,334 synthtool > Replaced '// Generated by the protocol buffer compiler. DO NOT EDIT!' in /tmpfs/tmp/tmpjozg4vcw/google-cloud-documentai-v1beta1-java/proto-google-cloud-documentai-v1beta1-java/src/main/java/com/google/cloud/documentai/v1beta1/ProcessDocumentResponseOrBuilder.java. 2020-03-19 02:14:14,334 synthtool > Replaced '// Generated by the protocol buffer compiler. DO NOT EDIT!' in /tmpfs/tmp/tmpjozg4vcw/google-cloud-documentai-v1beta1-java/proto-google-cloud-documentai-v1beta1-java/src/main/java/com/google/cloud/documentai/v1beta1/TableBoundHintOrBuilder.java. 2020-03-19 02:14:14,334 synthtool > Replaced '// Generated by the protocol buffer compiler. DO NOT EDIT!' in /tmpfs/tmp/tmpjozg4vcw/google-cloud-documentai-v1beta1-java/proto-google-cloud-documentai-v1beta1-java/src/main/java/com/google/cloud/documentai/v1beta1/BoundingPoly.java. 2020-03-19 02:14:14,335 synthtool > Replaced '// Generated by the protocol buffer compiler. DO NOT EDIT!' in /tmpfs/tmp/tmpjozg4vcw/google-cloud-documentai-v1beta1-java/proto-google-cloud-documentai-v1beta1-java/src/main/java/com/google/cloud/documentai/v1beta1/FormExtractionParams.java. 2020-03-19 02:14:14,335 synthtool > Replaced '// Generated by the protocol buffer compiler. DO NOT EDIT!' in /tmpfs/tmp/tmpjozg4vcw/google-cloud-documentai-v1beta1-java/proto-google-cloud-documentai-v1beta1-java/src/main/java/com/google/cloud/documentai/v1beta1/BatchProcessDocumentsRequest.java. 2020-03-19 02:14:14,335 synthtool > Replaced '// Generated by the protocol buffer compiler. DO NOT EDIT!' in /tmpfs/tmp/tmpjozg4vcw/google-cloud-documentai-v1beta1-java/proto-google-cloud-documentai-v1beta1-java/src/main/java/com/google/cloud/documentai/v1beta1/OutputConfig.java. 2020-03-19 02:14:14,335 synthtool > Replaced '// Generated by the protocol buffer compiler. DO NOT EDIT!' in /tmpfs/tmp/tmpjozg4vcw/google-cloud-documentai-v1beta1-java/proto-google-cloud-documentai-v1beta1-java/src/main/java/com/google/cloud/documentai/v1beta1/DocumentProto.java. 2020-03-19 02:14:14,336 synthtool > Replaced '// Generated by the protocol buffer compiler. DO NOT EDIT!' in /tmpfs/tmp/tmpjozg4vcw/google-cloud-documentai-v1beta1-java/proto-google-cloud-documentai-v1beta1-java/src/main/java/com/google/cloud/documentai/v1beta1/DocumentOrBuilder.java. 2020-03-19 02:14:14,336 synthtool > Replaced '// Generated by the protocol buffer compiler. DO NOT EDIT!' in /tmpfs/tmp/tmpjozg4vcw/google-cloud-documentai-v1beta1-java/proto-google-cloud-documentai-v1beta1-java/src/main/java/com/google/cloud/documentai/v1beta1/GcsSource.java. 2020-03-19 02:14:14,336 synthtool > Replaced '// Generated by the protocol buffer compiler. DO NOT EDIT!' in /tmpfs/tmp/tmpjozg4vcw/google-cloud-documentai-v1beta1-java/proto-google-cloud-documentai-v1beta1-java/src/main/java/com/google/cloud/documentai/v1beta1/EntityExtractionParams.java. 2020-03-19 02:14:14,336 synthtool > Replaced '// Generated by the protocol buffer compiler. DO NOT EDIT!' in /tmpfs/tmp/tmpjozg4vcw/google-cloud-documentai-v1beta1-java/proto-google-cloud-documentai-v1beta1-java/src/main/java/com/google/cloud/documentai/v1beta1/GcsDestination.java. 2020-03-19 02:14:14,336 synthtool > Replaced '// Generated by the protocol buffer compiler. DO NOT EDIT!' in /tmpfs/tmp/tmpjozg4vcw/google-cloud-documentai-v1beta1-java/proto-google-cloud-documentai-v1beta1-java/src/main/java/com/google/cloud/documentai/v1beta1/KeyValuePairHintOrBuilder.java. 2020-03-19 02:14:14,337 synthtool > Replaced '// Generated by the protocol buffer compiler. DO NOT EDIT!' in /tmpfs/tmp/tmpjozg4vcw/google-cloud-documentai-v1beta1-java/proto-google-cloud-documentai-v1beta1-java/src/main/java/com/google/cloud/documentai/v1beta1/TableExtractionParams.java. 2020-03-19 02:14:14,337 synthtool > Replaced '// Generated by the protocol buffer compiler. DO NOT EDIT!' in /tmpfs/tmp/tmpjozg4vcw/google-cloud-documentai-v1beta1-java/proto-google-cloud-documentai-v1beta1-java/src/main/java/com/google/cloud/documentai/v1beta1/InputConfigOrBuilder.java. 2020-03-19 02:14:14,337 synthtool > Replaced '// Generated by the protocol buffer compiler. DO NOT EDIT!' in /tmpfs/tmp/tmpjozg4vcw/google-cloud-documentai-v1beta1-java/proto-google-cloud-documentai-v1beta1-java/src/main/java/com/google/cloud/documentai/v1beta1/InputConfig.java. 2020-03-19 02:14:14,337 synthtool > Replaced '// Generated by the protocol buffer compiler. DO NOT EDIT!' in /tmpfs/tmp/tmpjozg4vcw/google-cloud-documentai-v1beta1-java/proto-google-cloud-documentai-v1beta1-java/src/main/java/com/google/cloud/documentai/v1beta1/GcsDestinationOrBuilder.java. 2020-03-19 02:14:14,338 synthtool > Replaced '// Generated by the protocol buffer compiler. DO NOT EDIT!' in /tmpfs/tmp/tmpjozg4vcw/google-cloud-documentai-v1beta1-java/proto-google-cloud-documentai-v1beta1-java/src/main/java/com/google/cloud/documentai/v1beta1/OutputConfigOrBuilder.java. 2020-03-19 02:14:14,338 synthtool > Replaced '// Generated by the protocol buffer compiler. DO NOT EDIT!' in /tmpfs/tmp/tmpjozg4vcw/google-cloud-documentai-v1beta1-java/proto-google-cloud-documentai-v1beta1-java/src/main/java/com/google/cloud/documentai/v1beta1/ProcessDocumentResponse.java. 2020-03-19 02:14:14,338 synthtool > Replaced '// Generated by the protocol buffer compiler. DO NOT EDIT!' in /tmpfs/tmp/tmpjozg4vcw/google-cloud-documentai-v1beta1-java/proto-google-cloud-documentai-v1beta1-java/src/main/java/com/google/cloud/documentai/v1beta1/TableExtractionParamsOrBuilder.java. 2020-03-19 02:14:14,338 synthtool > Replaced '// Generated by the protocol buffer compiler. DO NOT EDIT!' in /tmpfs/tmp/tmpjozg4vcw/google-cloud-documentai-v1beta1-java/proto-google-cloud-documentai-v1beta1-java/src/main/java/com/google/cloud/documentai/v1beta1/GcsSourceOrBuilder.java. 2020-03-19 02:14:14,338 synthtool > Replaced '// Generated by the protocol buffer compiler. DO NOT EDIT!' in /tmpfs/tmp/tmpjozg4vcw/google-cloud-documentai-v1beta1-java/proto-google-cloud-documentai-v1beta1-java/src/main/java/com/google/cloud/documentai/v1beta1/KeyValuePairHint.java. 2020-03-19 02:14:14,339 synthtool > Replaced '// Generated by the protocol buffer compiler. DO NOT EDIT!' in /tmpfs/tmp/tmpjozg4vcw/google-cloud-documentai-v1beta1-java/proto-google-cloud-documentai-v1beta1-java/src/main/java/com/google/cloud/documentai/v1beta1/EntityExtractionParamsOrBuilder.java. 2020-03-19 02:14:14,339 synthtool > Replaced '// Generated by the protocol buffer compiler. DO NOT EDIT!' in /tmpfs/tmp/tmpjozg4vcw/google-cloud-documentai-v1beta1-java/proto-google-cloud-documentai-v1beta1-java/src/main/java/com/google/cloud/documentai/v1beta1/OcrParams.java. 2020-03-19 02:14:14,339 synthtool > Replaced '// Generated by the protocol buffer compiler. DO NOT EDIT!' in /tmpfs/tmp/tmpjozg4vcw/google-cloud-documentai-v1beta1-java/proto-google-cloud-documentai-v1beta1-java/src/main/java/com/google/cloud/documentai/v1beta1/FormExtractionParamsOrBuilder.java. 2020-03-19 02:14:14,339 synthtool > Replaced '// Generated by the protocol buffer compiler. DO NOT EDIT!' in /tmpfs/tmp/tmpjozg4vcw/google-cloud-documentai-v1beta1-java/proto-google-cloud-documentai-v1beta1-java/src/main/java/com/google/cloud/documentai/v1beta1/TableBoundHint.java. 2020-03-19 02:14:14,345 synthtool > Replaced '// Generated by the protocol buffer compiler. DO NOT EDIT!' in /tmpfs/tmp/tmpjozg4vcw/google-cloud-documentai-v1beta1-java/proto-google-cloud-documentai-v1beta1-java/src/main/java/com/google/cloud/documentai/v1beta1/Document.java. 2020-03-19 02:14:14,345 synthtool > Replaced '// Generated by the protocol buffer compiler. DO NOT EDIT!' in /tmpfs/tmp/tmpjozg4vcw/google-cloud-documentai-v1beta1-java/proto-google-cloud-documentai-v1beta1-java/src/main/java/com/google/cloud/documentai/v1beta1/Vertex.java. 2020-03-19 02:14:14,346 synthtool > Replaced '// Generated by the protocol buffer compiler. DO NOT EDIT!' in /tmpfs/tmp/tmpjozg4vcw/google-cloud-documentai-v1beta1-java/proto-google-cloud-documentai-v1beta1-java/src/main/java/com/google/cloud/documentai/v1beta1/BatchProcessDocumentsResponse.java. 2020-03-19 02:14:14,346 synthtool > Replaced '// Generated by the protocol buffer compiler. DO NOT EDIT!' in /tmpfs/tmp/tmpjozg4vcw/google-cloud-documentai-v1beta1-java/proto-google-cloud-documentai-v1beta1-java/src/main/java/com/google/cloud/documentai/v1beta1/VertexOrBuilder.java. 2020-03-19 02:14:14,346 synthtool > Replaced '// Generated by the protocol buffer compiler. DO NOT EDIT!' in /tmpfs/tmp/tmpjozg4vcw/google-cloud-documentai-v1beta1-java/proto-google-cloud-documentai-v1beta1-java/src/main/java/com/google/cloud/documentai/v1beta1/NormalizedVertexOrBuilder.java. 2020-03-19 02:14:14,346 synthtool > Replaced '// Generated by the protocol buffer compiler. DO NOT EDIT!' in /tmpfs/tmp/tmpjozg4vcw/google-cloud-documentai-v1beta1-java/proto-google-cloud-documentai-v1beta1-java/src/main/java/com/google/cloud/documentai/v1beta1/BatchProcessDocumentsResponseOrBuilder.java. 2020-03-19 02:14:14,346 synthtool > Replaced '// Generated by the protocol buffer compiler. DO NOT EDIT!' in /tmpfs/tmp/tmpjozg4vcw/google-cloud-documentai-v1beta1-java/proto-google-cloud-documentai-v1beta1-java/src/main/java/com/google/cloud/documentai/v1beta1/NormalizedVertex.java. 2020-03-19 02:14:14,346 synthtool > Replaced '// Generated by the protocol buffer compiler. DO NOT EDIT!' in /tmpfs/tmp/tmpjozg4vcw/google-cloud-documentai-v1beta1-java/proto-google-cloud-documentai-v1beta1-java/src/main/java/com/google/cloud/documentai/v1beta1/BoundingPolyOrBuilder.java. 2020-03-19 02:14:14,347 synthtool > Replaced '// Generated by the protocol buffer compiler. DO NOT EDIT!' in /tmpfs/tmp/tmpjozg4vcw/google-cloud-documentai-v1beta1-java/proto-google-cloud-documentai-v1beta1-java/src/main/java/com/google/cloud/documentai/v1beta1/GeometryProto.java. 2020-03-19 02:14:14,347 synthtool > Replaced '// Generated by the protocol buffer compiler. DO NOT EDIT!' in /tmpfs/tmp/tmpjozg4vcw/google-cloud-documentai-v1beta1-java/proto-google-cloud-documentai-v1beta1-java/src/main/java/com/google/cloud/documentai/v1beta1/BatchProcessDocumentsRequestOrBuilder.java. 2020-03-19 02:14:14,347 synthtool > Replaced '// Generated by the protocol buffer compiler. DO NOT EDIT!' in /tmpfs/tmp/tmpjozg4vcw/google-cloud-documentai-v1beta1-java/proto-google-cloud-documentai-v1beta1-java/src/main/java/com/google/cloud/documentai/v1beta1/DocumentAiProto.java. 2020-03-19 02:14:14,347 synthtool > Replaced '// Generated by the protocol buffer compiler. DO NOT EDIT!' in /tmpfs/tmp/tmpjozg4vcw/google-cloud-documentai-v1beta1-java/proto-google-cloud-documentai-v1beta1-java/src/main/java/com/google/cloud/documentai/v1beta1/OperationMetadata.java. 2020-03-19 02:14:14,348 synthtool > Replaced '// Generated by the protocol buffer compiler. DO NOT EDIT!' in /tmpfs/tmp/tmpjozg4vcw/google-cloud-documentai-v1beta1-java/proto-google-cloud-documentai-v1beta1-java/src/main/java/com/google/cloud/documentai/v1beta1/ProcessDocumentRequest.java. 2020-03-19 02:14:14,348 synthtool > Replaced '// Generated by the protocol buffer compiler. DO NOT EDIT!' in /tmpfs/tmp/tmpjozg4vcw/google-cloud-documentai-v1beta1-java/proto-google-cloud-documentai-v1beta1-java/src/main/java/com/google/cloud/documentai/v1beta1/OcrParamsOrBuilder.java. 2020-03-19 02:14:14,348 synthtool > Replaced '// Generated by the protocol buffer compiler. DO NOT EDIT!' in /tmpfs/tmp/tmpjozg4vcw/google-cloud-documentai-v1beta1-java/proto-google-cloud-documentai-v1beta1-java/src/main/java/com/google/cloud/documentai/v1beta1/OperationMetadataOrBuilder.java. 2020-03-19 02:14:14,352 synthtool > No replacements made in [PosixPath('/tmpfs/tmp/tmpjozg4vcw/google-cloud-documentai-v1beta1-java/proto-google-cloud-documentai-v1beta1-java/src/**/*Name.java'), PosixPath('/tmpfs/tmp/tmpjozg4vcw/google-cloud-documentai-v1beta1-java/proto-google-cloud-documentai-v1beta1-java/src/**/*Names.java')] for pattern /\* \* Copyright \d{4} Google LLC \* \* Licensed under the Apache License, Version 2.0 \(the "License"\); you may not use this file except \* in compliance with the License. You may obtain a copy of the License at \* \* http://www.apache.org/licenses/LICENSE-2.0 \* \* Unless required by applicable law or agreed to in writing, software distributed under the License \* is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express \* or implied. See the License for the specific language governing permissions and limitations under \* the License. \*/ , maybe replacement is no longer needed? 2020-03-19 02:14:14,354 synthtool > Replaced '^package (.*);' in /tmpfs/tmp/tmpjozg4vcw/google-cloud-documentai-v1beta1-java/grpc-google-cloud-documentai-v1beta1-java/src/main/java/com/google/cloud/documentai/v1beta1/DocumentUnderstandingServiceGrpc.java. 2020-03-19 02:14:14,370 synthtool > No files in sources [PosixPath('/tmpfs/tmp/tmpjozg4vcw/google-cloud-documentai-v1beta1-java/gapic-google-cloud-documentai-v1beta1-java/samples/src')] were copied. Does the source contain files? 2020-03-19 02:14:14,370 synthtool > No files in sources [PosixPath('/tmpfs/tmp/tmpjozg4vcw/google-cloud-documentai-v1beta1-java/gapic-google-cloud-documentai-v1beta1-java/samples/resources')] were copied. Does the source contain files? 2020-03-19 02:14:14,370 synthtool > No files in sources [PosixPath('/tmpfs/tmp/tmpjozg4vcw/google-cloud-documentai-v1beta1-java/gapic-google-cloud-documentai-v1beta1-java/samples/src/**/*.manifest.yaml')] were copied. Does the source contain files? 2020-03-19 02:14:14,371 synthtool > Running java formatter on 20 files 2020-03-19 02:14:16,977 synthtool > Running java formatter on 1 files 2020-03-19 02:14:18,706 synthtool > Running java formatter on 41 files 2020-03-19 02:14:28,634 synthtool > Running java formatter on 0 files 2020-03-19 02:14:28,888 synthtool > Ensuring dependencies. 2020-03-19 02:14:28,899 synthtool > Cloning googleapis. 2020-03-19 02:14:29,546 synthtool > Generating code for: google/cloud/documentai/v1beta2. 2020-03-19 02:14:34,388 synthtool > Generated code into /tmpfs/tmp/tmppb5k9_dp. 2020-03-19 02:14:34,390 synthtool > Replaced '// Generated by the protocol buffer compiler. DO NOT EDIT!' in /tmpfs/tmp/tmppb5k9_dp/google-cloud-documentai-v1beta2-java/proto-google-cloud-documentai-v1beta2-java/src/main/java/com/google/cloud/documentai/v1beta2/ProcessDocumentRequestOrBuilder.java. 2020-03-19 02:14:34,390 synthtool > Replaced '// Generated by the protocol buffer compiler. DO NOT EDIT!' in /tmpfs/tmp/tmppb5k9_dp/google-cloud-documentai-v1beta2-java/proto-google-cloud-documentai-v1beta2-java/src/main/java/com/google/cloud/documentai/v1beta2/ProcessDocumentResponseOrBuilder.java. 2020-03-19 02:14:34,390 synthtool > Replaced '// Generated by the protocol buffer compiler. DO NOT EDIT!' in /tmpfs/tmp/tmppb5k9_dp/google-cloud-documentai-v1beta2-java/proto-google-cloud-documentai-v1beta2-java/src/main/java/com/google/cloud/documentai/v1beta2/TableBoundHintOrBuilder.java. 2020-03-19 02:14:34,391 synthtool > Replaced '// Generated by the protocol buffer compiler. DO NOT EDIT!' in /tmpfs/tmp/tmppb5k9_dp/google-cloud-documentai-v1beta2-java/proto-google-cloud-documentai-v1beta2-java/src/main/java/com/google/cloud/documentai/v1beta2/BoundingPoly.java. 2020-03-19 02:14:34,392 synthtool > Replaced '// Generated by the protocol buffer compiler. DO NOT EDIT!' in /tmpfs/tmp/tmppb5k9_dp/google-cloud-documentai-v1beta2-java/proto-google-cloud-documentai-v1beta2-java/src/main/java/com/google/cloud/documentai/v1beta2/FormExtractionParams.java. 2020-03-19 02:14:34,392 synthtool > Replaced '// Generated by the protocol buffer compiler. DO NOT EDIT!' in /tmpfs/tmp/tmppb5k9_dp/google-cloud-documentai-v1beta2-java/proto-google-cloud-documentai-v1beta2-java/src/main/java/com/google/cloud/documentai/v1beta2/BatchProcessDocumentsRequest.java. 2020-03-19 02:14:34,392 synthtool > Replaced '// Generated by the protocol buffer compiler. DO NOT EDIT!' in /tmpfs/tmp/tmppb5k9_dp/google-cloud-documentai-v1beta2-java/proto-google-cloud-documentai-v1beta2-java/src/main/java/com/google/cloud/documentai/v1beta2/OutputConfig.java. 2020-03-19 02:14:34,393 synthtool > Replaced '// Generated by the protocol buffer compiler. DO NOT EDIT!' in /tmpfs/tmp/tmppb5k9_dp/google-cloud-documentai-v1beta2-java/proto-google-cloud-documentai-v1beta2-java/src/main/java/com/google/cloud/documentai/v1beta2/DocumentProto.java. 2020-03-19 02:14:34,393 synthtool > Replaced '// Generated by the protocol buffer compiler. DO NOT EDIT!' in /tmpfs/tmp/tmppb5k9_dp/google-cloud-documentai-v1beta2-java/proto-google-cloud-documentai-v1beta2-java/src/main/java/com/google/cloud/documentai/v1beta2/DocumentOrBuilder.java. 2020-03-19 02:14:34,393 synthtool > Replaced '// Generated by the protocol buffer compiler. DO NOT EDIT!' in /tmpfs/tmp/tmppb5k9_dp/google-cloud-documentai-v1beta2-java/proto-google-cloud-documentai-v1beta2-java/src/main/java/com/google/cloud/documentai/v1beta2/GcsSource.java. 2020-03-19 02:14:34,393 synthtool > Replaced '// Generated by the protocol buffer compiler. DO NOT EDIT!' in /tmpfs/tmp/tmppb5k9_dp/google-cloud-documentai-v1beta2-java/proto-google-cloud-documentai-v1beta2-java/src/main/java/com/google/cloud/documentai/v1beta2/EntityExtractionParams.java. 2020-03-19 02:14:34,393 synthtool > Replaced '// Generated by the protocol buffer compiler. DO NOT EDIT!' in /tmpfs/tmp/tmppb5k9_dp/google-cloud-documentai-v1beta2-java/proto-google-cloud-documentai-v1beta2-java/src/main/java/com/google/cloud/documentai/v1beta2/GcsDestination.java. 2020-03-19 02:14:34,393 synthtool > Replaced '// Generated by the protocol buffer compiler. DO NOT EDIT!' in /tmpfs/tmp/tmppb5k9_dp/google-cloud-documentai-v1beta2-java/proto-google-cloud-documentai-v1beta2-java/src/main/java/com/google/cloud/documentai/v1beta2/KeyValuePairHintOrBuilder.java. 2020-03-19 02:14:34,394 synthtool > Replaced '// Generated by the protocol buffer compiler. DO NOT EDIT!' in /tmpfs/tmp/tmppb5k9_dp/google-cloud-documentai-v1beta2-java/proto-google-cloud-documentai-v1beta2-java/src/main/java/com/google/cloud/documentai/v1beta2/TableExtractionParams.java. 2020-03-19 02:14:34,394 synthtool > Replaced '// Generated by the protocol buffer compiler. DO NOT EDIT!' in /tmpfs/tmp/tmppb5k9_dp/google-cloud-documentai-v1beta2-java/proto-google-cloud-documentai-v1beta2-java/src/main/java/com/google/cloud/documentai/v1beta2/InputConfigOrBuilder.java. 2020-03-19 02:14:34,394 synthtool > Replaced '// Generated by the protocol buffer compiler. DO NOT EDIT!' in /tmpfs/tmp/tmppb5k9_dp/google-cloud-documentai-v1beta2-java/proto-google-cloud-documentai-v1beta2-java/src/main/java/com/google/cloud/documentai/v1beta2/InputConfig.java. 2020-03-19 02:14:34,394 synthtool > Replaced '// Generated by the protocol buffer compiler. DO NOT EDIT!' in /tmpfs/tmp/tmppb5k9_dp/google-cloud-documentai-v1beta2-java/proto-google-cloud-documentai-v1beta2-java/src/main/java/com/google/cloud/documentai/v1beta2/GcsDestinationOrBuilder.java. 2020-03-19 02:14:34,394 synthtool > Replaced '// Generated by the protocol buffer compiler. DO NOT EDIT!' in /tmpfs/tmp/tmppb5k9_dp/google-cloud-documentai-v1beta2-java/proto-google-cloud-documentai-v1beta2-java/src/main/java/com/google/cloud/documentai/v1beta2/OutputConfigOrBuilder.java. 2020-03-19 02:14:34,395 synthtool > Replaced '// Generated by the protocol buffer compiler. DO NOT EDIT!' in /tmpfs/tmp/tmppb5k9_dp/google-cloud-documentai-v1beta2-java/proto-google-cloud-documentai-v1beta2-java/src/main/java/com/google/cloud/documentai/v1beta2/ProcessDocumentResponse.java. 2020-03-19 02:14:34,395 synthtool > Replaced '// Generated by the protocol buffer compiler. DO NOT EDIT!' in /tmpfs/tmp/tmppb5k9_dp/google-cloud-documentai-v1beta2-java/proto-google-cloud-documentai-v1beta2-java/src/main/java/com/google/cloud/documentai/v1beta2/TableExtractionParamsOrBuilder.java. 2020-03-19 02:14:34,395 synthtool > Replaced '// Generated by the protocol buffer compiler. DO NOT EDIT!' in /tmpfs/tmp/tmppb5k9_dp/google-cloud-documentai-v1beta2-java/proto-google-cloud-documentai-v1beta2-java/src/main/java/com/google/cloud/documentai/v1beta2/GcsSourceOrBuilder.java. 2020-03-19 02:14:34,395 synthtool > Replaced '// Generated by the protocol buffer compiler. DO NOT EDIT!' in /tmpfs/tmp/tmppb5k9_dp/google-cloud-documentai-v1beta2-java/proto-google-cloud-documentai-v1beta2-java/src/main/java/com/google/cloud/documentai/v1beta2/KeyValuePairHint.java. 2020-03-19 02:14:34,395 synthtool > Replaced '// Generated by the protocol buffer compiler. DO NOT EDIT!' in /tmpfs/tmp/tmppb5k9_dp/google-cloud-documentai-v1beta2-java/proto-google-cloud-documentai-v1beta2-java/src/main/java/com/google/cloud/documentai/v1beta2/EntityExtractionParamsOrBuilder.java. 2020-03-19 02:14:34,395 synthtool > Replaced '// Generated by the protocol buffer compiler. DO NOT EDIT!' in /tmpfs/tmp/tmppb5k9_dp/google-cloud-documentai-v1beta2-java/proto-google-cloud-documentai-v1beta2-java/src/main/java/com/google/cloud/documentai/v1beta2/OcrParams.java. 2020-03-19 02:14:34,396 synthtool > Replaced '// Generated by the protocol buffer compiler. DO NOT EDIT!' in /tmpfs/tmp/tmppb5k9_dp/google-cloud-documentai-v1beta2-java/proto-google-cloud-documentai-v1beta2-java/src/main/java/com/google/cloud/documentai/v1beta2/FormExtractionParamsOrBuilder.java. 2020-03-19 02:14:34,396 synthtool > Replaced '// Generated by the protocol buffer compiler. DO NOT EDIT!' in /tmpfs/tmp/tmppb5k9_dp/google-cloud-documentai-v1beta2-java/proto-google-cloud-documentai-v1beta2-java/src/main/java/com/google/cloud/documentai/v1beta2/TableBoundHint.java. 2020-03-19 02:14:34,402 synthtool > Replaced '// Generated by the protocol buffer compiler. DO NOT EDIT!' in /tmpfs/tmp/tmppb5k9_dp/google-cloud-documentai-v1beta2-java/proto-google-cloud-documentai-v1beta2-java/src/main/java/com/google/cloud/documentai/v1beta2/Document.java. 2020-03-19 02:14:34,402 synthtool > Replaced '// Generated by the protocol buffer compiler. DO NOT EDIT!' in /tmpfs/tmp/tmppb5k9_dp/google-cloud-documentai-v1beta2-java/proto-google-cloud-documentai-v1beta2-java/src/main/java/com/google/cloud/documentai/v1beta2/Vertex.java. 2020-03-19 02:14:34,402 synthtool > Replaced '// Generated by the protocol buffer compiler. DO NOT EDIT!' in /tmpfs/tmp/tmppb5k9_dp/google-cloud-documentai-v1beta2-java/proto-google-cloud-documentai-v1beta2-java/src/main/java/com/google/cloud/documentai/v1beta2/BatchProcessDocumentsResponse.java. 2020-03-19 02:14:34,402 synthtool > Replaced '// Generated by the protocol buffer compiler. DO NOT EDIT!' in /tmpfs/tmp/tmppb5k9_dp/google-cloud-documentai-v1beta2-java/proto-google-cloud-documentai-v1beta2-java/src/main/java/com/google/cloud/documentai/v1beta2/VertexOrBuilder.java. 2020-03-19 02:14:34,403 synthtool > Replaced '// Generated by the protocol buffer compiler. DO NOT EDIT!' in /tmpfs/tmp/tmppb5k9_dp/google-cloud-documentai-v1beta2-java/proto-google-cloud-documentai-v1beta2-java/src/main/java/com/google/cloud/documentai/v1beta2/AutoMlParamsOrBuilder.java. 2020-03-19 02:14:34,403 synthtool > Replaced '// Generated by the protocol buffer compiler. DO NOT EDIT!' in /tmpfs/tmp/tmppb5k9_dp/google-cloud-documentai-v1beta2-java/proto-google-cloud-documentai-v1beta2-java/src/main/java/com/google/cloud/documentai/v1beta2/NormalizedVertexOrBuilder.java. 2020-03-19 02:14:34,403 synthtool > Replaced '// Generated by the protocol buffer compiler. DO NOT EDIT!' in /tmpfs/tmp/tmppb5k9_dp/google-cloud-documentai-v1beta2-java/proto-google-cloud-documentai-v1beta2-java/src/main/java/com/google/cloud/documentai/v1beta2/AutoMlParams.java. 2020-03-19 02:14:34,403 synthtool > Replaced '// Generated by the protocol buffer compiler. DO NOT EDIT!' in /tmpfs/tmp/tmppb5k9_dp/google-cloud-documentai-v1beta2-java/proto-google-cloud-documentai-v1beta2-java/src/main/java/com/google/cloud/documentai/v1beta2/BatchProcessDocumentsResponseOrBuilder.java. 2020-03-19 02:14:34,403 synthtool > Replaced '// Generated by the protocol buffer compiler. DO NOT EDIT!' in /tmpfs/tmp/tmppb5k9_dp/google-cloud-documentai-v1beta2-java/proto-google-cloud-documentai-v1beta2-java/src/main/java/com/google/cloud/documentai/v1beta2/NormalizedVertex.java. 2020-03-19 02:14:34,403 synthtool > Replaced '// Generated by the protocol buffer compiler. DO NOT EDIT!' in /tmpfs/tmp/tmppb5k9_dp/google-cloud-documentai-v1beta2-java/proto-google-cloud-documentai-v1beta2-java/src/main/java/com/google/cloud/documentai/v1beta2/BoundingPolyOrBuilder.java. 2020-03-19 02:14:34,404 synthtool > Replaced '// Generated by the protocol buffer compiler. DO NOT EDIT!' in /tmpfs/tmp/tmppb5k9_dp/google-cloud-documentai-v1beta2-java/proto-google-cloud-documentai-v1beta2-java/src/main/java/com/google/cloud/documentai/v1beta2/GeometryProto.java. 2020-03-19 02:14:34,404 synthtool > Replaced '// Generated by the protocol buffer compiler. DO NOT EDIT!' in /tmpfs/tmp/tmppb5k9_dp/google-cloud-documentai-v1beta2-java/proto-google-cloud-documentai-v1beta2-java/src/main/java/com/google/cloud/documentai/v1beta2/BatchProcessDocumentsRequestOrBuilder.java. 2020-03-19 02:14:34,404 synthtool > Replaced '// Generated by the protocol buffer compiler. DO NOT EDIT!' in /tmpfs/tmp/tmppb5k9_dp/google-cloud-documentai-v1beta2-java/proto-google-cloud-documentai-v1beta2-java/src/main/java/com/google/cloud/documentai/v1beta2/DocumentAiProto.java. 2020-03-19 02:14:34,404 synthtool > Replaced '// Generated by the protocol buffer compiler. DO NOT EDIT!' in /tmpfs/tmp/tmppb5k9_dp/google-cloud-documentai-v1beta2-java/proto-google-cloud-documentai-v1beta2-java/src/main/java/com/google/cloud/documentai/v1beta2/OperationMetadata.java. 2020-03-19 02:14:34,404 synthtool > Replaced '// Generated by the protocol buffer compiler. DO NOT EDIT!' in /tmpfs/tmp/tmppb5k9_dp/google-cloud-documentai-v1beta2-java/proto-google-cloud-documentai-v1beta2-java/src/main/java/com/google/cloud/documentai/v1beta2/ProcessDocumentRequest.java. 2020-03-19 02:14:34,405 synthtool > Replaced '// Generated by the protocol buffer compiler. DO NOT EDIT!' in /tmpfs/tmp/tmppb5k9_dp/google-cloud-documentai-v1beta2-java/proto-google-cloud-documentai-v1beta2-java/src/main/java/com/google/cloud/documentai/v1beta2/OcrParamsOrBuilder.java. 2020-03-19 02:14:34,405 synthtool > Replaced '// Generated by the protocol buffer compiler. DO NOT EDIT!' in /tmpfs/tmp/tmppb5k9_dp/google-cloud-documentai-v1beta2-java/proto-google-cloud-documentai-v1beta2-java/src/main/java/com/google/cloud/documentai/v1beta2/OperationMetadataOrBuilder.java. 2020-03-19 02:14:34,406 synthtool > No replacements made in [PosixPath('/tmpfs/tmp/tmppb5k9_dp/google-cloud-documentai-v1beta2-java/proto-google-cloud-documentai-v1beta2-java/src/**/*Name.java'), PosixPath('/tmpfs/tmp/tmppb5k9_dp/google-cloud-documentai-v1beta2-java/proto-google-cloud-documentai-v1beta2-java/src/**/*Names.java')] for pattern /\* \* Copyright \d{4} Google LLC \* \* Licensed under the Apache License, Version 2.0 \(the "License"\); you may not use this file except \* in compliance with the License. You may obtain a copy of the License at \* \* http://www.apache.org/licenses/LICENSE-2.0 \* \* Unless required by applicable law or agreed to in writing, software distributed under the License \* is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express \* or implied. See the License for the specific language governing permissions and limitations under \* the License. \*/ , maybe replacement is no longer needed? 2020-03-19 02:14:34,407 synthtool > Replaced '^package (.*);' in /tmpfs/tmp/tmppb5k9_dp/google-cloud-documentai-v1beta2-java/grpc-google-cloud-documentai-v1beta2-java/src/main/java/com/google/cloud/documentai/v1beta2/DocumentUnderstandingServiceGrpc.java. 2020-03-19 02:14:34,426 synthtool > No files in sources [PosixPath('/tmpfs/tmp/tmppb5k9_dp/google-cloud-documentai-v1beta2-java/gapic-google-cloud-documentai-v1beta2-java/samples/src')] were copied. Does the source contain files? 2020-03-19 02:14:34,426 synthtool > No files in sources [PosixPath('/tmpfs/tmp/tmppb5k9_dp/google-cloud-documentai-v1beta2-java/gapic-google-cloud-documentai-v1beta2-java/samples/resources')] were copied. Does the source contain files? 2020-03-19 02:14:34,426 synthtool > No files in sources [PosixPath('/tmpfs/tmp/tmppb5k9_dp/google-cloud-documentai-v1beta2-java/gapic-google-cloud-documentai-v1beta2-java/samples/src/**/*.manifest.yaml')] were copied. Does the source contain files? 2020-03-19 02:14:34,427 synthtool > Running java formatter on 20 files 2020-03-19 02:14:37,063 synthtool > Running java formatter on 1 files 2020-03-19 02:14:38,924 synthtool > Running java formatter on 43 files 2020-03-19 02:14:49,974 synthtool > Running java formatter on 0 files .github/ISSUE_TEMPLATE/bug_report.md .github/ISSUE_TEMPLATE/feature_request.md .github/ISSUE_TEMPLATE/support_request.md .github/PULL_REQUEST_TEMPLATE.md .github/release-please.yml .github/trusted-contribution.yml .kokoro/build.bat .kokoro/build.sh .kokoro/coerce_logs.sh .kokoro/common.cfg .kokoro/continuous/common.cfg .kokoro/continuous/dependencies.cfg .kokoro/continuous/integration.cfg .kokoro/continuous/java11.cfg .kokoro/continuous/java7.cfg .kokoro/continuous/java8-osx.cfg .kokoro/continuous/java8-win.cfg .kokoro/continuous/java8.cfg .kokoro/continuous/lint.cfg .kokoro/continuous/propose_release.cfg .kokoro/continuous/samples.cfg .kokoro/dependencies.sh .kokoro/linkage-monitor.sh .kokoro/nightly/common.cfg .kokoro/nightly/dependencies.cfg .kokoro/nightly/integration.cfg .kokoro/nightly/java11.cfg .kokoro/nightly/java7.cfg .kokoro/nightly/java8-osx.cfg .kokoro/nightly/java8-win.cfg .kokoro/nightly/java8.cfg .kokoro/nightly/lint.cfg .kokoro/nightly/samples.cfg .kokoro/presubmit/clirr.cfg .kokoro/presubmit/common.cfg .kokoro/presubmit/dependencies.cfg .kokoro/presubmit/integration.cfg .kokoro/presubmit/java11.cfg .kokoro/presubmit/java7.cfg .kokoro/presubmit/java8-osx.cfg .kokoro/presubmit/java8-win.cfg .kokoro/presubmit/java8.cfg .kokoro/presubmit/linkage-monitor.cfg .kokoro/presubmit/lint.cfg .kokoro/presubmit/samples.cfg .kokoro/release/bump_snapshot.cfg .kokoro/release/common.cfg .kokoro/release/common.sh .kokoro/release/drop.cfg .kokoro/release/drop.sh .kokoro/release/promote.cfg .kokoro/release/promote.sh .kokoro/release/publish_javadoc.cfg .kokoro/release/publish_javadoc.sh .kokoro/release/snapshot.cfg .kokoro/release/snapshot.sh .kokoro/release/stage.cfg .kokoro/release/stage.sh .kokoro/trampoline.sh CODE_OF_CONDUCT.md CONTRIBUTING.md LICENSE README.md codecov.yaml java.header license-checks.xml renovate.json samples/install-without-bom/pom.xml samples/pom.xml samples/snapshot/pom.xml samples/snippets/pom.xml 2020-03-19 02:14:50,777 synthtool > merge: codecov.yaml 2020-03-19 02:14:50,778 synthtool > merge: CODE_OF_CONDUCT.md 2020-03-19 02:14:50,778 synthtool > merge: java.header 2020-03-19 02:14:50,778 synthtool > merge: CONTRIBUTING.md 2020-03-19 02:14:50,779 synthtool > merge: LICENSE 2020-03-19 02:14:50,779 synthtool > merge: README.md 2020-03-19 02:14:50,779 synthtool > merge: license-checks.xml 2020-03-19 02:14:50,779 synthtool > merge: renovate.json 2020-03-19 02:14:50,780 synthtool > merge: .kokoro/build.bat 2020-03-19 02:14:50,780 synthtool > merge: .kokoro/dependencies.sh 2020-03-19 02:14:50,780 synthtool > merge: .kokoro/trampoline.sh 2020-03-19 02:14:50,781 synthtool > merge: .kokoro/coerce_logs.sh 2020-03-19 02:14:50,781 synthtool > merge: .kokoro/common.cfg 2020-03-19 02:14:50,781 synthtool > merge: .kokoro/linkage-monitor.sh 2020-03-19 02:14:50,781 synthtool > merge: .kokoro/build.sh 2020-03-19 02:14:50,782 synthtool > merge: .kokoro/presubmit/samples.cfg 2020-03-19 02:14:50,782 synthtool > merge: .kokoro/presubmit/integration.cfg 2020-03-19 02:14:50,782 synthtool > merge: .kokoro/presubmit/java11.cfg 2020-03-19 02:14:50,782 synthtool > merge: .kokoro/presubmit/java8-win.cfg 2020-03-19 02:14:50,783 synthtool > merge: .kokoro/presubmit/dependencies.cfg 2020-03-19 02:14:50,783 synthtool > merge: .kokoro/presubmit/java8.cfg 2020-03-19 02:14:50,783 synthtool > merge: .kokoro/presubmit/clirr.cfg 2020-03-19 02:14:50,784 synthtool > merge: .kokoro/presubmit/java7.cfg 2020-03-19 02:14:50,784 synthtool > merge: .kokoro/presubmit/common.cfg 2020-03-19 02:14:50,784 synthtool > merge: .kokoro/presubmit/lint.cfg 2020-03-19 02:14:50,784 synthtool > merge: .kokoro/presubmit/java8-osx.cfg 2020-03-19 02:14:50,785 synthtool > merge: .kokoro/presubmit/linkage-monitor.cfg 2020-03-19 02:14:50,785 synthtool > merge: .kokoro/continuous/samples.cfg 2020-03-19 02:14:50,785 synthtool > merge: .kokoro/continuous/integration.cfg 2020-03-19 02:14:50,785 synthtool > merge: .kokoro/continuous/java11.cfg 2020-03-19 02:14:50,786 synthtool > merge: .kokoro/continuous/java8-win.cfg 2020-03-19 02:14:50,786 synthtool > merge: .kokoro/continuous/dependencies.cfg 2020-03-19 02:14:50,786 synthtool > merge: .kokoro/continuous/java8.cfg 2020-03-19 02:14:50,787 synthtool > merge: .kokoro/continuous/java7.cfg 2020-03-19 02:14:50,787 synthtool > merge: .kokoro/continuous/common.cfg 2020-03-19 02:14:50,787 synthtool > merge: .kokoro/continuous/propose_release.cfg 2020-03-19 02:14:50,787 synthtool > merge: .kokoro/continuous/lint.cfg 2020-03-19 02:14:50,788 synthtool > merge: .kokoro/continuous/java8-osx.cfg 2020-03-19 02:14:50,788 synthtool > merge: .kokoro/nightly/samples.cfg 2020-03-19 02:14:50,788 synthtool > merge: .kokoro/nightly/integration.cfg 2020-03-19 02:14:50,788 synthtool > merge: .kokoro/nightly/java11.cfg 2020-03-19 02:14:50,789 synthtool > merge: .kokoro/nightly/java8-win.cfg 2020-03-19 02:14:50,789 synthtool > merge: .kokoro/nightly/dependencies.cfg 2020-03-19 02:14:50,789 synthtool > merge: .kokoro/nightly/java8.cfg 2020-03-19 02:14:50,790 synthtool > merge: .kokoro/nightly/java7.cfg 2020-03-19 02:14:50,790 synthtool > merge: .kokoro/nightly/common.cfg 2020-03-19 02:14:50,790 synthtool > merge: .kokoro/nightly/lint.cfg 2020-03-19 02:14:50,790 synthtool > merge: .kokoro/nightly/java8-osx.cfg 2020-03-19 02:14:50,791 synthtool > merge: .kokoro/release/common.sh 2020-03-19 02:14:50,791 synthtool > merge: .kokoro/release/drop.sh 2020-03-19 02:14:50,791 synthtool > merge: .kokoro/release/publish_javadoc.cfg 2020-03-19 02:14:50,791 synthtool > merge: .kokoro/release/bump_snapshot.cfg 2020-03-19 02:14:50,792 synthtool > merge: .kokoro/release/publish_javadoc.sh 2020-03-19 02:14:50,792 synthtool > merge: .kokoro/release/stage.sh 2020-03-19 02:14:50,792 synthtool > merge: .kokoro/release/common.cfg 2020-03-19 02:14:50,793 synthtool > merge: .kokoro/release/drop.cfg 2020-03-19 02:14:50,793 synthtool > merge: .kokoro/release/snapshot.sh 2020-03-19 02:14:50,793 synthtool > merge: .kokoro/release/stage.cfg 2020-03-19 02:14:50,793 synthtool > merge: .kokoro/release/promote.cfg 2020-03-19 02:14:50,794 synthtool > merge: .kokoro/release/promote.sh 2020-03-19 02:14:50,794 synthtool > merge: .kokoro/release/snapshot.cfg 2020-03-19 02:14:50,794 synthtool > merge: .github/PULL_REQUEST_TEMPLATE.md 2020-03-19 02:14:50,794 synthtool > merge: .github/trusted-contribution.yml 2020-03-19 02:14:50,795 synthtool > merge: .github/release-please.yml 2020-03-19 02:14:50,795 synthtool > merge: .github/ISSUE_TEMPLATE/feature_request.md 2020-03-19 02:14:50,795 synthtool > merge: .github/ISSUE_TEMPLATE/support_request.md 2020-03-19 02:14:50,796 synthtool > merge: .github/ISSUE_TEMPLATE/bug_report.md 2020-03-19 02:14:50,796 synthtool > merge: samples/pom.xml 2020-03-19 02:14:50,796 synthtool > existing pom file found (samples/pom.xml) - keeping the existing 2020-03-19 02:14:50,796 synthtool > merge: samples/snapshot/pom.xml 2020-03-19 02:14:50,796 synthtool > existing pom file found (samples/snapshot/pom.xml) - keeping the existing 2020-03-19 02:14:50,797 synthtool > merge: samples/snippets/pom.xml 2020-03-19 02:14:50,797 synthtool > existing pom file found (samples/snippets/pom.xml) - keeping the existing 2020-03-19 02:14:50,797 synthtool > merge: samples/install-without-bom/pom.xml 2020-03-19 02:14:50,797 synthtool > existing pom file found (samples/install-without-bom/pom.xml) - keeping the existing 2020-03-19 02:14:50,806 synthtool > Wrote metadata to synth.metadata. ```
--- README.md | 4 +++- synth.metadata | 8 ++++---- 2 files changed, 7 insertions(+), 5 deletions(-) diff --git a/README.md b/README.md index 6d93f936..a2589675 100644 --- a/README.md +++ b/README.md @@ -26,12 +26,13 @@ If you are using Maven with [BOM][libraries-bom], add this to your pom.xml file
+ com.google.cloud google-cloud-document-ai - + ``` [//]: # ({x-version-update-start:google-cloud-document-ai:released}) @@ -44,6 +45,7 @@ If you are using Maven without BOM, add this to your dependencies: google-cloud-document-ai 0.1.0
+ ``` If you are using Gradle, add this to your dependencies diff --git a/synth.metadata b/synth.metadata index e7080083..84ab4b96 100644 --- a/synth.metadata +++ b/synth.metadata @@ -1,5 +1,5 @@ { - "updateTime": "2020-03-18T22:16:26.376548Z", + "updateTime": "2020-03-19T09:14:50.805977Z", "sources": [ { "git": { @@ -14,15 +14,15 @@ "name": "googleapis", "remote": "https://github.com/googleapis/googleapis.git", "sha": "275fbcce2c900278d487c33293a3c7e1fbcd3a34", - "internalRef": "301661567", - "log": "275fbcce2c900278d487c33293a3c7e1fbcd3a34\nfeat: pubsub/v1 add an experimental filter field to Subscription\n\nPiperOrigin-RevId: 301661567\n\nf2b18cec51d27c999ad30011dba17f3965677e9c\nFix: UpdateBackupRequest.backup is a resource, not a resource reference - remove annotation.\n\nPiperOrigin-RevId: 301636171\n\n800384063ac93a0cac3a510d41726fa4b2cd4a83\nCloud Billing Budget API v1beta1\nModified api documentation to include warnings about the new filter field.\n\nPiperOrigin-RevId: 301634389\n\n0cc6c146b660db21f04056c3d58a4b752ee445e3\nCloud Billing Budget API v1alpha1\nModified api documentation to include warnings about the new filter field.\n\nPiperOrigin-RevId: 301630018\n\nff2ea00f69065585c3ac0993c8b582af3b6fc215\nFix: Add resource definition for a parent of InspectTemplate which was otherwise missing.\n\nPiperOrigin-RevId: 301623052\n\n55fa441c9daf03173910760191646399338f2b7c\nAdd proto definition for AccessLevel, AccessPolicy, and ServicePerimeter.\n\nPiperOrigin-RevId: 301620844\n\ne7b10591c5408a67cf14ffafa267556f3290e262\nCloud Bigtable Managed Backup service and message proto files.\n\nPiperOrigin-RevId: 301585144\n\nd8e226f702f8ddf92915128c9f4693b63fb8685d\nfeat: Add time-to-live in a queue for builds\n\nPiperOrigin-RevId: 301579876\n\n430375af011f8c7a5174884f0d0e539c6ffa7675\ndocs: add missing closing backtick\n\nPiperOrigin-RevId: 301538851\n\n0e9f1f60ded9ad1c2e725e37719112f5b487ab65\nbazel: Use latest release of gax_java\n\nPiperOrigin-RevId: 301480457\n\n5058c1c96d0ece7f5301a154cf5a07b2ad03a571\nUpdate GAPIC v2 with batching parameters for Logging API\n\nPiperOrigin-RevId: 301443847\n\n64ab9744073de81fec1b3a6a931befc8a90edf90\nFix: Introduce location-based organization/folder/billing-account resources\nChore: Update copyright years\n\nPiperOrigin-RevId: 301373760\n\n23d5f09e670ebb0c1b36214acf78704e2ecfc2ac\nUpdate field_behavior annotations in V1 and V2.\n\nPiperOrigin-RevId: 301337970\n\nb2cf37e7fd62383a811aa4d54d013ecae638851d\nData Catalog V1 API\n\nPiperOrigin-RevId: 301282503\n\n1976b9981e2900c8172b7d34b4220bdb18c5db42\nCloud DLP api update. Adds missing fields to Finding and adds support for hybrid jobs.\n\nPiperOrigin-RevId: 301205325\n\nae78682c05e864d71223ce22532219813b0245ac\nfix: several sample code blocks in comments are now properly indented for markdown\n\nPiperOrigin-RevId: 301185150\n\ndcd171d04bda5b67db13049320f97eca3ace3731\nPublish Media Translation API V1Beta1\n\nPiperOrigin-RevId: 301180096\n\nff1713453b0fbc5a7544a1ef6828c26ad21a370e\nAdd protos and BUILD rules for v1 API.\n\nPiperOrigin-RevId: 301179394\n\n" + "internalRef": "301661567" } }, { "git": { "name": "synthtool", "remote": "https://github.com/googleapis/synthtool.git", - "sha": "1326d00fa9e856aa6b244b6811404cf45b109119" + "sha": "bcad3e01b69851ad682a87f8202003a1683ad73a", + "log": "bcad3e01b69851ad682a87f8202003a1683ad73a\nfix(snippets): trim leading whitespace when extracting snippets (#449)\n\n* fix(snippets): trim leading whitespace when extracting snippets\n\n* docs: add docstring for _trim_leading_whitespace\nc73d13fb3fc69bb749f2f8005ee0db043d5903d3\ndocs: slight tweak to wording of contributing blurb in README (#446)\n\n\n" } } ], From 31f2652fd2270b04e162e0790e558cb30262720f Mon Sep 17 00:00:00 2001 From: WhiteSource Renovate Date: Mon, 23 Mar 2020 18:24:16 +0100 Subject: [PATCH 04/20] chore(deps): update dependency com.google.cloud:libraries-bom to v4.3.0 (#30) This PR contains the following updates: | Package | Update | Change | |---|---|---| | [com.google.cloud:libraries-bom](https://togithub.com/GoogleCloudPlatform/cloud-opensource-java) | minor | `4.2.0` -> `4.3.0` | --- ### Renovate configuration :date: **Schedule**: At any time (no schedule defined). :vertical_traffic_light: **Automerge**: Disabled by config. Please merge this manually once you are satisfied. :recycle: **Rebasing**: Whenever PR becomes conflicted, or you tick the rebase/retry checkbox. :no_bell: **Ignore**: Close this PR and you won't be reminded about this update again. --- - [ ] If you want to rebase/retry this PR, check this box --- This PR has been generated by [WhiteSource Renovate](https://renovate.whitesourcesoftware.com). View repository job log [here](https://app.renovatebot.com/dashboard#googleapis/java-document-ai). --- samples/snippets/pom.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/samples/snippets/pom.xml b/samples/snippets/pom.xml index b523dacc..c4f9f29d 100644 --- a/samples/snippets/pom.xml +++ b/samples/snippets/pom.xml @@ -30,7 +30,7 @@ com.google.cloud libraries-bom - 4.2.0 + 4.3.0 pom import From 1a173afebaac40beef7d7d785fea8a269e6ed1a2 Mon Sep 17 00:00:00 2001 From: Jeff Ching Date: Mon, 23 Mar 2020 21:06:11 -0700 Subject: [PATCH 05/20] chore: enable context aware commits (#32) --- synth.py | 2 ++ 1 file changed, 2 insertions(+) diff --git a/synth.py b/synth.py index d971d29e..bf34fe02 100644 --- a/synth.py +++ b/synth.py @@ -16,6 +16,8 @@ import synthtool.languages.java as java +AUTOSYNTH_MULTIPLE_COMMITS = True + service = 'documentai' versions = ['v1beta1', 'v1beta2'] From c559658a2148b88cb9bc944ec00caacb3bc3973c Mon Sep 17 00:00:00 2001 From: Yoshi Automation Bot Date: Tue, 24 Mar 2020 08:06:26 -0700 Subject: [PATCH 06/20] chore: regenerate README with libraries-bom 4.3.0 (#33) This PR was generated using Autosynth. :rainbow: Synth log will be available here: https://source.cloud.google.com/results/invocations/bb863392-42fe-4bf2-b21a-ed91e81fcbe2/targets --- README.md | 2 +- synth.metadata | 5 ++--- 2 files changed, 3 insertions(+), 4 deletions(-) diff --git a/README.md b/README.md index a2589675..8f2fe9a8 100644 --- a/README.md +++ b/README.md @@ -20,7 +20,7 @@ If you are using Maven with [BOM][libraries-bom], add this to your pom.xml file com.google.cloud libraries-bom - 4.2.0 + 4.3.0 pom import diff --git a/synth.metadata b/synth.metadata index 84ab4b96..3e2aab35 100644 --- a/synth.metadata +++ b/synth.metadata @@ -1,5 +1,5 @@ { - "updateTime": "2020-03-19T09:14:50.805977Z", + "updateTime": "2020-03-24T09:02:29.572218Z", "sources": [ { "git": { @@ -21,8 +21,7 @@ "git": { "name": "synthtool", "remote": "https://github.com/googleapis/synthtool.git", - "sha": "bcad3e01b69851ad682a87f8202003a1683ad73a", - "log": "bcad3e01b69851ad682a87f8202003a1683ad73a\nfix(snippets): trim leading whitespace when extracting snippets (#449)\n\n* fix(snippets): trim leading whitespace when extracting snippets\n\n* docs: add docstring for _trim_leading_whitespace\nc73d13fb3fc69bb749f2f8005ee0db043d5903d3\ndocs: slight tweak to wording of contributing blurb in README (#446)\n\n\n" + "sha": "bcad3e01b69851ad682a87f8202003a1683ad73a" } } ], From f0f7e6c309ba151cf14f616d39da043a6da1a80d Mon Sep 17 00:00:00 2001 From: Yoshi Automation Bot Date: Wed, 25 Mar 2020 08:57:53 -0700 Subject: [PATCH 07/20] chore: update common templates (#35) This PR was generated using Autosynth. :rainbow: Synth log will be available here: https://source.cloud.google.com/results/invocations/01397865-3755-4aac-90a2-8834d828363b/targets --- .kokoro/build.sh | 19 ++++++++++------ .kokoro/common.sh | 44 ++++++++++++++++++++++++++++++++++++++ .kokoro/dependencies.sh | 15 +++++++++---- .kokoro/linkage-monitor.sh | 22 +++++++++++++------ renovate.json | 3 ++- synth.metadata | 14 ++++++------ 6 files changed, 92 insertions(+), 25 deletions(-) create mode 100644 .kokoro/common.sh diff --git a/.kokoro/build.sh b/.kokoro/build.sh index e62d0321..ce220d5f 100755 --- a/.kokoro/build.sh +++ b/.kokoro/build.sh @@ -20,17 +20,22 @@ scriptDir=$(realpath $(dirname "${BASH_SOURCE[0]}")) ## cd to the parent directory, i.e. the root of the git repo cd ${scriptDir}/.. +# include common functions +source ${scriptDir}/common.sh + # Print out Java version java -version echo ${JOB_TYPE} -mvn install -B -V \ - -DskipTests=true \ - -Dclirr.skip=true \ - -Denforcer.skip=true \ - -Dmaven.javadoc.skip=true \ - -Dgcloud.download.skip=true \ - -T 1C +# attempt to install 3 times with exponential backoff (starting with 10 seconds) +retry_with_backoff 3 10 \ + mvn install -B -V \ + -DskipTests=true \ + -Dclirr.skip=true \ + -Denforcer.skip=true \ + -Dmaven.javadoc.skip=true \ + -Dgcloud.download.skip=true \ + -T 1C # if GOOGLE_APPLICATION_CREDIENTIALS is specified as a relative path prepend Kokoro root directory onto it if [[ ! -z "${GOOGLE_APPLICATION_CREDENTIALS}" && "${GOOGLE_APPLICATION_CREDENTIALS}" != /* ]]; then diff --git a/.kokoro/common.sh b/.kokoro/common.sh new file mode 100644 index 00000000..a3bbc5f6 --- /dev/null +++ b/.kokoro/common.sh @@ -0,0 +1,44 @@ +#!/bin/bash +# Copyright 2020 Google LLC +# +# Licensed under the Apache License, Version 2.0 (the "License"); +# you may not use this file except in compliance with the License. +# You may obtain a copy of the License at +# +# http://www.apache.org/licenses/LICENSE-2.0 +# +# Unless required by applicable law or agreed to in writing, software +# distributed under the License is distributed on an "AS IS" BASIS, +# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +# See the License for the specific language governing permissions and +# limitations under the License. + +# set -eo pipefail + +function retry_with_backoff { + attempts_left=$1 + sleep_seconds=$2 + shift 2 + command=$@ + + echo "${command}" + ${command} + exit_code=$? + + if [[ $exit_code == 0 ]] + then + return 0 + fi + + # failure + if [[ ${attempts_left} > 0 ]] + then + echo "failure (${exit_code}), sleeping ${sleep_seconds}..." + sleep ${sleep_seconds} + new_attempts=$((${attempts_left} - 1)) + new_sleep=$((${sleep_seconds} * 2)) + retry_with_backoff ${new_attempts} ${new_sleep} ${command} + fi + + return $exit_code +} diff --git a/.kokoro/dependencies.sh b/.kokoro/dependencies.sh index f326e3cd..0aade871 100755 --- a/.kokoro/dependencies.sh +++ b/.kokoro/dependencies.sh @@ -15,7 +15,13 @@ set -eo pipefail -cd github/java-document-ai/ +## Get the directory of the build script +scriptDir=$(realpath $(dirname "${BASH_SOURCE[0]}")) +## cd to the parent directory, i.e. the root of the git repo +cd ${scriptDir}/.. + +# include common functions +source ${scriptDir}/common.sh # Print out Java java -version @@ -24,8 +30,9 @@ echo $JOB_TYPE export MAVEN_OPTS="-Xmx1024m -XX:MaxPermSize=128m" # this should run maven enforcer -mvn install -B -V \ - -DskipTests=true \ - -Dclirr.skip=true +retry_with_backoff 3 10 \ + mvn install -B -V \ + -DskipTests=true \ + -Dclirr.skip=true mvn -B dependency:analyze -DfailOnWarning=true diff --git a/.kokoro/linkage-monitor.sh b/.kokoro/linkage-monitor.sh index 34e98e92..759ab4e2 100755 --- a/.kokoro/linkage-monitor.sh +++ b/.kokoro/linkage-monitor.sh @@ -17,18 +17,26 @@ set -eo pipefail # Display commands being run. set -x -cd github/java-document-ai/ +## Get the directory of the build script +scriptDir=$(realpath $(dirname "${BASH_SOURCE[0]}")) +## cd to the parent directory, i.e. the root of the git repo +cd ${scriptDir}/.. + +# include common functions +source ${scriptDir}/common.sh # Print out Java version java -version echo ${JOB_TYPE} -mvn install -B -V \ - -DskipTests=true \ - -Dclirr.skip=true \ - -Denforcer.skip=true \ - -Dmaven.javadoc.skip=true \ - -Dgcloud.download.skip=true +# attempt to install 3 times with exponential backoff (starting with 10 seconds) +retry_with_backoff 3 10 \ + mvn install -B -V \ + -DskipTests=true \ + -Dclirr.skip=true \ + -Denforcer.skip=true \ + -Dmaven.javadoc.skip=true \ + -Dgcloud.download.skip=true # Kokoro job cloud-opensource-java/ubuntu/linkage-monitor-gcs creates this JAR JAR=linkage-monitor-latest-all-deps.jar diff --git a/renovate.json b/renovate.json index fc641270..3ee3febf 100644 --- a/renovate.json +++ b/renovate.json @@ -56,6 +56,7 @@ }, { "packagePatterns": [ + "^com.google.cloud:google-cloud-document-ai", "^com.google.cloud:libraries-bom" ], "semanticCommitType": "chore", @@ -75,4 +76,4 @@ } ], "semanticCommits": true -} +} \ No newline at end of file diff --git a/synth.metadata b/synth.metadata index 3e2aab35..5e8c83e0 100644 --- a/synth.metadata +++ b/synth.metadata @@ -1,27 +1,29 @@ { - "updateTime": "2020-03-24T09:02:29.572218Z", + "updateTime": "2020-03-25T09:50:37.415220Z", "sources": [ { "git": { "name": "googleapis", "remote": "https://github.com/googleapis/googleapis.git", - "sha": "275fbcce2c900278d487c33293a3c7e1fbcd3a34", - "internalRef": "301661567" + "sha": "551cf1e6e3addcc63740427c4f9b40dedd3dac27", + "internalRef": "302792195" } }, { "git": { "name": "googleapis", "remote": "https://github.com/googleapis/googleapis.git", - "sha": "275fbcce2c900278d487c33293a3c7e1fbcd3a34", - "internalRef": "301661567" + "sha": "551cf1e6e3addcc63740427c4f9b40dedd3dac27", + "internalRef": "302792195", + "log": "551cf1e6e3addcc63740427c4f9b40dedd3dac27\nfeat: Add OS Config AgentEndpointService v1 PatchJobs and Tasks APIs.\n\nPiperOrigin-RevId: 302792195\n\n1df117114c73299b614dfd3ba3632bf246669336\nSynchronize new proto/yaml changes.\n\nPiperOrigin-RevId: 302753982\n\n71d6c56a14bb433beb1237dccb48dabcd9597924\nRefresh monitoring client libraries.\nRename to Cloud Monitoring API.\nAdded support for TimeSeriesQueryLanguageCondition condition type in alert policies.\n\nPiperOrigin-RevId: 302735422\n\n25a1781c096974df99d556cc5888fefa82bc6425\nbazel: migrate all go_gapic_library targets to microgenerator implementation\n\n* update rules_go and gazelle bazel dependencies\n* update gapic-generator bazel dependency (with build file generator changes)\n\nPiperOrigin-RevId: 302730217\n\n36c0febd0fa7267ab66d14408eec2afd1b6bec4e\nUpdate GAPIC configurations to v2 .yaml.\n\nPiperOrigin-RevId: 302639621\n\n078f222366ed344509a48f2f084944ef61476613\nFix containeranalysis v1beta1 assembly target name\n\nPiperOrigin-RevId: 302529186\n\n0be7105dc52590fa9a24e784052298ae37ce53aa\nAdd BUILD.bazel file to asset/v1p1beta1\n\nPiperOrigin-RevId: 302154871\n\n6c248fd13e8543f8d22cbf118d978301a9fbe2a8\nAdd missing resource annotations and additional_bindings to dialogflow v2 API.\n\nPiperOrigin-RevId: 302063117\n\n9a3a7f33be9eeacf7b3e98435816b7022d206bd7\nChange the service name from \"chromeos-moblab.googleapis.com\" to \"chromeosmoblab.googleapis.com\"\n\nPiperOrigin-RevId: 302060989\n\n98a339237577e3de26cb4921f75fb5c57cc7a19f\nfeat: devtools/build/v1 publish client library config annotations\n\n* add details field to some of the BuildEvents\n* add final_invocation_id and build_tool_exit_code fields to BuildStatus\n\nPiperOrigin-RevId: 302044087\n\ncfabc98c6bbbb22d1aeaf7612179c0be193b3a13\nfeat: home/graph/v1 publish client library config annotations & comment updates\n\nThis change includes adding the client library configuration annotations, updated proto comments, and some client library configuration files.\n\nPiperOrigin-RevId: 302042647\n\nc8c8c0bd15d082db9546253dbaad1087c7a9782c\nchore: use latest gapic-generator in bazel WORKSPACE.\nincluding the following commits from gapic-generator:\n- feat: take source protos in all sub-packages (#3144)\n\nPiperOrigin-RevId: 301843591\n\ne4daf5202ea31cb2cb6916fdbfa9d6bd771aeb4c\nAdd bazel file for v1 client lib generation\n\nPiperOrigin-RevId: 301802926\n\n" } }, { "git": { "name": "synthtool", "remote": "https://github.com/googleapis/synthtool.git", - "sha": "bcad3e01b69851ad682a87f8202003a1683ad73a" + "sha": "ee4330a0e5f4b93978e8683fbda8e6d4148326b7", + "log": "ee4330a0e5f4b93978e8683fbda8e6d4148326b7\nchore(java_templates): mark version bumps of current library as a chore (#452)\n\nWith the samples/install-without-bom/pom.xml referencing the latest released library, we want to mark updates of this version as a chore for renovate bot.\na0d3133a5d45544a66345059eebf76933265c099\nfix(java): run mvn install with retry (#453)\n\n* fix(java): run mvn install with retry\n\n* fix invocation of command\n6a17abc7652e2fe563e1288c6e8c23fc260dda97\ndocs: document the release schedule we follow (#454)\n\n\n7e98e1609c91082f4eeb63b530c6468aefd18cfd\nbuild: use checkout@v2, not v1, as this allows manual re-running of tests (#451)\n\nhttps://github.com/actions/checkout/issues/23\n" } } ], From 6d121c6d68f9f7e6c58d3cedacb055d59a7a3135 Mon Sep 17 00:00:00 2001 From: Yoshi Automation Bot Date: Wed, 25 Mar 2020 12:46:57 -0700 Subject: [PATCH 08/20] chore: update renovate config for shared samples parent (#36) This PR was generated using Autosynth. :rainbow: Synth log will be available here: https://source.cloud.google.com/results/invocations/8dc67c4c-b602-45d4-bcb1-8c58b15f5c34/targets --- renovate.json | 3 ++- synth.metadata | 16 ++++++++-------- 2 files changed, 10 insertions(+), 9 deletions(-) diff --git a/renovate.json b/renovate.json index 3ee3febf..a2c16888 100644 --- a/renovate.json +++ b/renovate.json @@ -57,7 +57,8 @@ { "packagePatterns": [ "^com.google.cloud:google-cloud-document-ai", - "^com.google.cloud:libraries-bom" + "^com.google.cloud:libraries-bom", + "^com.google.cloud.samples:shared-configuration" ], "semanticCommitType": "chore", "semanticCommitScope": "deps" diff --git a/synth.metadata b/synth.metadata index 5e8c83e0..e034daad 100644 --- a/synth.metadata +++ b/synth.metadata @@ -1,29 +1,29 @@ { - "updateTime": "2020-03-25T09:50:37.415220Z", + "updateTime": "2020-03-25T17:30:42.861503Z", "sources": [ { "git": { "name": "googleapis", "remote": "https://github.com/googleapis/googleapis.git", - "sha": "551cf1e6e3addcc63740427c4f9b40dedd3dac27", - "internalRef": "302792195" + "sha": "fd83ab212176a1042e8d45ea90766b3bf59ac679", + "internalRef": "302913609" } }, { "git": { "name": "googleapis", "remote": "https://github.com/googleapis/googleapis.git", - "sha": "551cf1e6e3addcc63740427c4f9b40dedd3dac27", - "internalRef": "302792195", - "log": "551cf1e6e3addcc63740427c4f9b40dedd3dac27\nfeat: Add OS Config AgentEndpointService v1 PatchJobs and Tasks APIs.\n\nPiperOrigin-RevId: 302792195\n\n1df117114c73299b614dfd3ba3632bf246669336\nSynchronize new proto/yaml changes.\n\nPiperOrigin-RevId: 302753982\n\n71d6c56a14bb433beb1237dccb48dabcd9597924\nRefresh monitoring client libraries.\nRename to Cloud Monitoring API.\nAdded support for TimeSeriesQueryLanguageCondition condition type in alert policies.\n\nPiperOrigin-RevId: 302735422\n\n25a1781c096974df99d556cc5888fefa82bc6425\nbazel: migrate all go_gapic_library targets to microgenerator implementation\n\n* update rules_go and gazelle bazel dependencies\n* update gapic-generator bazel dependency (with build file generator changes)\n\nPiperOrigin-RevId: 302730217\n\n36c0febd0fa7267ab66d14408eec2afd1b6bec4e\nUpdate GAPIC configurations to v2 .yaml.\n\nPiperOrigin-RevId: 302639621\n\n078f222366ed344509a48f2f084944ef61476613\nFix containeranalysis v1beta1 assembly target name\n\nPiperOrigin-RevId: 302529186\n\n0be7105dc52590fa9a24e784052298ae37ce53aa\nAdd BUILD.bazel file to asset/v1p1beta1\n\nPiperOrigin-RevId: 302154871\n\n6c248fd13e8543f8d22cbf118d978301a9fbe2a8\nAdd missing resource annotations and additional_bindings to dialogflow v2 API.\n\nPiperOrigin-RevId: 302063117\n\n9a3a7f33be9eeacf7b3e98435816b7022d206bd7\nChange the service name from \"chromeos-moblab.googleapis.com\" to \"chromeosmoblab.googleapis.com\"\n\nPiperOrigin-RevId: 302060989\n\n98a339237577e3de26cb4921f75fb5c57cc7a19f\nfeat: devtools/build/v1 publish client library config annotations\n\n* add details field to some of the BuildEvents\n* add final_invocation_id and build_tool_exit_code fields to BuildStatus\n\nPiperOrigin-RevId: 302044087\n\ncfabc98c6bbbb22d1aeaf7612179c0be193b3a13\nfeat: home/graph/v1 publish client library config annotations & comment updates\n\nThis change includes adding the client library configuration annotations, updated proto comments, and some client library configuration files.\n\nPiperOrigin-RevId: 302042647\n\nc8c8c0bd15d082db9546253dbaad1087c7a9782c\nchore: use latest gapic-generator in bazel WORKSPACE.\nincluding the following commits from gapic-generator:\n- feat: take source protos in all sub-packages (#3144)\n\nPiperOrigin-RevId: 301843591\n\ne4daf5202ea31cb2cb6916fdbfa9d6bd771aeb4c\nAdd bazel file for v1 client lib generation\n\nPiperOrigin-RevId: 301802926\n\n" + "sha": "fd83ab212176a1042e8d45ea90766b3bf59ac679", + "internalRef": "302913609", + "log": "fd83ab212176a1042e8d45ea90766b3bf59ac679\nfix: migrate osconfig/agentendpoint/v1 go_gapic_library target to microgen impl\n\nPiperOrigin-RevId: 302913609\n\n0e07113e776bdd8fcc0783372e08bb6e76cb1b5b\ndocs: Update documentation with links to smart home developer guides and reference pages. Remove outdated authorization instructions.\n\nPiperOrigin-RevId: 302892245\n\n" } }, { "git": { "name": "synthtool", "remote": "https://github.com/googleapis/synthtool.git", - "sha": "ee4330a0e5f4b93978e8683fbda8e6d4148326b7", - "log": "ee4330a0e5f4b93978e8683fbda8e6d4148326b7\nchore(java_templates): mark version bumps of current library as a chore (#452)\n\nWith the samples/install-without-bom/pom.xml referencing the latest released library, we want to mark updates of this version as a chore for renovate bot.\na0d3133a5d45544a66345059eebf76933265c099\nfix(java): run mvn install with retry (#453)\n\n* fix(java): run mvn install with retry\n\n* fix invocation of command\n6a17abc7652e2fe563e1288c6e8c23fc260dda97\ndocs: document the release schedule we follow (#454)\n\n\n7e98e1609c91082f4eeb63b530c6468aefd18cfd\nbuild: use checkout@v2, not v1, as this allows manual re-running of tests (#451)\n\nhttps://github.com/actions/checkout/issues/23\n" + "sha": "e36822bfa0acb355502dab391b8ef9c4f30208d8", + "log": "e36822bfa0acb355502dab391b8ef9c4f30208d8\nchore(java): treat samples shared configuration dependency update as chore (#457)\n\n\n1b4cc80a7aaf164f6241937dd87f3bd1f4149e0c\nfix: do not run node 8 CI (#456)\n\n\n" } } ], From 11ff5645f040151cc13e07eb208206d4e111eb01 Mon Sep 17 00:00:00 2001 From: WhiteSource Renovate Date: Wed, 25 Mar 2020 20:52:53 +0100 Subject: [PATCH 09/20] chore(deps): update dependency com.google.cloud.samples:shared-configuration to v1.0.13 (#34) This PR contains the following updates: | Package | Update | Change | |---|---|---| | [com.google.cloud.samples:shared-configuration](https://togithub.com/GoogleCloudPlatform/java-repo-tools) | patch | `1.0.12` -> `1.0.13` | --- ### Release Notes
GoogleCloudPlatform/java-repo-tools ### [`v1.0.13`](https://togithub.com/GoogleCloudPlatform/java-repo-tools/releases/v1.0.13) [Compare Source](https://togithub.com/GoogleCloudPlatform/java-repo-tools/compare/v1.0.12...v1.0.13) Fix some issues w/ Checkstyle configuration. We left the option to turn it off out.
--- ### Renovate configuration :date: **Schedule**: At any time (no schedule defined). :vertical_traffic_light: **Automerge**: Disabled by config. Please merge this manually once you are satisfied. :recycle: **Rebasing**: Whenever PR becomes conflicted, or you tick the rebase/retry checkbox. :no_bell: **Ignore**: Close this PR and you won't be reminded about this update again. --- - [ ] If you want to rebase/retry this PR, check this box --- This PR has been generated by [WhiteSource Renovate](https://renovate.whitesourcesoftware.com). View repository job log [here](https://app.renovatebot.com/dashboard#googleapis/java-document-ai). --- samples/install-without-bom/pom.xml | 2 +- samples/pom.xml | 2 +- samples/snapshot/pom.xml | 2 +- samples/snippets/pom.xml | 2 +- 4 files changed, 4 insertions(+), 4 deletions(-) diff --git a/samples/install-without-bom/pom.xml b/samples/install-without-bom/pom.xml index 35948a6b..c9388fb1 100644 --- a/samples/install-without-bom/pom.xml +++ b/samples/install-without-bom/pom.xml @@ -14,7 +14,7 @@ com.google.cloud.samples shared-configuration - 1.0.12 + 1.0.13 diff --git a/samples/pom.xml b/samples/pom.xml index 5278f4e4..faf8ecfb 100644 --- a/samples/pom.xml +++ b/samples/pom.xml @@ -18,7 +18,7 @@ com.google.cloud.samples shared-configuration - 1.0.12 + 1.0.13 diff --git a/samples/snapshot/pom.xml b/samples/snapshot/pom.xml index 290da858..a1a5ab57 100644 --- a/samples/snapshot/pom.xml +++ b/samples/snapshot/pom.xml @@ -14,7 +14,7 @@ com.google.cloud.samples shared-configuration - 1.0.12 + 1.0.13 diff --git a/samples/snippets/pom.xml b/samples/snippets/pom.xml index c4f9f29d..d56d53ed 100644 --- a/samples/snippets/pom.xml +++ b/samples/snippets/pom.xml @@ -14,7 +14,7 @@ com.google.cloud.samples shared-configuration - 1.0.12 + 1.0.13 From ec3b6cc5f7b424350d3e79ed478a2a4e7d537124 Mon Sep 17 00:00:00 2001 From: WhiteSource Renovate Date: Thu, 26 Mar 2020 00:22:49 +0100 Subject: [PATCH 10/20] deps: update dependency com.google.api:api-common to v1.9.0 (#37) This PR contains the following updates: | Package | Update | Change | |---|---|---| | [com.google.api:api-common](https://togithub.com/googleapis/api-common-java) | minor | `1.8.1` -> `1.9.0` | --- ### Release Notes
googleapis/api-common-java ### [`v1.9.0`](https://togithub.com/googleapis/api-common-java/releases/v1.9.0) [Compare Source](https://togithub.com/googleapis/api-common-java/compare/v1.8.1...v1.9.0) 03-25-2020 14:09 PST #### New Features - Add `@BetaApi` `ApiFutres.catchingAsync()` ([#​117](https://togithub.com/googleapis/api-common-java/pull/117)) ##### Dependencies - Update guava to v28.2-android ([#​110](https://togithub.com/googleapis/api-common-java/pull/110)) - Update error_prone_annotations to v2.2.3 ([#​111](https://togithub.com/googleapis/api-common-java/pull/111))
--- ### Renovate configuration :date: **Schedule**: At any time (no schedule defined). :vertical_traffic_light: **Automerge**: Disabled by config. Please merge this manually once you are satisfied. :recycle: **Rebasing**: Whenever PR becomes conflicted, or you tick the rebase/retry checkbox. :no_bell: **Ignore**: Close this PR and you won't be reminded about this update again. --- - [ ] If you want to rebase/retry this PR, check this box --- This PR has been generated by [WhiteSource Renovate](https://renovate.whitesourcesoftware.com). View repository job log [here](https://app.renovatebot.com/dashboard#googleapis/java-document-ai). --- pom.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pom.xml b/pom.xml index e743da6d..bab2edc1 100644 --- a/pom.xml +++ b/pom.xml @@ -64,7 +64,7 @@ github google-cloud-document-ai-parent 1.93.2 - 1.8.1 + 1.9.0 1.17.0 1.54.0 1.27.2 From 8d580dd19dc10c9f9ff6ea8c8aa7bdc0127eec6f Mon Sep 17 00:00:00 2001 From: WhiteSource Renovate Date: Mon, 30 Mar 2020 19:58:40 +0200 Subject: [PATCH 11/20] chore(deps): update dependency com.google.cloud.samples:shared-configuration to v1.0.14 (#39) This PR contains the following updates: | Package | Update | Change | |---|---|---| | [com.google.cloud.samples:shared-configuration](https://togithub.com/GoogleCloudPlatform/java-repo-tools) | patch | `1.0.13` -> `1.0.14` | --- ### Release Notes
GoogleCloudPlatform/java-repo-tools ### [`v1.0.14`](https://togithub.com/GoogleCloudPlatform/java-repo-tools/releases/v1.0.14) [Compare Source](https://togithub.com/GoogleCloudPlatform/java-repo-tools/compare/v1.0.13...v1.0.14) - Update CheckStyle to 8.31 - Add SpotBugs
--- ### Renovate configuration :date: **Schedule**: At any time (no schedule defined). :vertical_traffic_light: **Automerge**: Disabled by config. Please merge this manually once you are satisfied. :recycle: **Rebasing**: Whenever PR becomes conflicted, or you tick the rebase/retry checkbox. :no_bell: **Ignore**: Close this PR and you won't be reminded about this update again. --- - [ ] If you want to rebase/retry this PR, check this box --- This PR has been generated by [WhiteSource Renovate](https://renovate.whitesourcesoftware.com). View repository job log [here](https://app.renovatebot.com/dashboard#googleapis/java-document-ai). --- samples/install-without-bom/pom.xml | 2 +- samples/pom.xml | 2 +- samples/snapshot/pom.xml | 2 +- samples/snippets/pom.xml | 2 +- 4 files changed, 4 insertions(+), 4 deletions(-) diff --git a/samples/install-without-bom/pom.xml b/samples/install-without-bom/pom.xml index c9388fb1..2110cc11 100644 --- a/samples/install-without-bom/pom.xml +++ b/samples/install-without-bom/pom.xml @@ -14,7 +14,7 @@ com.google.cloud.samples shared-configuration - 1.0.13 + 1.0.14 diff --git a/samples/pom.xml b/samples/pom.xml index faf8ecfb..68e318a7 100644 --- a/samples/pom.xml +++ b/samples/pom.xml @@ -18,7 +18,7 @@ com.google.cloud.samples shared-configuration - 1.0.13 + 1.0.14 diff --git a/samples/snapshot/pom.xml b/samples/snapshot/pom.xml index a1a5ab57..b93fe9ef 100644 --- a/samples/snapshot/pom.xml +++ b/samples/snapshot/pom.xml @@ -14,7 +14,7 @@ com.google.cloud.samples shared-configuration - 1.0.13 + 1.0.14 diff --git a/samples/snippets/pom.xml b/samples/snippets/pom.xml index d56d53ed..af2668c6 100644 --- a/samples/snippets/pom.xml +++ b/samples/snippets/pom.xml @@ -14,7 +14,7 @@ com.google.cloud.samples shared-configuration - 1.0.13 + 1.0.14 From ac92c7c1c3b69268a5b530e514974f1679977292 Mon Sep 17 00:00:00 2001 From: WhiteSource Renovate Date: Wed, 1 Apr 2020 21:36:52 +0200 Subject: [PATCH 12/20] chore(deps): update dependency com.google.cloud:libraries-bom to v4.4.0 (#40) This PR contains the following updates: | Package | Update | Change | |---|---|---| | [com.google.cloud:libraries-bom](https://togithub.com/GoogleCloudPlatform/cloud-opensource-java) | minor | `4.3.0` -> `4.4.0` | --- ### Renovate configuration :date: **Schedule**: At any time (no schedule defined). :vertical_traffic_light: **Automerge**: Disabled by config. Please merge this manually once you are satisfied. :recycle: **Rebasing**: Whenever PR becomes conflicted, or you tick the rebase/retry checkbox. :no_bell: **Ignore**: Close this PR and you won't be reminded about this update again. --- - [ ] If you want to rebase/retry this PR, check this box --- This PR has been generated by [WhiteSource Renovate](https://renovate.whitesourcesoftware.com). View repository job log [here](https://app.renovatebot.com/dashboard#googleapis/java-document-ai). --- samples/snippets/pom.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/samples/snippets/pom.xml b/samples/snippets/pom.xml index af2668c6..2aca32ea 100644 --- a/samples/snippets/pom.xml +++ b/samples/snippets/pom.xml @@ -30,7 +30,7 @@ com.google.cloud libraries-bom - 4.3.0 + 4.4.0 pom import From 5244424f217ed31e5a86086196c8027257c0a6da Mon Sep 17 00:00:00 2001 From: Yoshi Automation Bot Date: Thu, 2 Apr 2020 12:25:58 -0700 Subject: [PATCH 13/20] chore: update libraries-bom to 4.4.0 (#41) This PR was generated using Autosynth. :rainbow: Synth log will be available here: https://source.cloud.google.com/results/invocations/46cdbcfa-1e99-4e4f-be05-90f447630a24/targets --- README.md | 2 +- synth.metadata | 8 +++----- 2 files changed, 4 insertions(+), 6 deletions(-) diff --git a/README.md b/README.md index 8f2fe9a8..3de56c9e 100644 --- a/README.md +++ b/README.md @@ -20,7 +20,7 @@ If you are using Maven with [BOM][libraries-bom], add this to your pom.xml file com.google.cloud libraries-bom - 4.3.0 + 4.4.0 pom import diff --git a/synth.metadata b/synth.metadata index e034daad..7278a934 100644 --- a/synth.metadata +++ b/synth.metadata @@ -1,5 +1,5 @@ { - "updateTime": "2020-03-25T17:30:42.861503Z", + "updateTime": "2020-04-01T22:50:06.763039Z", "sources": [ { "git": { @@ -14,16 +14,14 @@ "name": "googleapis", "remote": "https://github.com/googleapis/googleapis.git", "sha": "fd83ab212176a1042e8d45ea90766b3bf59ac679", - "internalRef": "302913609", - "log": "fd83ab212176a1042e8d45ea90766b3bf59ac679\nfix: migrate osconfig/agentendpoint/v1 go_gapic_library target to microgen impl\n\nPiperOrigin-RevId: 302913609\n\n0e07113e776bdd8fcc0783372e08bb6e76cb1b5b\ndocs: Update documentation with links to smart home developer guides and reference pages. Remove outdated authorization instructions.\n\nPiperOrigin-RevId: 302892245\n\n" + "internalRef": "302913609" } }, { "git": { "name": "synthtool", "remote": "https://github.com/googleapis/synthtool.git", - "sha": "e36822bfa0acb355502dab391b8ef9c4f30208d8", - "log": "e36822bfa0acb355502dab391b8ef9c4f30208d8\nchore(java): treat samples shared configuration dependency update as chore (#457)\n\n\n1b4cc80a7aaf164f6241937dd87f3bd1f4149e0c\nfix: do not run node 8 CI (#456)\n\n\n" + "sha": "e36822bfa0acb355502dab391b8ef9c4f30208d8" } } ], From ef0ed8442c129cfc453acc81770b7b084e363529 Mon Sep 17 00:00:00 2001 From: WhiteSource Renovate Date: Mon, 6 Apr 2020 17:50:48 +0200 Subject: [PATCH 14/20] chore(deps): update dependency com.google.cloud.samples:shared-configuration to v1.0.15 (#43) This PR contains the following updates: | Package | Update | Change | |---|---|---| | [com.google.cloud.samples:shared-configuration](https://togithub.com/GoogleCloudPlatform/java-repo-tools) | patch | `1.0.14` -> `1.0.15` | --- ### Release Notes
GoogleCloudPlatform/java-repo-tools ### [`v1.0.15`](https://togithub.com/GoogleCloudPlatform/java-repo-tools/releases/v1.0.15) [Compare Source](https://togithub.com/GoogleCloudPlatform/java-repo-tools/compare/v1.0.14...v1.0.15) - Move some stuff around (in prep for a change to release process) pom.xml's - Add an exclude filter for SpotBugs. (disable the Java 11 surprise) - Don't fail on SpotBugs issues for now - add PMD reporting - Don't fail on PMD issues for now.
--- ### Renovate configuration :date: **Schedule**: At any time (no schedule defined). :vertical_traffic_light: **Automerge**: Disabled by config. Please merge this manually once you are satisfied. :recycle: **Rebasing**: Whenever PR becomes conflicted, or you tick the rebase/retry checkbox. :no_bell: **Ignore**: Close this PR and you won't be reminded about this update again. --- - [ ] If you want to rebase/retry this PR, check this box --- This PR has been generated by [WhiteSource Renovate](https://renovate.whitesourcesoftware.com). View repository job log [here](https://app.renovatebot.com/dashboard#googleapis/java-document-ai). --- samples/install-without-bom/pom.xml | 2 +- samples/pom.xml | 2 +- samples/snapshot/pom.xml | 2 +- samples/snippets/pom.xml | 2 +- 4 files changed, 4 insertions(+), 4 deletions(-) diff --git a/samples/install-without-bom/pom.xml b/samples/install-without-bom/pom.xml index 2110cc11..40730740 100644 --- a/samples/install-without-bom/pom.xml +++ b/samples/install-without-bom/pom.xml @@ -14,7 +14,7 @@ com.google.cloud.samples shared-configuration - 1.0.14 + 1.0.15 diff --git a/samples/pom.xml b/samples/pom.xml index 68e318a7..482ae29b 100644 --- a/samples/pom.xml +++ b/samples/pom.xml @@ -18,7 +18,7 @@ com.google.cloud.samples shared-configuration - 1.0.14 + 1.0.15 diff --git a/samples/snapshot/pom.xml b/samples/snapshot/pom.xml index b93fe9ef..2616b48d 100644 --- a/samples/snapshot/pom.xml +++ b/samples/snapshot/pom.xml @@ -14,7 +14,7 @@ com.google.cloud.samples shared-configuration - 1.0.14 + 1.0.15 diff --git a/samples/snippets/pom.xml b/samples/snippets/pom.xml index 2aca32ea..21a14542 100644 --- a/samples/snippets/pom.xml +++ b/samples/snippets/pom.xml @@ -14,7 +14,7 @@ com.google.cloud.samples shared-configuration - 1.0.14 + 1.0.15 From ec5707332800e82aef0735b17451a7c555e4fa92 Mon Sep 17 00:00:00 2001 From: WhiteSource Renovate Date: Mon, 6 Apr 2020 18:36:49 +0200 Subject: [PATCH 15/20] deps: update dependency org.threeten:threetenbp to v1.4.3 (#29) This PR contains the following updates: | Package | Update | Change | |---|---|---| | [org.threeten:threetenbp](https://www.threeten.org/threetenbp) ([source](https://togithub.com/ThreeTen/threetenbp)) | patch | `1.4.1` -> `1.4.3` | --- ### Release Notes
ThreeTen/threetenbp ### [`v1.4.3`](https://togithub.com/ThreeTen/threetenbp/releases/v1.4.3) [Compare Source](https://togithub.com/ThreeTen/threetenbp/compare/v1.4.2...v1.4.3) See the [change notes](https://www.threeten.org/threetenbp/changes-report.html) for more information. ### [`v1.4.2`](https://togithub.com/ThreeTen/threetenbp/releases/v1.4.2) [Compare Source](https://togithub.com/ThreeTen/threetenbp/compare/v1.4.1...v1.4.2) See the [change notes](https://www.threeten.org/threetenbp/changes-report.html) for more information.
--- ### Renovate configuration :date: **Schedule**: At any time (no schedule defined). :vertical_traffic_light: **Automerge**: Disabled by config. Please merge this manually once you are satisfied. :recycle: **Rebasing**: Whenever PR becomes conflicted, or you tick the rebase/retry checkbox. :no_bell: **Ignore**: Close this PR and you won't be reminded about this update again. --- - [ ] If you want to rebase/retry this PR, check this box --- This PR has been generated by [WhiteSource Renovate](https://renovate.whitesourcesoftware.com). View repository job log [here](https://app.renovatebot.com/dashboard#googleapis/java-document-ai). --- pom.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pom.xml b/pom.xml index bab2edc1..66df3b6d 100644 --- a/pom.xml +++ b/pom.xml @@ -71,7 +71,7 @@ 3.11.4 4.13 28.2-android - 1.4.1 + 1.4.3 1.3.2 1.18
From 1b928a1de50f8a8ba141d4c8492cfeda7a3b6c80 Mon Sep 17 00:00:00 2001 From: Yoshi Automation Bot Date: Mon, 6 Apr 2020 12:48:12 -0700 Subject: [PATCH 16/20] fix(v1beta2): set default endpoint to us-documentai.googleapis.com (#44) https://github.com/googleapis/googleapis/commit/d6cb4997910eda04c0c66c0f2fd043eeaa0f660d commit d6cb4997910eda04c0c66c0f2fd043eeaa0f660d Author: Google APIs Date: Fri Apr 3 17:33:05 2020 -0700 chore: enable gapic v2 and proto annotation for documentai API. committer @summer-ji-eng PiperOrigin-RevId: 304724866 --- .../DocumentUnderstandingServiceClient.java | 15 ++++++++++++--- .../DocumentUnderstandingServiceSettings.java | 2 +- .../cloud/documentai/v1beta2/package-info.java | 5 ++++- .../DocumentUnderstandingServiceStubSettings.java | 10 +++++----- .../DocumentUnderstandingServiceClientTest.java | 9 +++++++-- synth.metadata | 11 ++++++----- 6 files changed, 35 insertions(+), 17 deletions(-) diff --git a/google-cloud-document-ai/src/main/java/com/google/cloud/documentai/v1beta2/DocumentUnderstandingServiceClient.java b/google-cloud-document-ai/src/main/java/com/google/cloud/documentai/v1beta2/DocumentUnderstandingServiceClient.java index a3111385..33dc230e 100644 --- a/google-cloud-document-ai/src/main/java/com/google/cloud/documentai/v1beta2/DocumentUnderstandingServiceClient.java +++ b/google-cloud-document-ai/src/main/java/com/google/cloud/documentai/v1beta2/DocumentUnderstandingServiceClient.java @@ -41,7 +41,10 @@ *
  * 
  * try (DocumentUnderstandingServiceClient documentUnderstandingServiceClient = DocumentUnderstandingServiceClient.create()) {
- *   ProcessDocumentRequest request = ProcessDocumentRequest.newBuilder().build();
+ *   InputConfig inputConfig = InputConfig.newBuilder().build();
+ *   ProcessDocumentRequest request = ProcessDocumentRequest.newBuilder()
+ *     .setInputConfig(inputConfig)
+ *     .build();
  *   Document response = documentUnderstandingServiceClient.processDocument(request);
  * }
  * 
@@ -280,7 +283,10 @@ public final OperationsClient getOperationsClient() {
    *
    * 

    * try (DocumentUnderstandingServiceClient documentUnderstandingServiceClient = DocumentUnderstandingServiceClient.create()) {
-   *   ProcessDocumentRequest request = ProcessDocumentRequest.newBuilder().build();
+   *   InputConfig inputConfig = InputConfig.newBuilder().build();
+   *   ProcessDocumentRequest request = ProcessDocumentRequest.newBuilder()
+   *     .setInputConfig(inputConfig)
+   *     .build();
    *   Document response = documentUnderstandingServiceClient.processDocument(request);
    * }
    * 
@@ -300,7 +306,10 @@ public final Document processDocument(ProcessDocumentRequest request) { * *

    * try (DocumentUnderstandingServiceClient documentUnderstandingServiceClient = DocumentUnderstandingServiceClient.create()) {
-   *   ProcessDocumentRequest request = ProcessDocumentRequest.newBuilder().build();
+   *   InputConfig inputConfig = InputConfig.newBuilder().build();
+   *   ProcessDocumentRequest request = ProcessDocumentRequest.newBuilder()
+   *     .setInputConfig(inputConfig)
+   *     .build();
    *   ApiFuture<Document> future = documentUnderstandingServiceClient.processDocumentCallable().futureCall(request);
    *   // Do something
    *   Document response = future.get();
diff --git a/google-cloud-document-ai/src/main/java/com/google/cloud/documentai/v1beta2/DocumentUnderstandingServiceSettings.java b/google-cloud-document-ai/src/main/java/com/google/cloud/documentai/v1beta2/DocumentUnderstandingServiceSettings.java
index db7606aa..fe466b58 100644
--- a/google-cloud-document-ai/src/main/java/com/google/cloud/documentai/v1beta2/DocumentUnderstandingServiceSettings.java
+++ b/google-cloud-document-ai/src/main/java/com/google/cloud/documentai/v1beta2/DocumentUnderstandingServiceSettings.java
@@ -39,7 +39,7 @@
  * 

The default instance has everything set to sensible defaults: * *

    - *
  • The default service address (documentai.googleapis.com) and default port (443) are used. + *
  • The default service address (us-documentai.googleapis.com) and default port (443) are used. *
  • Credentials are acquired automatically through Application Default Credentials. *
  • Retries are configured for idempotent methods but not for non-idempotent methods. *
diff --git a/google-cloud-document-ai/src/main/java/com/google/cloud/documentai/v1beta2/package-info.java b/google-cloud-document-ai/src/main/java/com/google/cloud/documentai/v1beta2/package-info.java index 62a42566..07963129 100644 --- a/google-cloud-document-ai/src/main/java/com/google/cloud/documentai/v1beta2/package-info.java +++ b/google-cloud-document-ai/src/main/java/com/google/cloud/documentai/v1beta2/package-info.java @@ -31,7 +31,10 @@ *
  * 
  * try (DocumentUnderstandingServiceClient documentUnderstandingServiceClient = DocumentUnderstandingServiceClient.create()) {
- *   ProcessDocumentRequest request = ProcessDocumentRequest.newBuilder().build();
+ *   InputConfig inputConfig = InputConfig.newBuilder().build();
+ *   ProcessDocumentRequest request = ProcessDocumentRequest.newBuilder()
+ *     .setInputConfig(inputConfig)
+ *     .build();
  *   Document response = documentUnderstandingServiceClient.processDocument(request);
  * }
  * 
diff --git a/google-cloud-document-ai/src/main/java/com/google/cloud/documentai/v1beta2/stub/DocumentUnderstandingServiceStubSettings.java b/google-cloud-document-ai/src/main/java/com/google/cloud/documentai/v1beta2/stub/DocumentUnderstandingServiceStubSettings.java
index d74b5e80..e92716f8 100644
--- a/google-cloud-document-ai/src/main/java/com/google/cloud/documentai/v1beta2/stub/DocumentUnderstandingServiceStubSettings.java
+++ b/google-cloud-document-ai/src/main/java/com/google/cloud/documentai/v1beta2/stub/DocumentUnderstandingServiceStubSettings.java
@@ -56,7 +56,7 @@
  * 

The default instance has everything set to sensible defaults: * *

    - *
  • The default service address (documentai.googleapis.com) and default port (443) are used. + *
  • The default service address (us-documentai.googleapis.com) and default port (443) are used. *
  • Credentials are acquired automatically through Application Default Credentials. *
  • Retries are configured for idempotent methods but not for non-idempotent methods. *
@@ -133,7 +133,7 @@ public static InstantiatingExecutorProvider.Builder defaultExecutorProviderBuild /** Returns the default service endpoint. */ public static String getDefaultEndpoint() { - return "documentai.googleapis.com:443"; + return "us-documentai.googleapis.com:443"; } /** Returns the default service scopes. */ @@ -293,13 +293,13 @@ private static Builder initDefaults(Builder builder) { .setPollingAlgorithm( OperationTimedPollAlgorithm.create( RetrySettings.newBuilder() - .setInitialRetryDelay(Duration.ofMillis(20000L)) + .setInitialRetryDelay(Duration.ofMillis(500L)) .setRetryDelayMultiplier(1.5) - .setMaxRetryDelay(Duration.ofMillis(45000L)) + .setMaxRetryDelay(Duration.ofMillis(5000L)) .setInitialRpcTimeout(Duration.ZERO) // ignored .setRpcTimeoutMultiplier(1.0) // ignored .setMaxRpcTimeout(Duration.ZERO) // ignored - .setTotalTimeout(Duration.ofMillis(86400000L)) + .setTotalTimeout(Duration.ofMillis(300000L)) .build())); return builder; diff --git a/google-cloud-document-ai/src/test/java/com/google/cloud/documentai/v1beta2/DocumentUnderstandingServiceClientTest.java b/google-cloud-document-ai/src/test/java/com/google/cloud/documentai/v1beta2/DocumentUnderstandingServiceClientTest.java index 0f3f15f3..3b5b31c2 100644 --- a/google-cloud-document-ai/src/test/java/com/google/cloud/documentai/v1beta2/DocumentUnderstandingServiceClientTest.java +++ b/google-cloud-document-ai/src/test/java/com/google/cloud/documentai/v1beta2/DocumentUnderstandingServiceClientTest.java @@ -139,7 +139,9 @@ public void processDocumentTest() { Document.newBuilder().setUri(uri).setMimeType(mimeType).setText(text).build(); mockDocumentUnderstandingService.addResponse(expectedResponse); - ProcessDocumentRequest request = ProcessDocumentRequest.newBuilder().build(); + InputConfig inputConfig = InputConfig.newBuilder().build(); + ProcessDocumentRequest request = + ProcessDocumentRequest.newBuilder().setInputConfig(inputConfig).build(); Document actualResponse = client.processDocument(request); Assert.assertEquals(expectedResponse, actualResponse); @@ -148,6 +150,7 @@ public void processDocumentTest() { Assert.assertEquals(1, actualRequests.size()); ProcessDocumentRequest actualRequest = (ProcessDocumentRequest) actualRequests.get(0); + Assert.assertEquals(inputConfig, actualRequest.getInputConfig()); Assert.assertTrue( channelProvider.isHeaderSent( ApiClientHeaderProvider.getDefaultApiClientHeaderKey(), @@ -161,7 +164,9 @@ public void processDocumentExceptionTest() throws Exception { mockDocumentUnderstandingService.addException(exception); try { - ProcessDocumentRequest request = ProcessDocumentRequest.newBuilder().build(); + InputConfig inputConfig = InputConfig.newBuilder().build(); + ProcessDocumentRequest request = + ProcessDocumentRequest.newBuilder().setInputConfig(inputConfig).build(); client.processDocument(request); Assert.fail("No exception raised"); diff --git a/synth.metadata b/synth.metadata index 7278a934..fdf4570a 100644 --- a/synth.metadata +++ b/synth.metadata @@ -1,20 +1,21 @@ { - "updateTime": "2020-04-01T22:50:06.763039Z", + "updateTime": "2020-04-04T08:59:05.982066Z", "sources": [ { "git": { "name": "googleapis", "remote": "https://github.com/googleapis/googleapis.git", - "sha": "fd83ab212176a1042e8d45ea90766b3bf59ac679", - "internalRef": "302913609" + "sha": "d6cb4997910eda04c0c66c0f2fd043eeaa0f660d", + "internalRef": "304724866" } }, { "git": { "name": "googleapis", "remote": "https://github.com/googleapis/googleapis.git", - "sha": "fd83ab212176a1042e8d45ea90766b3bf59ac679", - "internalRef": "302913609" + "sha": "d6cb4997910eda04c0c66c0f2fd043eeaa0f660d", + "internalRef": "304724866", + "log": "d6cb4997910eda04c0c66c0f2fd043eeaa0f660d\nchore: enable gapic v2 and proto annotation for documentai API.\n\ncommitter @summer-ji-eng\n\nPiperOrigin-RevId: 304724866\n\n490bc556608bfa5b1548c9374b06152fa33d657e\nEnable gapicv2 for devtools/remoteworkers/v1test2\n\nCommitter: @miraleung\nPiperOrigin-RevId: 304718691\n\n9f78ce31a5bd7f4a63e3cf0ddf28221557adb7ed\nEnable gapicv2 for managedidentities/v1beta1\n\nCommitter: @miraleung\nPiperOrigin-RevId: 304718676\n\n6e17d259b8e320bc51aa240cefef05ec753e2b83\ndocs: treat a dummy example URL as a string literal instead of a link\n\nPiperOrigin-RevId: 304716376\n\na8d76f99d3073aaccabdcc122c798a63e812c4fe\ndocs: change relative URLs to absolute URLs to fix broken links.\n\nPiperOrigin-RevId: 304702368\n\n65c749bc6a1d240416a0e6979381b67f97aff907\ndocs: fix formatting of some regexes and string literals.\n\nPiperOrigin-RevId: 304701150\n\n9119eefcd2b5ce845a680fa4ec4093ed733498f0\nchore: set Ruby namespace in proto options\n\nPiperOrigin-RevId: 304698702\n\n62a2a7cc33d3535638d220df238823eefcca930d\nchore: set Ruby namespace in proto options\n\nPiperOrigin-RevId: 304696461\n\n23848c8f64a5e81a239d6133378468185f1756dc\nchore: set Ruby namespace in proto options\n\nPiperOrigin-RevId: 304696192\n\n9514fa9e390a4c0715972c5b510cf4c10ad049a1\ndocs: change relative URLs to absolute URLs to fix broken links.\n\nPiperOrigin-RevId: 304695334\n\n0f7b1509a9a452808c3d07fe90fedfcea763d7d5\nfix: change config_schema_version to 2.0.0 for containeranalysis v1 gapic config.\n\ncommitter: @hzyi-google\nPiperOrigin-RevId: 304672648\n\n3d52f3c126fbfc31f067a7f54737b7f0dfbce163\nDialogflow weekly v2 library update:\n- Change `parent` field's resource_reference to specify child_type instead of type per client library generation requirement;\n- Change Session with its child resource pattern to support both projects/{project}/agent/sessions/{session} and projects/{project}/agent/environments/{environment}/users/{user}/sessions/{session};\n- Fix `method_signature`\n- Regular documentation update\n\nImportant updates are also posted at:\nhttps://cloud.google.com/dialogflow/docs/release-notes\n\nPiperOrigin-RevId: 304635286\n\n4a6a01ce0ead505c245d11a2ce156de34800c58f\ndocs: change a relative URL to an absolute URL to fix broken links.\n\nPiperOrigin-RevId: 304633630\n\n1b969c28a6579265e89cd35e6c2ecacc89970e2d\nchore: set Ruby namespace in proto options\n\nPiperOrigin-RevId: 304620317\n\n5378173a889f9c7d83e36e52d38a6267190de692\nAdd v1beta2 SubmitJobAsOperation RPC to Dataproc.\n\nPiperOrigin-RevId: 304594381\n\n3d5d228a58bdf875e6147b228db3159010c735ee\nEnable visibility on the GetSnapshot and GetTopicSnapshots methods\n\nPiperOrigin-RevId: 304500143\n\n1346f5c11a0376bc82c5c03259b304de52671518\nRefresh public client library for Cloud Monitoring.\nIncrease default ListTimeSeries deadline to 90s.\n\nPiperOrigin-RevId: 304467075\n\n4a6cfccb4a32cb28db7366295d90078c6af3112f\ndocs: Fix link in monitoring summary description.\n\nPiperOrigin-RevId: 304438717\n\n6e2ea9a4b63a264090f1bd4b5b25766a3f634f3a\nfix: add interface name overrides back to logging gapic config.\n\ncommitter: @hzyi-google\nPiperOrigin-RevId: 304438432\n\n01f3ccbaa66cf3ae4e3b9fd140b1ecfbe54a3ed0\nFix: Add package/namespace options for C#, Ruby and PHP in remaining protos.\n\nPiperOrigin-RevId: 304416658\n\nb89abbf12cd3c086abddcd79adb0a653349f960a\nchore(google/maps): Rename nox.py to noxfile.py\n\nupstream wip fix here: https://github.com/googleapis/gapic-generator/pull/3156\n\nPiperOrigin-RevId: 304411146\n\nbbf26d7f11fae7789b13959bf100983c496c9807\nSynchronize new proto/yaml changes.\n\nPiperOrigin-RevId: 304409906\n\n75047719f704d61f405cac6d7439637ab36c1232\nfix Dataproc: add missing `REQUIRED` annotation.\n\nPiperOrigin-RevId: 304305096\n\n7e1b880fd5d477176cf9b0bb9b137b9bea56e787\nAdd Ruby/PHP namespace options\n\nPiperOrigin-RevId: 304288402\n\naba342359b6743353195ca53f944fe71e6fb6cd4\nchore: add java assembly target for accesscontextmanager BUILD.bazel\n\nPiperOrigin-RevId: 304207684\n\ndc65f39f33cb139b3a2244199a3e722a4d94b679\nFor Secret Manager v1 and v1beta1, noted Secret ID character limitations.\n\nPiperOrigin-RevId: 304035052\n\n2ee8c4d06db823c29a127709e66c35e38b6e98ab\nchore(deps): Update gax-java dependency\nThis is to integrate java11 incompatibility fix\n\nPiperOrigin-RevId: 304032057\n\nb5c94cec71ea9b840dc0110a0275323313ecc85a\nchore: add java assembly target for orgpolicy BUILD.bazel\n\nPiperOrigin-RevId: 304021854\n\n690f4d6344197fde775230cec165a9db3b3929c7\nchore: use the latest protoc-java-resource-name-plugin in third_party/googleapis WORKSPACE.\n- trace up only one level when calculating parent types with singleton resource names\n\nPiperOrigin-RevId: 304007414\n\n87144228bd9920b824996355f27891310fad5a32\nEnable gapic v2 for DLP.\n\nCommitter: @hzyi-google\nPiperOrigin-RevId: 303999064\n\n17cfae00f2bb51cb1683f017da7e295a1b0f01a8\nAdd a new AuthorizationType for Data Source Definition.\n\nPiperOrigin-RevId: 303992863\n\n6da3d64919c006ef40cad2026f1e39084253afe2\nfix(google/maps): Change importpath to developers.google.com/maps/go.\n\nPiperOrigin-RevId: 303976942\n\n2983dccde54f0ce31793e1e628379616c468aea0\nbuild(google/maps): only modify root build.gradle with ext plugin\n\nPiperOrigin-RevId: 303975876\n\n00f0a285f2716ce57e98afe500e450b17b556ff8\nfix: Integerate gapic-generator java_gapic rules Java11 fix\n\nPiperOrigin-RevId: 303899179\n\na62857d26bd2ae15aec13a9244989e4104195b63\nfix: add proto_package to the artman config of dataproc v1beta2 to make artman smoketest pass.\n\nPiperOrigin-RevId: 303853989\n\nf260ba248df934fd4ddc22950fb529a59d79e0b5\nchore: use the latest gapic-generator in googleapis WORKSPACE.\n- PHP multi-pattern resource name support.\n- Trace up only one level when calculating parent types with singleton resource names\n\nPiperOrigin-RevId: 303836059\n\n89c7d455fffa5d8a7e73c2f4da43a74605ed72a6\nfeat: Add client library options to OsConfigService v1 patch APIs.\n\nPiperOrigin-RevId: 303831150\n\na45b0a2a8f6f497547ab531a4da978c76441d076\ndataproc: add back non-default retry parameters.\ncommitter: @hzyi-google\n\nPiperOrigin-RevId: 303830177\n\nad895ce95f1f6d2261fbbc3e8897958294e4f017\nenable gapic v2 for containeranalysis.\ncommitter: @hzyi-google\n\nPiperOrigin-RevId: 303821111\n\nbaf83e521834b67397839bcbe2d7864b49e38787\nAdding \"resource_reference\" annotations to services.\n\nPiperOrigin-RevId: 303791704\n\n7be2811ad17013a5ea24cd75dfd9e399dd6e18fe\nfix: Update gapic-generator version to pickup discogapic fixes\n\nPiperOrigin-RevId: 303545940\n\nb655808b3481a92f478ae2f828a6ce8220e40f32\ncloudasset: add org policy and access context manager protos to client libraries.\n\nPiperOrigin-RevId: 303527638\n\nd8c5da9a9471659b51d5862dd2ea7ad3c4bc49ef\nPopulate BAZEL.build files for AccessContextManager.\n\nPiperOrigin-RevId: 303526825\n\ncf9db7161cb9d4dbef06cd8bf5354ec485e51e2d\nPopulate BAZEL.build files for OrgPolicy.\n\nPiperOrigin-RevId: 303526702\n\n558b800ed594acc02555cc560fbb39c0e42bc438\nchore: turn on gapic v2 for Dataproc API.\nfix:\n- add missing method signatures\n- remove resource_reference not on a string field\n- adjust resource name pattern orders\n\nPiperOrigin-RevId: 303431167\n\n8eb444cf5ff63f68d826acbb37b2ac3da58655fb\nAdd logging protos for Recommender v1beta1.\n\nPiperOrigin-RevId: 303426030\n\n48a166ce9f6e2a88b10947341b37336fe9dd3478\nPush of PHP, C# and Ruby namespaces\n\nPiperOrigin-RevId: 303302813\n\n42f77489b300df2e27c84a7b65c4e8f04da20981\nThis is first release of the API protos and Bazel BUILD files for the Analytics Management API V1alpha.\n\nPiperOrigin-RevId: 303241805\n\n8bea81bfa461698981b3d3a488a95633d2f6e9ff\nchore: use latest protoc-java-resource-name-plugin in bazel WORKSPACE.\nnew commits:\n- fix: stop generating `parseList` and `toStringList` if a multi-pattern resource name has subclasses (#79)\n\ncommitter: @hzyi-google\nPiperOrigin-RevId: 303197602\n\nb14af92e565264675d6b12cd2c0ded6c94ddd7f8\nfix talent API incorrect placeholders in two resource name patterns.\ncommitter: @hzyi-google\n\nPiperOrigin-RevId: 303189497\n\n8e22db908ae09e1f7e2802c03b4563fd6b524e0e\nchore(google/maps): Update postprocessing script for Java.\n\n- Update root build.gradle to load local plugin\n- Change com.google.api.grpc group to com.google.maps\n\nPiperOrigin-RevId: 303176850\n\n65816afa71e588252b7119dc723592abe51ea106\nbazel: update gapic-generator-go to v0.12.5 and gapic-generator hash\n\nChanges to gapic-generator-go include:\n* feat: strip invalid link references in comments\n* chore: updating Go deps in bazel repositories\n\nChanges to gapic-generator include:\n* fix: bazel go build gen check for cloud in proto pkg name\n* Revert \"feat: allow static substitution for group name\"\n\nPiperOrigin-RevId: 303150338\n\nd4aa417ed2bba89c2d216900282bddfdafef6128\nFix incorrect retry config in gapic v2 for kms.\n\nPiperOrigin-RevId: 303010132\n\nfd08334533204fdd1b33f79fcb263dbb5bf13de0\nfix: osconfig/v1 update go_gapic_library target to microgen interface\n\nPiperOrigin-RevId: 303007866\n\ne2c0f2a0e06d86b50aba98f67f9f291587d986b3\nUpdate comments for google/rpc/error_details.proto.\n\nPiperOrigin-RevId: 303002528\n\nf786c7586748e78a286b1620ff3ddbf7b4dcab92\nfeat: Add OsConfigService v1 patch APIs.\n\nPiperOrigin-RevId: 302999346\n\n0341fa3fc2f4073a1b1f260d37b2ce620799f545\nTurn on gapic config v2 for kms.\n\nCommitter: @hzyi-google\nPiperOrigin-RevId: 302980301\n\n32dc6e832039b61ac3fb82c72eb0a27570aebcd6\nredis: v1beta1 enables REDIS_5_0 as an option for redis_version field and adds two new redis configs --stream-node-max-entries --stream-node-max-bytes\n\nPiperOrigin-RevId: 302958009\n\n685f16483cc4d87c35051f21f8f13ef4fdc919b4\nredis: v1 enables REDIS_5_0 as an option for redis_version field and adds two new redis configs --stream-node-max-entries --stream-node-max-bytes\n\nPiperOrigin-RevId: 302957729\n\n733cb282ae5e64673ef86c9a5dff647df803d8b7\nAdd GAPIC cofiguration for v1 client library genetration.\n\nPiperOrigin-RevId: 302928200\n\n1b0fff5f2ec6dc4a9443d9b50e70e9c94c30c45b\ndocs: remove an internal lint declaration\n\nPiperOrigin-RevId: 302928106\n\n2be23f3f3036a6f7ce0844def3d2d3da74e5d415\nfix(google/maps): Add post-processing rules for Google Maps APIs\n\nPiperOrigin-RevId: 302925222\n\n" } }, { From e62d9068fc331fd074d73a682afff87becc5e425 Mon Sep 17 00:00:00 2001 From: WhiteSource Renovate Date: Mon, 6 Apr 2020 21:48:23 +0200 Subject: [PATCH 17/20] chore(deps): update dependency com.google.cloud:libraries-bom to v4.4.1 (#45) This PR contains the following updates: | Package | Update | Change | |---|---|---| | [com.google.cloud:libraries-bom](https://togithub.com/GoogleCloudPlatform/cloud-opensource-java) | patch | `4.4.0` -> `4.4.1` | --- ### Renovate configuration :date: **Schedule**: At any time (no schedule defined). :vertical_traffic_light: **Automerge**: Disabled by config. Please merge this manually once you are satisfied. :recycle: **Rebasing**: Whenever PR becomes conflicted, or you tick the rebase/retry checkbox. :no_bell: **Ignore**: Close this PR and you won't be reminded about this update again. --- - [ ] If you want to rebase/retry this PR, check this box --- This PR has been generated by [WhiteSource Renovate](https://renovate.whitesourcesoftware.com). View repository job log [here](https://app.renovatebot.com/dashboard#googleapis/java-document-ai). --- samples/snippets/pom.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/samples/snippets/pom.xml b/samples/snippets/pom.xml index 21a14542..5e720b7b 100644 --- a/samples/snippets/pom.xml +++ b/samples/snippets/pom.xml @@ -30,7 +30,7 @@ com.google.cloud libraries-bom - 4.4.0 + 4.4.1 pom import From aa252ef3b3aa3bab3fb99224ac0e4e70d8167266 Mon Sep 17 00:00:00 2001 From: WhiteSource Renovate Date: Tue, 7 Apr 2020 00:58:08 +0200 Subject: [PATCH 18/20] deps: update core dependencies (#10) This PR contains the following updates: | Package | Update | Change | |---|---|---| | [io.grpc:grpc-bom](https://togithub.com/grpc/grpc-java) | minor | `1.27.2` -> `1.28.1` | | [com.google.api:gax-grpc](https://togithub.com/googleapis/gax-java) | minor | `1.54.0` -> `1.56.0` | | [com.google.api:gax-bom](https://togithub.com/googleapis/gax-java) | minor | `1.54.0` -> `1.56.0` | --- ### Release Notes
grpc/grpc-java ### [`v1.28.1`](https://togithub.com/grpc/grpc-java/releases/v1.28.1) [Compare Source](https://togithub.com/grpc/grpc-java/compare/v1.28.0...v1.28.1) #### Bug Fixes - xds: implement more clear specifications for locality filtering (allow localities with 0 endpoint, ignore localities with 0 weight, check for locality priority continuity). ([#​6875](https://togithub.com/grpc/grpc-java/issues/6875)) ### [`v1.28.0`](https://togithub.com/grpc/grpc-java/releases/v1.28.0) [Compare Source](https://togithub.com/grpc/grpc-java/compare/v1.27.2...v1.28.0) #### gRPC Java 1.28.0 Release Notes #### API Changes - core: service config parsing now validates the final config object via `LoadBalancerProvider#parseLoadBalancingPolicyConfig`. LoadBalancer developers should use parsed config(`loadBalancingPolicyConfig`) in `ResolvedAddresses` instead of deprecated attribute `io.grpc.LoadBalancer.ATTR_LOAD_BALANCING_CONFIG`. - core: remove stickiness from round robin ([#​6698](https://togithub.com/grpc/grpc-java/issues/6698)) #### Behavioral Changes - core, grpclb: change policy selection strategy for Grpclb policy (take one: eliminate special logic for deciding grpclb policy in core) ([#​6637](https://togithub.com/grpc/grpc-java/issues/6637)) - gRPCLB policy selection is being stabilized according to [this gRFC](https://togithub.com/grpc/proposal/blob/master/A26-grpclb-selection.md). gRPCLB policy will not be automatically selected even if there are SRV addresses resolved. You need to explicitly specify the selection by service config (in TXT records, or via `ManagedChannelBuilder#defaultServiceConfig` or `ManagedChannelBuilder#defaultLoadBalancingPolicy`). #### New Features - This release adds an experimental client side implementation of [xDSv2](https://www.envoyproxy.io/docs/envoy/latest/api-v2/api) APIs. This allows a gRPC client written in Java to receive configuration from an xDSv2 API compatible server and use that configuration to load balance RPCs. In this release, only the virtual host matching and cluster route action is supported. More features will be added in future. #### Bug Fixes - netty: fix a deadlock on start gRPC server ([#​6601](https://togithub.com/grpc/grpc-java/issues/6601)) - netty: negotiated application level protocol is now checked against the correct ALPN list in the SslContext settings - okhttp: fix incorrect connection-level flow control handling at beginning of connection. - alts: Fix using the wrong way of checking if Conscrypt is available ([#​6672](https://togithub.com/grpc/grpc-java/issues/6672)) - grpclb: grpclb can handle empty address from LoadBalancer instead of throwing exception - alts: do not exclude opencensus-api from google-oauth2's transitive dependencies ([#​6607](https://togithub.com/grpc/grpc-java/issues/6607)) - grpc-alts was broken since 1.27.0 release for missing opencensus-api used in google-oauth2. This was due to opencensus-api dependency was eliminated from grpc-core. Now it should be included. #### Documentation - stub,examples: Clarify CallStreamObserver's Javadoc ([#​6561](https://togithub.com/grpc/grpc-java/issues/6561)) #### Dependencies - Bump Netty to 4.1.45.Final and tcnative to 2.0.28.Final - Bump okhttp to 2.7.4 - Bump google-auth-library-credentials and google-auth-library-oauth2-http to 0.20.0 #### Acknowledgements [@​chrisschek](https://togithub.com/chrisschek) [@​cushon](https://togithub.com/cushon) Liam Miller-Cushon [@​elharo](https://togithub.com/elharo) Elliotte Rusty Harold [@​gfelbing](https://togithub.com/gfelbing) Georg Welzel [@​hatahet](https://togithub.com/hatahet) Ziad Hatahet [@​leventov](https://togithub.com/leventov) Roman Leventov [@​sourabhsparkala](https://togithub.com/sourabhsparkala) Sourabh Sarvotham Parkala [@​ZhenLian](https://togithub.com/ZhenLian) Zhen Lian
googleapis/gax-java ### [`v1.56.0`](https://togithub.com/googleapis/gax-java/releases/v1.56.0) [Compare Source](https://togithub.com/googleapis/gax-java/compare/v1.55.0...v1.56.0) 04-06-2020 10:29 PDT ##### New Features - Add ability to partially update retry settings ([#​993](https://togithub.com/googleapis/gax-java/pull/993)) ##### Dependencies - Update grpc to 1.28.1 ([#​1013](https://togithub.com/googleapis/gax-java/pull/1013)) - Update com.google.api:api-common to 1.9.0 ([#​992](https://togithub.com/googleapis/gax-java/pull/992)) - Add javax.annotations dependency in bazel build to gax-grpc ([#​1000](https://togithub.com/googleapis/gax-java/pull/1000)) ##### Internal / Testing Changes - test: make it easier to debug failures in SettingsTest ([#​994](https://togithub.com/googleapis/gax-java/pull/994)) - build: update dependency gradle.plugin.com.dorongold.plugins:task-tree to v1.5 ([#​995](https://togithub.com/googleapis/gax-java/pull/995)) - test: update dependency com.google.api.grpc:grpc-google-cloud-pubsub-v1 to v1.86.0 ([#​1008](https://togithub.com/googleapis/gax-java/pull/1008)) ### [`v1.55.0`](https://togithub.com/googleapis/gax-java/releases/v1.55.0) [Compare Source](https://togithub.com/googleapis/gax-java/compare/v1.54.0...v1.55.0) 03-27-2020 08:33 PDT ##### New Features - Allow client authors to create their own callable chains ([#​891](https://togithub.com/googleapis/gax-java/pull/891)) ##### Dependencies - Update org.threeten:threetenbp to v1.4.1 ([#​890](https://togithub.com/googleapis/gax-java/pull/890)) ##### Internal / Testing Changes - chore(deps): update dependency com.google.api.grpc:grpc-google-cloud-bigtable-v2 to v1 ([#​953](https://togithub.com/googleapis/gax-java/pull/953)) - chore(deps): update dependency com.google.api.grpc:grpc-google-cloud-pubsub-v1 to v1 ([#​970](https://togithub.com/googleapis/gax-java/pull/970)) - remove unused property ([#​887](https://togithub.com/googleapis/gax-java/pull/887))
--- ### Renovate configuration :date: **Schedule**: At any time (no schedule defined). :vertical_traffic_light: **Automerge**: Disabled by config. Please merge this manually once you are satisfied. :recycle: **Rebasing**: Whenever PR becomes conflicted, or you tick the rebase/retry checkbox. :ghost: **Immortal**: This PR will be recreated if closed unmerged. Get [config help](https://togithub.com/renovatebot/config-help/issues) if that's undesired. --- - [ ] If you want to rebase/retry this PR, check this box --- This PR has been generated by [WhiteSource Renovate](https://renovate.whitesourcesoftware.com). View repository job log [here](https://app.renovatebot.com/dashboard#googleapis/java-document-ai). --- pom.xml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pom.xml b/pom.xml index 66df3b6d..ff623a97 100644 --- a/pom.xml +++ b/pom.xml @@ -66,8 +66,8 @@ 1.93.2 1.9.0 1.17.0 - 1.54.0 - 1.27.2 + 1.56.0 + 1.28.1 3.11.4 4.13 28.2-android From 7eb93bc6e8688404e046c142286154ab999652c4 Mon Sep 17 00:00:00 2001 From: Yoshi Automation Bot Date: Tue, 7 Apr 2020 08:42:17 -0700 Subject: [PATCH 19/20] chore(deps): update dependency com.google.cloud:libraries-bom to v4.4.1 (#45) (#47) This PR was generated using Autosynth. :rainbow: Synth log will be available here: https://source.cloud.google.com/results/invocations/54d8cd4e-c4ca-4b58-85b4-07f5ae9bfa68/targets --- README.md | 2 +- synth.metadata | 5 ++--- 2 files changed, 3 insertions(+), 4 deletions(-) diff --git a/README.md b/README.md index 3de56c9e..d07edd23 100644 --- a/README.md +++ b/README.md @@ -20,7 +20,7 @@ If you are using Maven with [BOM][libraries-bom], add this to your pom.xml file com.google.cloud libraries-bom - 4.4.0 + 4.4.1 pom import diff --git a/synth.metadata b/synth.metadata index fdf4570a..f206c5e9 100644 --- a/synth.metadata +++ b/synth.metadata @@ -1,5 +1,5 @@ { - "updateTime": "2020-04-04T08:59:05.982066Z", + "updateTime": "2020-04-06T23:26:05.388158Z", "sources": [ { "git": { @@ -14,8 +14,7 @@ "name": "googleapis", "remote": "https://github.com/googleapis/googleapis.git", "sha": "d6cb4997910eda04c0c66c0f2fd043eeaa0f660d", - "internalRef": "304724866", - "log": "d6cb4997910eda04c0c66c0f2fd043eeaa0f660d\nchore: enable gapic v2 and proto annotation for documentai API.\n\ncommitter @summer-ji-eng\n\nPiperOrigin-RevId: 304724866\n\n490bc556608bfa5b1548c9374b06152fa33d657e\nEnable gapicv2 for devtools/remoteworkers/v1test2\n\nCommitter: @miraleung\nPiperOrigin-RevId: 304718691\n\n9f78ce31a5bd7f4a63e3cf0ddf28221557adb7ed\nEnable gapicv2 for managedidentities/v1beta1\n\nCommitter: @miraleung\nPiperOrigin-RevId: 304718676\n\n6e17d259b8e320bc51aa240cefef05ec753e2b83\ndocs: treat a dummy example URL as a string literal instead of a link\n\nPiperOrigin-RevId: 304716376\n\na8d76f99d3073aaccabdcc122c798a63e812c4fe\ndocs: change relative URLs to absolute URLs to fix broken links.\n\nPiperOrigin-RevId: 304702368\n\n65c749bc6a1d240416a0e6979381b67f97aff907\ndocs: fix formatting of some regexes and string literals.\n\nPiperOrigin-RevId: 304701150\n\n9119eefcd2b5ce845a680fa4ec4093ed733498f0\nchore: set Ruby namespace in proto options\n\nPiperOrigin-RevId: 304698702\n\n62a2a7cc33d3535638d220df238823eefcca930d\nchore: set Ruby namespace in proto options\n\nPiperOrigin-RevId: 304696461\n\n23848c8f64a5e81a239d6133378468185f1756dc\nchore: set Ruby namespace in proto options\n\nPiperOrigin-RevId: 304696192\n\n9514fa9e390a4c0715972c5b510cf4c10ad049a1\ndocs: change relative URLs to absolute URLs to fix broken links.\n\nPiperOrigin-RevId: 304695334\n\n0f7b1509a9a452808c3d07fe90fedfcea763d7d5\nfix: change config_schema_version to 2.0.0 for containeranalysis v1 gapic config.\n\ncommitter: @hzyi-google\nPiperOrigin-RevId: 304672648\n\n3d52f3c126fbfc31f067a7f54737b7f0dfbce163\nDialogflow weekly v2 library update:\n- Change `parent` field's resource_reference to specify child_type instead of type per client library generation requirement;\n- Change Session with its child resource pattern to support both projects/{project}/agent/sessions/{session} and projects/{project}/agent/environments/{environment}/users/{user}/sessions/{session};\n- Fix `method_signature`\n- Regular documentation update\n\nImportant updates are also posted at:\nhttps://cloud.google.com/dialogflow/docs/release-notes\n\nPiperOrigin-RevId: 304635286\n\n4a6a01ce0ead505c245d11a2ce156de34800c58f\ndocs: change a relative URL to an absolute URL to fix broken links.\n\nPiperOrigin-RevId: 304633630\n\n1b969c28a6579265e89cd35e6c2ecacc89970e2d\nchore: set Ruby namespace in proto options\n\nPiperOrigin-RevId: 304620317\n\n5378173a889f9c7d83e36e52d38a6267190de692\nAdd v1beta2 SubmitJobAsOperation RPC to Dataproc.\n\nPiperOrigin-RevId: 304594381\n\n3d5d228a58bdf875e6147b228db3159010c735ee\nEnable visibility on the GetSnapshot and GetTopicSnapshots methods\n\nPiperOrigin-RevId: 304500143\n\n1346f5c11a0376bc82c5c03259b304de52671518\nRefresh public client library for Cloud Monitoring.\nIncrease default ListTimeSeries deadline to 90s.\n\nPiperOrigin-RevId: 304467075\n\n4a6cfccb4a32cb28db7366295d90078c6af3112f\ndocs: Fix link in monitoring summary description.\n\nPiperOrigin-RevId: 304438717\n\n6e2ea9a4b63a264090f1bd4b5b25766a3f634f3a\nfix: add interface name overrides back to logging gapic config.\n\ncommitter: @hzyi-google\nPiperOrigin-RevId: 304438432\n\n01f3ccbaa66cf3ae4e3b9fd140b1ecfbe54a3ed0\nFix: Add package/namespace options for C#, Ruby and PHP in remaining protos.\n\nPiperOrigin-RevId: 304416658\n\nb89abbf12cd3c086abddcd79adb0a653349f960a\nchore(google/maps): Rename nox.py to noxfile.py\n\nupstream wip fix here: https://github.com/googleapis/gapic-generator/pull/3156\n\nPiperOrigin-RevId: 304411146\n\nbbf26d7f11fae7789b13959bf100983c496c9807\nSynchronize new proto/yaml changes.\n\nPiperOrigin-RevId: 304409906\n\n75047719f704d61f405cac6d7439637ab36c1232\nfix Dataproc: add missing `REQUIRED` annotation.\n\nPiperOrigin-RevId: 304305096\n\n7e1b880fd5d477176cf9b0bb9b137b9bea56e787\nAdd Ruby/PHP namespace options\n\nPiperOrigin-RevId: 304288402\n\naba342359b6743353195ca53f944fe71e6fb6cd4\nchore: add java assembly target for accesscontextmanager BUILD.bazel\n\nPiperOrigin-RevId: 304207684\n\ndc65f39f33cb139b3a2244199a3e722a4d94b679\nFor Secret Manager v1 and v1beta1, noted Secret ID character limitations.\n\nPiperOrigin-RevId: 304035052\n\n2ee8c4d06db823c29a127709e66c35e38b6e98ab\nchore(deps): Update gax-java dependency\nThis is to integrate java11 incompatibility fix\n\nPiperOrigin-RevId: 304032057\n\nb5c94cec71ea9b840dc0110a0275323313ecc85a\nchore: add java assembly target for orgpolicy BUILD.bazel\n\nPiperOrigin-RevId: 304021854\n\n690f4d6344197fde775230cec165a9db3b3929c7\nchore: use the latest protoc-java-resource-name-plugin in third_party/googleapis WORKSPACE.\n- trace up only one level when calculating parent types with singleton resource names\n\nPiperOrigin-RevId: 304007414\n\n87144228bd9920b824996355f27891310fad5a32\nEnable gapic v2 for DLP.\n\nCommitter: @hzyi-google\nPiperOrigin-RevId: 303999064\n\n17cfae00f2bb51cb1683f017da7e295a1b0f01a8\nAdd a new AuthorizationType for Data Source Definition.\n\nPiperOrigin-RevId: 303992863\n\n6da3d64919c006ef40cad2026f1e39084253afe2\nfix(google/maps): Change importpath to developers.google.com/maps/go.\n\nPiperOrigin-RevId: 303976942\n\n2983dccde54f0ce31793e1e628379616c468aea0\nbuild(google/maps): only modify root build.gradle with ext plugin\n\nPiperOrigin-RevId: 303975876\n\n00f0a285f2716ce57e98afe500e450b17b556ff8\nfix: Integerate gapic-generator java_gapic rules Java11 fix\n\nPiperOrigin-RevId: 303899179\n\na62857d26bd2ae15aec13a9244989e4104195b63\nfix: add proto_package to the artman config of dataproc v1beta2 to make artman smoketest pass.\n\nPiperOrigin-RevId: 303853989\n\nf260ba248df934fd4ddc22950fb529a59d79e0b5\nchore: use the latest gapic-generator in googleapis WORKSPACE.\n- PHP multi-pattern resource name support.\n- Trace up only one level when calculating parent types with singleton resource names\n\nPiperOrigin-RevId: 303836059\n\n89c7d455fffa5d8a7e73c2f4da43a74605ed72a6\nfeat: Add client library options to OsConfigService v1 patch APIs.\n\nPiperOrigin-RevId: 303831150\n\na45b0a2a8f6f497547ab531a4da978c76441d076\ndataproc: add back non-default retry parameters.\ncommitter: @hzyi-google\n\nPiperOrigin-RevId: 303830177\n\nad895ce95f1f6d2261fbbc3e8897958294e4f017\nenable gapic v2 for containeranalysis.\ncommitter: @hzyi-google\n\nPiperOrigin-RevId: 303821111\n\nbaf83e521834b67397839bcbe2d7864b49e38787\nAdding \"resource_reference\" annotations to services.\n\nPiperOrigin-RevId: 303791704\n\n7be2811ad17013a5ea24cd75dfd9e399dd6e18fe\nfix: Update gapic-generator version to pickup discogapic fixes\n\nPiperOrigin-RevId: 303545940\n\nb655808b3481a92f478ae2f828a6ce8220e40f32\ncloudasset: add org policy and access context manager protos to client libraries.\n\nPiperOrigin-RevId: 303527638\n\nd8c5da9a9471659b51d5862dd2ea7ad3c4bc49ef\nPopulate BAZEL.build files for AccessContextManager.\n\nPiperOrigin-RevId: 303526825\n\ncf9db7161cb9d4dbef06cd8bf5354ec485e51e2d\nPopulate BAZEL.build files for OrgPolicy.\n\nPiperOrigin-RevId: 303526702\n\n558b800ed594acc02555cc560fbb39c0e42bc438\nchore: turn on gapic v2 for Dataproc API.\nfix:\n- add missing method signatures\n- remove resource_reference not on a string field\n- adjust resource name pattern orders\n\nPiperOrigin-RevId: 303431167\n\n8eb444cf5ff63f68d826acbb37b2ac3da58655fb\nAdd logging protos for Recommender v1beta1.\n\nPiperOrigin-RevId: 303426030\n\n48a166ce9f6e2a88b10947341b37336fe9dd3478\nPush of PHP, C# and Ruby namespaces\n\nPiperOrigin-RevId: 303302813\n\n42f77489b300df2e27c84a7b65c4e8f04da20981\nThis is first release of the API protos and Bazel BUILD files for the Analytics Management API V1alpha.\n\nPiperOrigin-RevId: 303241805\n\n8bea81bfa461698981b3d3a488a95633d2f6e9ff\nchore: use latest protoc-java-resource-name-plugin in bazel WORKSPACE.\nnew commits:\n- fix: stop generating `parseList` and `toStringList` if a multi-pattern resource name has subclasses (#79)\n\ncommitter: @hzyi-google\nPiperOrigin-RevId: 303197602\n\nb14af92e565264675d6b12cd2c0ded6c94ddd7f8\nfix talent API incorrect placeholders in two resource name patterns.\ncommitter: @hzyi-google\n\nPiperOrigin-RevId: 303189497\n\n8e22db908ae09e1f7e2802c03b4563fd6b524e0e\nchore(google/maps): Update postprocessing script for Java.\n\n- Update root build.gradle to load local plugin\n- Change com.google.api.grpc group to com.google.maps\n\nPiperOrigin-RevId: 303176850\n\n65816afa71e588252b7119dc723592abe51ea106\nbazel: update gapic-generator-go to v0.12.5 and gapic-generator hash\n\nChanges to gapic-generator-go include:\n* feat: strip invalid link references in comments\n* chore: updating Go deps in bazel repositories\n\nChanges to gapic-generator include:\n* fix: bazel go build gen check for cloud in proto pkg name\n* Revert \"feat: allow static substitution for group name\"\n\nPiperOrigin-RevId: 303150338\n\nd4aa417ed2bba89c2d216900282bddfdafef6128\nFix incorrect retry config in gapic v2 for kms.\n\nPiperOrigin-RevId: 303010132\n\nfd08334533204fdd1b33f79fcb263dbb5bf13de0\nfix: osconfig/v1 update go_gapic_library target to microgen interface\n\nPiperOrigin-RevId: 303007866\n\ne2c0f2a0e06d86b50aba98f67f9f291587d986b3\nUpdate comments for google/rpc/error_details.proto.\n\nPiperOrigin-RevId: 303002528\n\nf786c7586748e78a286b1620ff3ddbf7b4dcab92\nfeat: Add OsConfigService v1 patch APIs.\n\nPiperOrigin-RevId: 302999346\n\n0341fa3fc2f4073a1b1f260d37b2ce620799f545\nTurn on gapic config v2 for kms.\n\nCommitter: @hzyi-google\nPiperOrigin-RevId: 302980301\n\n32dc6e832039b61ac3fb82c72eb0a27570aebcd6\nredis: v1beta1 enables REDIS_5_0 as an option for redis_version field and adds two new redis configs --stream-node-max-entries --stream-node-max-bytes\n\nPiperOrigin-RevId: 302958009\n\n685f16483cc4d87c35051f21f8f13ef4fdc919b4\nredis: v1 enables REDIS_5_0 as an option for redis_version field and adds two new redis configs --stream-node-max-entries --stream-node-max-bytes\n\nPiperOrigin-RevId: 302957729\n\n733cb282ae5e64673ef86c9a5dff647df803d8b7\nAdd GAPIC cofiguration for v1 client library genetration.\n\nPiperOrigin-RevId: 302928200\n\n1b0fff5f2ec6dc4a9443d9b50e70e9c94c30c45b\ndocs: remove an internal lint declaration\n\nPiperOrigin-RevId: 302928106\n\n2be23f3f3036a6f7ce0844def3d2d3da74e5d415\nfix(google/maps): Add post-processing rules for Google Maps APIs\n\nPiperOrigin-RevId: 302925222\n\n" + "internalRef": "304724866" } }, { From 3436a0e4e4681d5aff9f843eae5b10aba919d737 Mon Sep 17 00:00:00 2001 From: "release-please[bot]" <55107282+release-please[bot]@users.noreply.github.com> Date: Tue, 7 Apr 2020 17:16:24 +0000 Subject: [PATCH 20/20] chore: release 0.1.1 (#46) :robot: I have created a release \*beep\* \*boop\* --- ### [0.1.1](https://www.github.com/googleapis/java-document-ai/compare/v0.1.0...v0.1.1) (2020-04-07) ### Bug Fixes * **v1beta2:** set default endpoint to us-documentai.googleapis.com ([#44](https://www.github.com/googleapis/java-document-ai/issues/44)) ([1b928a1](https://www.github.com/googleapis/java-document-ai/commit/1b928a1de50f8a8ba141d4c8492cfeda7a3b6c80)) ### Dependencies * update core dependencies ([#10](https://www.github.com/googleapis/java-document-ai/issues/10)) ([aa252ef](https://www.github.com/googleapis/java-document-ai/commit/aa252ef3b3aa3bab3fb99224ac0e4e70d8167266)) * update dependency com.google.api:api-common to v1.9.0 ([#37](https://www.github.com/googleapis/java-document-ai/issues/37)) ([ec3b6cc](https://www.github.com/googleapis/java-document-ai/commit/ec3b6cc5f7b424350d3e79ed478a2a4e7d537124)) * update dependency org.threeten:threetenbp to v1.4.3 ([#29](https://www.github.com/googleapis/java-document-ai/issues/29)) ([ec57073](https://www.github.com/googleapis/java-document-ai/commit/ec5707332800e82aef0735b17451a7c555e4fa92)) --- This PR was generated with [Release Please](https://github.com/googleapis/release-please). --- CHANGELOG.md | 14 ++++++++++++++ README.md | 6 +++--- google-cloud-document-ai-bom/pom.xml | 12 ++++++------ google-cloud-document-ai/pom.xml | 4 ++-- grpc-google-cloud-document-ai-v1beta1/pom.xml | 4 ++-- grpc-google-cloud-document-ai-v1beta2/pom.xml | 4 ++-- pom.xml | 10 +++++----- proto-google-cloud-document-ai-v1beta1/pom.xml | 4 ++-- proto-google-cloud-document-ai-v1beta2/pom.xml | 4 ++-- versions.txt | 10 +++++----- 10 files changed, 43 insertions(+), 29 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 7528ebf4..22bd8686 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,19 @@ # Changelog +### [0.1.1](https://www.github.com/googleapis/java-document-ai/compare/v0.1.0...v0.1.1) (2020-04-07) + + +### Bug Fixes + +* **v1beta2:** set default endpoint to us-documentai.googleapis.com ([#44](https://www.github.com/googleapis/java-document-ai/issues/44)) ([1b928a1](https://www.github.com/googleapis/java-document-ai/commit/1b928a1de50f8a8ba141d4c8492cfeda7a3b6c80)) + + +### Dependencies + +* update core dependencies ([#10](https://www.github.com/googleapis/java-document-ai/issues/10)) ([aa252ef](https://www.github.com/googleapis/java-document-ai/commit/aa252ef3b3aa3bab3fb99224ac0e4e70d8167266)) +* update dependency com.google.api:api-common to v1.9.0 ([#37](https://www.github.com/googleapis/java-document-ai/issues/37)) ([ec3b6cc](https://www.github.com/googleapis/java-document-ai/commit/ec3b6cc5f7b424350d3e79ed478a2a4e7d537124)) +* update dependency org.threeten:threetenbp to v1.4.3 ([#29](https://www.github.com/googleapis/java-document-ai/issues/29)) ([ec57073](https://www.github.com/googleapis/java-document-ai/commit/ec5707332800e82aef0735b17451a7c555e4fa92)) + ## 0.1.0 (2020-03-16) diff --git a/README.md b/README.md index d07edd23..32481a0a 100644 --- a/README.md +++ b/README.md @@ -43,18 +43,18 @@ If you are using Maven without BOM, add this to your dependencies: com.google.cloud google-cloud-document-ai - 0.1.0 + 0.1.1 ``` If you are using Gradle, add this to your dependencies ```Groovy -compile 'com.google.cloud:google-cloud-document-ai:0.1.0' +compile 'com.google.cloud:google-cloud-document-ai:0.1.1' ``` If you are using SBT, add this to your dependencies ```Scala -libraryDependencies += "com.google.cloud" % "google-cloud-document-ai" % "0.1.0" +libraryDependencies += "com.google.cloud" % "google-cloud-document-ai" % "0.1.1" ``` [//]: # ({x-version-update-end}) diff --git a/google-cloud-document-ai-bom/pom.xml b/google-cloud-document-ai-bom/pom.xml index 0e353edd..97d42400 100644 --- a/google-cloud-document-ai-bom/pom.xml +++ b/google-cloud-document-ai-bom/pom.xml @@ -3,7 +3,7 @@ 4.0.0 com.google.cloud google-cloud-document-ai-bom - 0.1.1-SNAPSHOT + 0.1.1 pom com.google.cloud @@ -61,27 +61,27 @@ com.google.api.grpc proto-google-cloud-document-ai-v1beta1 - 0.1.1-SNAPSHOT + 0.1.1 com.google.api.grpc proto-google-cloud-document-ai-v1beta2 - 0.1.1-SNAPSHOT + 0.1.1 com.google.api.grpc grpc-google-cloud-document-ai-v1beta1 - 0.1.1-SNAPSHOT + 0.1.1 com.google.api.grpc grpc-google-cloud-document-ai-v1beta2 - 0.1.1-SNAPSHOT + 0.1.1 com.google.cloud google-cloud-document-ai - 0.1.1-SNAPSHOT + 0.1.1 diff --git a/google-cloud-document-ai/pom.xml b/google-cloud-document-ai/pom.xml index 4e6774ae..722ca587 100644 --- a/google-cloud-document-ai/pom.xml +++ b/google-cloud-document-ai/pom.xml @@ -3,7 +3,7 @@ 4.0.0 com.google.cloud google-cloud-document-ai - 0.1.1-SNAPSHOT + 0.1.1 jar Google Cloud Document AI https://github.com/googleapis/java-documentai @@ -11,7 +11,7 @@ com.google.cloud google-cloud-document-ai-parent - 0.1.1-SNAPSHOT + 0.1.1 google-cloud-document-ai diff --git a/grpc-google-cloud-document-ai-v1beta1/pom.xml b/grpc-google-cloud-document-ai-v1beta1/pom.xml index 5a70b864..19329c5e 100644 --- a/grpc-google-cloud-document-ai-v1beta1/pom.xml +++ b/grpc-google-cloud-document-ai-v1beta1/pom.xml @@ -3,13 +3,13 @@ 4.0.0 com.google.api.grpc grpc-google-cloud-document-ai-v1beta1 - 0.1.1-SNAPSHOT + 0.1.1 grpc-google-cloud-document-ai-v1beta1 GRPC library for grpc-google-cloud-document-ai-v1beta1 com.google.cloud google-cloud-document-ai-parent - 0.1.1-SNAPSHOT + 0.1.1 diff --git a/grpc-google-cloud-document-ai-v1beta2/pom.xml b/grpc-google-cloud-document-ai-v1beta2/pom.xml index 1f144d37..479ede42 100644 --- a/grpc-google-cloud-document-ai-v1beta2/pom.xml +++ b/grpc-google-cloud-document-ai-v1beta2/pom.xml @@ -3,13 +3,13 @@ 4.0.0 com.google.api.grpc grpc-google-cloud-document-ai-v1beta2 - 0.1.1-SNAPSHOT + 0.1.1 grpc-google-cloud-document-ai-v1beta2 GRPC library for grpc-google-cloud-document-ai-v1beta2 com.google.cloud google-cloud-document-ai-parent - 0.1.1-SNAPSHOT + 0.1.1 diff --git a/pom.xml b/pom.xml index ff623a97..1a1e4173 100644 --- a/pom.xml +++ b/pom.xml @@ -4,7 +4,7 @@ com.google.cloud google-cloud-document-ai-parent pom - 0.1.1-SNAPSHOT + 0.1.1 Google Cloud Document AI Parent https://github.com/googleapis/java-documentai @@ -81,22 +81,22 @@ com.google.api.grpc grpc-google-cloud-document-ai-v1beta1 - 0.1.1-SNAPSHOT + 0.1.1 com.google.api.grpc grpc-google-cloud-document-ai-v1beta2 - 0.1.1-SNAPSHOT + 0.1.1 com.google.api.grpc proto-google-cloud-document-ai-v1beta1 - 0.1.1-SNAPSHOT + 0.1.1 com.google.api.grpc proto-google-cloud-document-ai-v1beta2 - 0.1.1-SNAPSHOT + 0.1.1 diff --git a/proto-google-cloud-document-ai-v1beta1/pom.xml b/proto-google-cloud-document-ai-v1beta1/pom.xml index 331b75fd..cded8555 100644 --- a/proto-google-cloud-document-ai-v1beta1/pom.xml +++ b/proto-google-cloud-document-ai-v1beta1/pom.xml @@ -3,13 +3,13 @@ 4.0.0 com.google.api.grpc proto-google-cloud-document-ai-v1beta1 - 0.1.1-SNAPSHOT + 0.1.1 proto-google-cloud-document-ai-v1beta1 PROTO library for proto-google-cloud-document-ai-v1beta1 com.google.cloud google-cloud-document-ai-parent - 0.1.1-SNAPSHOT + 0.1.1 diff --git a/proto-google-cloud-document-ai-v1beta2/pom.xml b/proto-google-cloud-document-ai-v1beta2/pom.xml index b75cc85e..78f6000c 100644 --- a/proto-google-cloud-document-ai-v1beta2/pom.xml +++ b/proto-google-cloud-document-ai-v1beta2/pom.xml @@ -3,13 +3,13 @@ 4.0.0 com.google.api.grpc proto-google-cloud-document-ai-v1beta2 - 0.1.1-SNAPSHOT + 0.1.1 proto-google-cloud-document-ai-v1beta2 PROTO library for proto-google-cloud-document-ai-v1beta2 com.google.cloud google-cloud-document-ai-parent - 0.1.1-SNAPSHOT + 0.1.1 diff --git a/versions.txt b/versions.txt index 6ac5c56a..e1e7118b 100644 --- a/versions.txt +++ b/versions.txt @@ -1,5 +1,5 @@ -proto-google-cloud-document-ai-v1beta1:0.1.0:0.1.1-SNAPSHOT -proto-google-cloud-document-ai-v1beta2:0.1.0:0.1.1-SNAPSHOT -grpc-google-cloud-document-ai-v1beta1:0.1.0:0.1.1-SNAPSHOT -grpc-google-cloud-document-ai-v1beta2:0.1.0:0.1.1-SNAPSHOT -google-cloud-document-ai:0.1.0:0.1.1-SNAPSHOT +proto-google-cloud-document-ai-v1beta1:0.1.1:0.1.1 +proto-google-cloud-document-ai-v1beta2:0.1.1:0.1.1 +grpc-google-cloud-document-ai-v1beta1:0.1.1:0.1.1 +grpc-google-cloud-document-ai-v1beta2:0.1.1:0.1.1 +google-cloud-document-ai:0.1.1:0.1.1