From 467fc11158491de07e57fc611c1cf2f518244d43 Mon Sep 17 00:00:00 2001 From: Jason Dobry Date: Wed, 7 Dec 2016 20:32:29 -0800 Subject: [PATCH 01/98] samples: Add NL quickstart sample. Fix some other quickstarts. (#438) --- .../example/language/QuickstartSample.java | 44 +++++++++++++ .../example/language/QuickstartSampleIT.java | 61 +++++++++++++++++++ 2 files changed, 105 insertions(+) create mode 100644 language/snippets/src/main/java/com/example/language/QuickstartSample.java create mode 100644 language/snippets/src/test/java/com/example/language/QuickstartSampleIT.java diff --git a/language/snippets/src/main/java/com/example/language/QuickstartSample.java b/language/snippets/src/main/java/com/example/language/QuickstartSample.java new file mode 100644 index 00000000000..215518e15e1 --- /dev/null +++ b/language/snippets/src/main/java/com/example/language/QuickstartSample.java @@ -0,0 +1,44 @@ +/* + Copyright 2016, Google, Inc. + + 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. +*/ + +package com.example.language; + +// [START language_quickstart] +// Imports the Google Cloud client library +import com.google.cloud.language.spi.v1.LanguageServiceClient; + +import com.google.cloud.language.v1.Document; +import com.google.cloud.language.v1.Document.Type; +import com.google.cloud.language.v1.Sentiment; + +public class QuickstartSample { + public static void main(String... args) throws Exception { + // Instantiates a client + LanguageServiceClient language = LanguageServiceClient.create(); + + // The text to analyze + String text = "Hello, world!"; + Document doc = Document.newBuilder() + .setContent(text).setType(Type.PLAIN_TEXT).build(); + + // Detects the sentiment of the text + Sentiment sentiment = language.analyzeSentiment(doc).getDocumentSentiment(); + + System.out.printf("Text: %s%n", text); + System.out.printf("Sentiment: %s, %s%n", sentiment.getScore(), sentiment.getMagnitude()); + } +} +// [END language_quickstart] diff --git a/language/snippets/src/test/java/com/example/language/QuickstartSampleIT.java b/language/snippets/src/test/java/com/example/language/QuickstartSampleIT.java new file mode 100644 index 00000000000..e4e48ec2081 --- /dev/null +++ b/language/snippets/src/test/java/com/example/language/QuickstartSampleIT.java @@ -0,0 +1,61 @@ +/* + Copyright 2016, Google, Inc. + + 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. +*/ + +package com.example.language; + +import static com.google.common.truth.Truth.assertThat; + +import org.junit.After; +import org.junit.Before; +import org.junit.Test; +import org.junit.runner.RunWith; +import org.junit.runners.JUnit4; + +import java.io.ByteArrayOutputStream; +import java.io.PrintStream; + +/** + * Tests for quickstart sample. + */ +@RunWith(JUnit4.class) +@SuppressWarnings("checkstyle:abbreviationaswordinname") +public class QuickstartSampleIT { + private ByteArrayOutputStream bout; + private PrintStream out; + + @Before + public void setUp() { + bout = new ByteArrayOutputStream(); + out = new PrintStream(bout); + System.setOut(out); + } + + @After + public void tearDown() { + System.setOut(null); + } + + @Test + public void testQuickstart() throws Exception { + // Act + QuickstartSample.main(); + + // Assert + String got = bout.toString(); + assertThat(got).contains("Text: Hello, world!"); + assertThat(got).contains("Sentiment: "); + } +} From 2bab2676fdf0f357d090bd6807dfad47318c8323 Mon Sep 17 00:00:00 2001 From: Jisha Abubaker Date: Mon, 19 Jun 2017 16:22:12 -0700 Subject: [PATCH 02/98] samples: updating to latest google-cloud-* dependencies (#723) --- .../src/main/java/com/example/language/QuickstartSample.java | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/language/snippets/src/main/java/com/example/language/QuickstartSample.java b/language/snippets/src/main/java/com/example/language/QuickstartSample.java index 215518e15e1..115c0e4d52f 100644 --- a/language/snippets/src/main/java/com/example/language/QuickstartSample.java +++ b/language/snippets/src/main/java/com/example/language/QuickstartSample.java @@ -18,10 +18,9 @@ // [START language_quickstart] // Imports the Google Cloud client library -import com.google.cloud.language.spi.v1.LanguageServiceClient; - import com.google.cloud.language.v1.Document; import com.google.cloud.language.v1.Document.Type; +import com.google.cloud.language.v1.LanguageServiceClient; import com.google.cloud.language.v1.Sentiment; public class QuickstartSample { From 6aeb917abe9006bf497c0c1ed1a0b32a2f4982b7 Mon Sep 17 00:00:00 2001 From: Jisha Abubaker Date: Tue, 19 Sep 2017 08:50:36 -0700 Subject: [PATCH 03/98] samples: Language samples (#845) * Language samples * Updates to recently published libraries. * Updates to latest client library version. * Moves new production features to v1, updates tests, updates docs. --- .../example/language/QuickstartSample.java | 19 ++++++++++--------- .../example/language/QuickstartSampleIT.java | 6 +++--- 2 files changed, 13 insertions(+), 12 deletions(-) diff --git a/language/snippets/src/main/java/com/example/language/QuickstartSample.java b/language/snippets/src/main/java/com/example/language/QuickstartSample.java index 115c0e4d52f..e04a55449b9 100644 --- a/language/snippets/src/main/java/com/example/language/QuickstartSample.java +++ b/language/snippets/src/main/java/com/example/language/QuickstartSample.java @@ -26,18 +26,19 @@ public class QuickstartSample { public static void main(String... args) throws Exception { // Instantiates a client - LanguageServiceClient language = LanguageServiceClient.create(); + try (LanguageServiceClient language = LanguageServiceClient.create()) { - // The text to analyze - String text = "Hello, world!"; - Document doc = Document.newBuilder() - .setContent(text).setType(Type.PLAIN_TEXT).build(); + // The text to analyze + String text = "Hello, world!"; + Document doc = Document.newBuilder() + .setContent(text).setType(Type.PLAIN_TEXT).build(); - // Detects the sentiment of the text - Sentiment sentiment = language.analyzeSentiment(doc).getDocumentSentiment(); + // Detects the sentiment of the text + Sentiment sentiment = language.analyzeSentiment(doc).getDocumentSentiment(); - System.out.printf("Text: %s%n", text); - System.out.printf("Sentiment: %s, %s%n", sentiment.getScore(), sentiment.getMagnitude()); + System.out.printf("Text: %s%n", text); + System.out.printf("Sentiment: %s, %s%n", sentiment.getScore(), sentiment.getMagnitude()); + } } } // [END language_quickstart] diff --git a/language/snippets/src/test/java/com/example/language/QuickstartSampleIT.java b/language/snippets/src/test/java/com/example/language/QuickstartSampleIT.java index e4e48ec2081..d814f1ea232 100644 --- a/language/snippets/src/test/java/com/example/language/QuickstartSampleIT.java +++ b/language/snippets/src/test/java/com/example/language/QuickstartSampleIT.java @@ -18,15 +18,15 @@ import static com.google.common.truth.Truth.assertThat; + +import java.io.ByteArrayOutputStream; +import java.io.PrintStream; import org.junit.After; import org.junit.Before; import org.junit.Test; import org.junit.runner.RunWith; import org.junit.runners.JUnit4; -import java.io.ByteArrayOutputStream; -import java.io.PrintStream; - /** * Tests for quickstart sample. */ From 095ddd9903cc9f14eec84d3173cdf3ee5db14961 Mon Sep 17 00:00:00 2001 From: Kurtis Van Gent <31518063+kurtisvg@users.noreply.github.com> Date: Fri, 12 Jan 2018 17:20:35 -0800 Subject: [PATCH 04/98] samples: Update KMS, Language, and Logging folders. (#990) * Updated kms/. * Updated language/ * Updated logging/ * Resolve project conflict between logging and error reporting. * Fixed missing checkstyle violoations. --- .../example/language/QuickstartSample.java | 28 +++++++++--------- .../example/language/QuickstartSampleIT.java | 29 +++++++++---------- 2 files changed, 28 insertions(+), 29 deletions(-) diff --git a/language/snippets/src/main/java/com/example/language/QuickstartSample.java b/language/snippets/src/main/java/com/example/language/QuickstartSample.java index e04a55449b9..85f516bd1ef 100644 --- a/language/snippets/src/main/java/com/example/language/QuickstartSample.java +++ b/language/snippets/src/main/java/com/example/language/QuickstartSample.java @@ -1,18 +1,18 @@ /* - Copyright 2016, Google, Inc. - - 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. -*/ + * Copyright 2016 Google Inc. + * + * 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. + */ package com.example.language; diff --git a/language/snippets/src/test/java/com/example/language/QuickstartSampleIT.java b/language/snippets/src/test/java/com/example/language/QuickstartSampleIT.java index d814f1ea232..4fad6479404 100644 --- a/language/snippets/src/test/java/com/example/language/QuickstartSampleIT.java +++ b/language/snippets/src/test/java/com/example/language/QuickstartSampleIT.java @@ -1,24 +1,23 @@ /* - Copyright 2016, Google, Inc. - - 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. -*/ + * Copyright 2016 Google Inc. + * + * 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. + */ package com.example.language; import static com.google.common.truth.Truth.assertThat; - import java.io.ByteArrayOutputStream; import java.io.PrintStream; import org.junit.After; From cd7f346b68dbb6cfbd0228f3a6300744efa2a908 Mon Sep 17 00:00:00 2001 From: Noah Negrey Date: Tue, 12 Nov 2019 10:31:31 -0700 Subject: [PATCH 05/98] samples: Set Endpoint Samples (#1644) * Set Endpoint Samples * Update pom.xml --- .../com/example/language/SetEndpoint.java | 53 ++++++++++++++++ .../com/example/language/SetEndpointIT.java | 62 +++++++++++++++++++ 2 files changed, 115 insertions(+) create mode 100644 language/snippets/src/main/java/com/example/language/SetEndpoint.java create mode 100644 language/snippets/src/test/java/com/example/language/SetEndpointIT.java diff --git a/language/snippets/src/main/java/com/example/language/SetEndpoint.java b/language/snippets/src/main/java/com/example/language/SetEndpoint.java new file mode 100644 index 00000000000..618d91b4259 --- /dev/null +++ b/language/snippets/src/main/java/com/example/language/SetEndpoint.java @@ -0,0 +1,53 @@ +/* + * Copyright 2019 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. + */ + +package com.example.language; + +import com.google.cloud.language.v1.Document; +import com.google.cloud.language.v1.LanguageServiceClient; +import com.google.cloud.language.v1.LanguageServiceSettings; +import com.google.cloud.language.v1.Sentiment; + +import java.io.IOException; + +class SetEndpoint { + + // Change your endpoint + static void setEndpoint() throws IOException { + // [START language_set_endpoint] + LanguageServiceSettings settings = LanguageServiceSettings.newBuilder() + .setEndpoint("eu-language.googleapis.com:443") + .build(); + + // Initialize client that will be used to send requests. This client only needs to be created + // once, and can be reused for multiple requests. After completing all of your requests, call + // the "close" method on the client to safely clean up any remaining background resources. + LanguageServiceClient client = LanguageServiceClient.create(settings); + // [END language_set_endpoint] + + // The text to analyze + String text = "Hello, world!"; + Document doc = Document.newBuilder() + .setContent(text).setType(Document.Type.PLAIN_TEXT).build(); + + // Detects the sentiment of the text + Sentiment sentiment = client.analyzeSentiment(doc).getDocumentSentiment(); + + System.out.printf("Text: %s%n", text); + System.out.printf("Sentiment: %s, %s%n", sentiment.getScore(), sentiment.getMagnitude()); + client.close(); + } +} diff --git a/language/snippets/src/test/java/com/example/language/SetEndpointIT.java b/language/snippets/src/test/java/com/example/language/SetEndpointIT.java new file mode 100644 index 00000000000..1a8bbc50636 --- /dev/null +++ b/language/snippets/src/test/java/com/example/language/SetEndpointIT.java @@ -0,0 +1,62 @@ +/* + * Copyright 2019 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. + */ + +package com.example.language; + +import static com.google.common.truth.Truth.assertThat; + +import java.io.ByteArrayOutputStream; +import java.io.IOException; +import java.io.PrintStream; + +import org.junit.After; +import org.junit.Before; +import org.junit.Test; +import org.junit.runner.RunWith; +import org.junit.runners.JUnit4; + +/** Tests for Natural Language Set Endpoint */ +@RunWith(JUnit4.class) +@SuppressWarnings("checkstyle:abbreviationaswordinname") +public class SetEndpointIT { + + private ByteArrayOutputStream bout; + private PrintStream out; + + + @Before + public void setUp() { + bout = new ByteArrayOutputStream(); + out = new PrintStream(bout); + System.setOut(out); + } + + @After + public void tearDown() { + System.setOut(null); + } + + + @Test + public void testSetEndpoint() throws IOException { + // Act + SetEndpoint.setEndpoint(); + + // Assert + String got = bout.toString(); + assertThat(got).contains("Sentiment"); + } +} From 960c35f4cd1c5a50b8ce148f450a3b3231cde7e1 Mon Sep 17 00:00:00 2001 From: Yoshi Automation Bot Date: Tue, 17 Mar 2020 16:10:57 -0700 Subject: [PATCH 06/98] samples: scaffold pom.xml files (#79) This PR was generated using Autosynth. :rainbow:
Log from Synthtool ``` 2020-03-17 11:41:48,027 synthtool > Executing /tmpfs/src/git/autosynth/working_repo/synth.py. 2020-03-17 11:41:48,080 synthtool > Ensuring dependencies. 2020-03-17 11:41:48,089 synthtool > Cloning googleapis. 2020-03-17 11:41:48,731 synthtool > Generating code for: google/cloud/language/v1. 2020-03-17 11:41:54,124 synthtool > Generated code into /tmpfs/tmp/tmpbjtyxo_7. 2020-03-17 11:41:54,126 synthtool > Replaced '// Generated by the protocol buffer compiler. DO NOT EDIT!' in /tmpfs/tmp/tmpbjtyxo_7/google-cloud-language-v1-java/proto-google-cloud-language-v1-java/src/main/java/com/google/cloud/language/v1/AnalyzeSentimentResponse.java. 2020-03-17 11:41:54,126 synthtool > Replaced '// Generated by the protocol buffer compiler. DO NOT EDIT!' in /tmpfs/tmp/tmpbjtyxo_7/google-cloud-language-v1-java/proto-google-cloud-language-v1-java/src/main/java/com/google/cloud/language/v1/DependencyEdge.java. 2020-03-17 11:41:54,126 synthtool > Replaced '// Generated by the protocol buffer compiler. DO NOT EDIT!' in /tmpfs/tmp/tmpbjtyxo_7/google-cloud-language-v1-java/proto-google-cloud-language-v1-java/src/main/java/com/google/cloud/language/v1/ClassificationCategoryOrBuilder.java. 2020-03-17 11:41:54,127 synthtool > Replaced '// Generated by the protocol buffer compiler. DO NOT EDIT!' in /tmpfs/tmp/tmpbjtyxo_7/google-cloud-language-v1-java/proto-google-cloud-language-v1-java/src/main/java/com/google/cloud/language/v1/SentenceOrBuilder.java. 2020-03-17 11:41:54,127 synthtool > Replaced '// Generated by the protocol buffer compiler. DO NOT EDIT!' in /tmpfs/tmp/tmpbjtyxo_7/google-cloud-language-v1-java/proto-google-cloud-language-v1-java/src/main/java/com/google/cloud/language/v1/EntityOrBuilder.java. 2020-03-17 11:41:54,127 synthtool > Replaced '// Generated by the protocol buffer compiler. DO NOT EDIT!' in /tmpfs/tmp/tmpbjtyxo_7/google-cloud-language-v1-java/proto-google-cloud-language-v1-java/src/main/java/com/google/cloud/language/v1/TokenOrBuilder.java. 2020-03-17 11:41:54,127 synthtool > Replaced '// Generated by the protocol buffer compiler. DO NOT EDIT!' in /tmpfs/tmp/tmpbjtyxo_7/google-cloud-language-v1-java/proto-google-cloud-language-v1-java/src/main/java/com/google/cloud/language/v1/EntityMention.java. 2020-03-17 11:41:54,128 synthtool > Replaced '// Generated by the protocol buffer compiler. DO NOT EDIT!' in /tmpfs/tmp/tmpbjtyxo_7/google-cloud-language-v1-java/proto-google-cloud-language-v1-java/src/main/java/com/google/cloud/language/v1/PartOfSpeech.java. 2020-03-17 11:41:54,128 synthtool > Replaced '// Generated by the protocol buffer compiler. DO NOT EDIT!' in /tmpfs/tmp/tmpbjtyxo_7/google-cloud-language-v1-java/proto-google-cloud-language-v1-java/src/main/java/com/google/cloud/language/v1/ClassificationCategory.java. 2020-03-17 11:41:54,128 synthtool > Replaced '// Generated by the protocol buffer compiler. DO NOT EDIT!' in /tmpfs/tmp/tmpbjtyxo_7/google-cloud-language-v1-java/proto-google-cloud-language-v1-java/src/main/java/com/google/cloud/language/v1/AnalyzeEntitiesRequest.java. 2020-03-17 11:41:54,128 synthtool > Replaced '// Generated by the protocol buffer compiler. DO NOT EDIT!' in /tmpfs/tmp/tmpbjtyxo_7/google-cloud-language-v1-java/proto-google-cloud-language-v1-java/src/main/java/com/google/cloud/language/v1/TextSpanOrBuilder.java. 2020-03-17 11:41:54,129 synthtool > Replaced '// Generated by the protocol buffer compiler. DO NOT EDIT!' in /tmpfs/tmp/tmpbjtyxo_7/google-cloud-language-v1-java/proto-google-cloud-language-v1-java/src/main/java/com/google/cloud/language/v1/AnalyzeSyntaxRequest.java. 2020-03-17 11:41:54,129 synthtool > Replaced '// Generated by the protocol buffer compiler. DO NOT EDIT!' in /tmpfs/tmp/tmpbjtyxo_7/google-cloud-language-v1-java/proto-google-cloud-language-v1-java/src/main/java/com/google/cloud/language/v1/AnalyzeSentimentRequestOrBuilder.java. 2020-03-17 11:41:54,129 synthtool > Replaced '// Generated by the protocol buffer compiler. DO NOT EDIT!' in /tmpfs/tmp/tmpbjtyxo_7/google-cloud-language-v1-java/proto-google-cloud-language-v1-java/src/main/java/com/google/cloud/language/v1/ClassifyTextRequestOrBuilder.java. 2020-03-17 11:41:54,129 synthtool > Replaced '// Generated by the protocol buffer compiler. DO NOT EDIT!' in /tmpfs/tmp/tmpbjtyxo_7/google-cloud-language-v1-java/proto-google-cloud-language-v1-java/src/main/java/com/google/cloud/language/v1/TextSpan.java. 2020-03-17 11:41:54,129 synthtool > Replaced '// Generated by the protocol buffer compiler. DO NOT EDIT!' in /tmpfs/tmp/tmpbjtyxo_7/google-cloud-language-v1-java/proto-google-cloud-language-v1-java/src/main/java/com/google/cloud/language/v1/EncodingType.java. 2020-03-17 11:41:54,129 synthtool > Replaced '// Generated by the protocol buffer compiler. DO NOT EDIT!' in /tmpfs/tmp/tmpbjtyxo_7/google-cloud-language-v1-java/proto-google-cloud-language-v1-java/src/main/java/com/google/cloud/language/v1/AnalyzeEntitySentimentResponse.java. 2020-03-17 11:41:54,130 synthtool > Replaced '// Generated by the protocol buffer compiler. DO NOT EDIT!' in /tmpfs/tmp/tmpbjtyxo_7/google-cloud-language-v1-java/proto-google-cloud-language-v1-java/src/main/java/com/google/cloud/language/v1/Sentence.java. 2020-03-17 11:41:54,130 synthtool > Replaced '// Generated by the protocol buffer compiler. DO NOT EDIT!' in /tmpfs/tmp/tmpbjtyxo_7/google-cloud-language-v1-java/proto-google-cloud-language-v1-java/src/main/java/com/google/cloud/language/v1/AnalyzeEntitySentimentResponseOrBuilder.java. 2020-03-17 11:41:54,130 synthtool > Replaced '// Generated by the protocol buffer compiler. DO NOT EDIT!' in /tmpfs/tmp/tmpbjtyxo_7/google-cloud-language-v1-java/proto-google-cloud-language-v1-java/src/main/java/com/google/cloud/language/v1/AnalyzeEntitiesResponseOrBuilder.java. 2020-03-17 11:41:54,130 synthtool > Replaced '// Generated by the protocol buffer compiler. DO NOT EDIT!' in /tmpfs/tmp/tmpbjtyxo_7/google-cloud-language-v1-java/proto-google-cloud-language-v1-java/src/main/java/com/google/cloud/language/v1/AnalyzeSyntaxResponseOrBuilder.java. 2020-03-17 11:41:54,130 synthtool > Replaced '// Generated by the protocol buffer compiler. DO NOT EDIT!' in /tmpfs/tmp/tmpbjtyxo_7/google-cloud-language-v1-java/proto-google-cloud-language-v1-java/src/main/java/com/google/cloud/language/v1/SentimentOrBuilder.java. 2020-03-17 11:41:54,130 synthtool > Replaced '// Generated by the protocol buffer compiler. DO NOT EDIT!' in /tmpfs/tmp/tmpbjtyxo_7/google-cloud-language-v1-java/proto-google-cloud-language-v1-java/src/main/java/com/google/cloud/language/v1/Document.java. 2020-03-17 11:41:54,131 synthtool > Replaced '// Generated by the protocol buffer compiler. DO NOT EDIT!' in /tmpfs/tmp/tmpbjtyxo_7/google-cloud-language-v1-java/proto-google-cloud-language-v1-java/src/main/java/com/google/cloud/language/v1/ClassifyTextResponse.java. 2020-03-17 11:41:54,131 synthtool > Replaced '// Generated by the protocol buffer compiler. DO NOT EDIT!' in /tmpfs/tmp/tmpbjtyxo_7/google-cloud-language-v1-java/proto-google-cloud-language-v1-java/src/main/java/com/google/cloud/language/v1/AnalyzeSentimentRequest.java. 2020-03-17 11:41:54,131 synthtool > Replaced '// Generated by the protocol buffer compiler. DO NOT EDIT!' in /tmpfs/tmp/tmpbjtyxo_7/google-cloud-language-v1-java/proto-google-cloud-language-v1-java/src/main/java/com/google/cloud/language/v1/PartOfSpeechOrBuilder.java. 2020-03-17 11:41:54,131 synthtool > Replaced '// Generated by the protocol buffer compiler. DO NOT EDIT!' in /tmpfs/tmp/tmpbjtyxo_7/google-cloud-language-v1-java/proto-google-cloud-language-v1-java/src/main/java/com/google/cloud/language/v1/AnalyzeSyntaxRequestOrBuilder.java. 2020-03-17 11:41:54,131 synthtool > Replaced '// Generated by the protocol buffer compiler. DO NOT EDIT!' in /tmpfs/tmp/tmpbjtyxo_7/google-cloud-language-v1-java/proto-google-cloud-language-v1-java/src/main/java/com/google/cloud/language/v1/AnalyzeSentimentResponseOrBuilder.java. 2020-03-17 11:41:54,132 synthtool > Replaced '// Generated by the protocol buffer compiler. DO NOT EDIT!' in /tmpfs/tmp/tmpbjtyxo_7/google-cloud-language-v1-java/proto-google-cloud-language-v1-java/src/main/java/com/google/cloud/language/v1/DependencyEdgeOrBuilder.java. 2020-03-17 11:41:54,132 synthtool > Replaced '// Generated by the protocol buffer compiler. DO NOT EDIT!' in /tmpfs/tmp/tmpbjtyxo_7/google-cloud-language-v1-java/proto-google-cloud-language-v1-java/src/main/java/com/google/cloud/language/v1/Sentiment.java. 2020-03-17 11:41:54,132 synthtool > Replaced '// Generated by the protocol buffer compiler. DO NOT EDIT!' in /tmpfs/tmp/tmpbjtyxo_7/google-cloud-language-v1-java/proto-google-cloud-language-v1-java/src/main/java/com/google/cloud/language/v1/AnalyzeEntitySentimentRequestOrBuilder.java. 2020-03-17 11:41:54,132 synthtool > Replaced '// Generated by the protocol buffer compiler. DO NOT EDIT!' in /tmpfs/tmp/tmpbjtyxo_7/google-cloud-language-v1-java/proto-google-cloud-language-v1-java/src/main/java/com/google/cloud/language/v1/ClassifyTextRequest.java. 2020-03-17 11:41:54,132 synthtool > Replaced '// Generated by the protocol buffer compiler. DO NOT EDIT!' in /tmpfs/tmp/tmpbjtyxo_7/google-cloud-language-v1-java/proto-google-cloud-language-v1-java/src/main/java/com/google/cloud/language/v1/LanguageServiceProto.java. 2020-03-17 11:41:54,132 synthtool > Replaced '// Generated by the protocol buffer compiler. DO NOT EDIT!' in /tmpfs/tmp/tmpbjtyxo_7/google-cloud-language-v1-java/proto-google-cloud-language-v1-java/src/main/java/com/google/cloud/language/v1/DocumentOrBuilder.java. 2020-03-17 11:41:54,133 synthtool > Replaced '// Generated by the protocol buffer compiler. DO NOT EDIT!' in /tmpfs/tmp/tmpbjtyxo_7/google-cloud-language-v1-java/proto-google-cloud-language-v1-java/src/main/java/com/google/cloud/language/v1/AnalyzeSyntaxResponse.java. 2020-03-17 11:41:54,133 synthtool > Replaced '// Generated by the protocol buffer compiler. DO NOT EDIT!' in /tmpfs/tmp/tmpbjtyxo_7/google-cloud-language-v1-java/proto-google-cloud-language-v1-java/src/main/java/com/google/cloud/language/v1/AnnotateTextRequestOrBuilder.java. 2020-03-17 11:41:54,133 synthtool > Replaced '// Generated by the protocol buffer compiler. DO NOT EDIT!' in /tmpfs/tmp/tmpbjtyxo_7/google-cloud-language-v1-java/proto-google-cloud-language-v1-java/src/main/java/com/google/cloud/language/v1/Token.java. 2020-03-17 11:41:54,133 synthtool > Replaced '// Generated by the protocol buffer compiler. DO NOT EDIT!' in /tmpfs/tmp/tmpbjtyxo_7/google-cloud-language-v1-java/proto-google-cloud-language-v1-java/src/main/java/com/google/cloud/language/v1/ClassifyTextResponseOrBuilder.java. 2020-03-17 11:41:54,133 synthtool > Replaced '// Generated by the protocol buffer compiler. DO NOT EDIT!' in /tmpfs/tmp/tmpbjtyxo_7/google-cloud-language-v1-java/proto-google-cloud-language-v1-java/src/main/java/com/google/cloud/language/v1/AnalyzeEntitiesRequestOrBuilder.java. 2020-03-17 11:41:54,133 synthtool > Replaced '// Generated by the protocol buffer compiler. DO NOT EDIT!' in /tmpfs/tmp/tmpbjtyxo_7/google-cloud-language-v1-java/proto-google-cloud-language-v1-java/src/main/java/com/google/cloud/language/v1/AnalyzeEntitiesResponse.java. 2020-03-17 11:41:54,134 synthtool > Replaced '// Generated by the protocol buffer compiler. DO NOT EDIT!' in /tmpfs/tmp/tmpbjtyxo_7/google-cloud-language-v1-java/proto-google-cloud-language-v1-java/src/main/java/com/google/cloud/language/v1/AnnotateTextResponse.java. 2020-03-17 11:41:54,134 synthtool > Replaced '// Generated by the protocol buffer compiler. DO NOT EDIT!' in /tmpfs/tmp/tmpbjtyxo_7/google-cloud-language-v1-java/proto-google-cloud-language-v1-java/src/main/java/com/google/cloud/language/v1/EntityMentionOrBuilder.java. 2020-03-17 11:41:54,134 synthtool > Replaced '// Generated by the protocol buffer compiler. DO NOT EDIT!' in /tmpfs/tmp/tmpbjtyxo_7/google-cloud-language-v1-java/proto-google-cloud-language-v1-java/src/main/java/com/google/cloud/language/v1/AnnotateTextRequest.java. 2020-03-17 11:41:54,135 synthtool > Replaced '// Generated by the protocol buffer compiler. DO NOT EDIT!' in /tmpfs/tmp/tmpbjtyxo_7/google-cloud-language-v1-java/proto-google-cloud-language-v1-java/src/main/java/com/google/cloud/language/v1/Entity.java. 2020-03-17 11:41:54,135 synthtool > Replaced '// Generated by the protocol buffer compiler. DO NOT EDIT!' in /tmpfs/tmp/tmpbjtyxo_7/google-cloud-language-v1-java/proto-google-cloud-language-v1-java/src/main/java/com/google/cloud/language/v1/AnnotateTextResponseOrBuilder.java. 2020-03-17 11:41:54,135 synthtool > Replaced '// Generated by the protocol buffer compiler. DO NOT EDIT!' in /tmpfs/tmp/tmpbjtyxo_7/google-cloud-language-v1-java/proto-google-cloud-language-v1-java/src/main/java/com/google/cloud/language/v1/AnalyzeEntitySentimentRequest.java. 2020-03-17 11:41:54,139 synthtool > No replacements made in [PosixPath('/tmpfs/tmp/tmpbjtyxo_7/google-cloud-language-v1-java/proto-google-cloud-language-v1-java/src/**/*Name.java'), PosixPath('/tmpfs/tmp/tmpbjtyxo_7/google-cloud-language-v1-java/proto-google-cloud-language-v1-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-17 11:41:54,141 synthtool > Replaced '^package (.*);' in /tmpfs/tmp/tmpbjtyxo_7/google-cloud-language-v1-java/grpc-google-cloud-language-v1-java/src/main/java/com/google/cloud/language/v1/LanguageServiceGrpc.java. 2020-03-17 11:41:54,157 synthtool > No files in sources [PosixPath('/tmpfs/tmp/tmpbjtyxo_7/google-cloud-language-v1-java/gapic-google-cloud-language-v1-java/samples/src')] were copied. Does the source contain files? 2020-03-17 11:41:54,157 synthtool > No files in sources [PosixPath('/tmpfs/tmp/tmpbjtyxo_7/google-cloud-language-v1-java/gapic-google-cloud-language-v1-java/samples/resources')] were copied. Does the source contain files? 2020-03-17 11:41:54,157 synthtool > No files in sources [PosixPath('/tmpfs/tmp/tmpbjtyxo_7/google-cloud-language-v1-java/gapic-google-cloud-language-v1-java/samples/src/**/*.manifest.yaml')] were copied. Does the source contain files? 2020-03-17 11:41:54,158 synthtool > Running java formatter on 23 files 2020-03-17 11:41:57,308 synthtool > Running java formatter on 1 files 2020-03-17 11:41:59,312 synthtool > Running java formatter on 46 files 2020-03-17 11:42:06,327 synthtool > Running java formatter on 0 files 2020-03-17 11:42:06,612 synthtool > Ensuring dependencies. 2020-03-17 11:42:06,622 synthtool > Cloning googleapis. 2020-03-17 11:42:07,273 synthtool > Generating code for: google/cloud/language/v1beta2. 2020-03-17 11:42:12,377 synthtool > Generated code into /tmpfs/tmp/tmpxftdb0jz. 2020-03-17 11:42:12,379 synthtool > Replaced '// Generated by the protocol buffer compiler. DO NOT EDIT!' in /tmpfs/tmp/tmpxftdb0jz/google-cloud-language-v1beta2-java/proto-google-cloud-language-v1beta2-java/src/main/java/com/google/cloud/language/v1beta2/AnalyzeSentimentResponse.java. 2020-03-17 11:42:12,379 synthtool > Replaced '// Generated by the protocol buffer compiler. DO NOT EDIT!' in /tmpfs/tmp/tmpxftdb0jz/google-cloud-language-v1beta2-java/proto-google-cloud-language-v1beta2-java/src/main/java/com/google/cloud/language/v1beta2/DependencyEdge.java. 2020-03-17 11:42:12,379 synthtool > Replaced '// Generated by the protocol buffer compiler. DO NOT EDIT!' in /tmpfs/tmp/tmpxftdb0jz/google-cloud-language-v1beta2-java/proto-google-cloud-language-v1beta2-java/src/main/java/com/google/cloud/language/v1beta2/ClassificationCategoryOrBuilder.java. 2020-03-17 11:42:12,380 synthtool > Replaced '// Generated by the protocol buffer compiler. DO NOT EDIT!' in /tmpfs/tmp/tmpxftdb0jz/google-cloud-language-v1beta2-java/proto-google-cloud-language-v1beta2-java/src/main/java/com/google/cloud/language/v1beta2/SentenceOrBuilder.java. 2020-03-17 11:42:12,380 synthtool > Replaced '// Generated by the protocol buffer compiler. DO NOT EDIT!' in /tmpfs/tmp/tmpxftdb0jz/google-cloud-language-v1beta2-java/proto-google-cloud-language-v1beta2-java/src/main/java/com/google/cloud/language/v1beta2/EntityOrBuilder.java. 2020-03-17 11:42:12,380 synthtool > Replaced '// Generated by the protocol buffer compiler. DO NOT EDIT!' in /tmpfs/tmp/tmpxftdb0jz/google-cloud-language-v1beta2-java/proto-google-cloud-language-v1beta2-java/src/main/java/com/google/cloud/language/v1beta2/TokenOrBuilder.java. 2020-03-17 11:42:12,380 synthtool > Replaced '// Generated by the protocol buffer compiler. DO NOT EDIT!' in /tmpfs/tmp/tmpxftdb0jz/google-cloud-language-v1beta2-java/proto-google-cloud-language-v1beta2-java/src/main/java/com/google/cloud/language/v1beta2/EntityMention.java. 2020-03-17 11:42:12,381 synthtool > Replaced '// Generated by the protocol buffer compiler. DO NOT EDIT!' in /tmpfs/tmp/tmpxftdb0jz/google-cloud-language-v1beta2-java/proto-google-cloud-language-v1beta2-java/src/main/java/com/google/cloud/language/v1beta2/PartOfSpeech.java. 2020-03-17 11:42:12,381 synthtool > Replaced '// Generated by the protocol buffer compiler. DO NOT EDIT!' in /tmpfs/tmp/tmpxftdb0jz/google-cloud-language-v1beta2-java/proto-google-cloud-language-v1beta2-java/src/main/java/com/google/cloud/language/v1beta2/ClassificationCategory.java. 2020-03-17 11:42:12,381 synthtool > Replaced '// Generated by the protocol buffer compiler. DO NOT EDIT!' in /tmpfs/tmp/tmpxftdb0jz/google-cloud-language-v1beta2-java/proto-google-cloud-language-v1beta2-java/src/main/java/com/google/cloud/language/v1beta2/AnalyzeEntitiesRequest.java. 2020-03-17 11:42:12,382 synthtool > Replaced '// Generated by the protocol buffer compiler. DO NOT EDIT!' in /tmpfs/tmp/tmpxftdb0jz/google-cloud-language-v1beta2-java/proto-google-cloud-language-v1beta2-java/src/main/java/com/google/cloud/language/v1beta2/TextSpanOrBuilder.java. 2020-03-17 11:42:12,382 synthtool > Replaced '// Generated by the protocol buffer compiler. DO NOT EDIT!' in /tmpfs/tmp/tmpxftdb0jz/google-cloud-language-v1beta2-java/proto-google-cloud-language-v1beta2-java/src/main/java/com/google/cloud/language/v1beta2/AnalyzeSyntaxRequest.java. 2020-03-17 11:42:12,382 synthtool > Replaced '// Generated by the protocol buffer compiler. DO NOT EDIT!' in /tmpfs/tmp/tmpxftdb0jz/google-cloud-language-v1beta2-java/proto-google-cloud-language-v1beta2-java/src/main/java/com/google/cloud/language/v1beta2/AnalyzeSentimentRequestOrBuilder.java. 2020-03-17 11:42:12,382 synthtool > Replaced '// Generated by the protocol buffer compiler. DO NOT EDIT!' in /tmpfs/tmp/tmpxftdb0jz/google-cloud-language-v1beta2-java/proto-google-cloud-language-v1beta2-java/src/main/java/com/google/cloud/language/v1beta2/ClassifyTextRequestOrBuilder.java. 2020-03-17 11:42:12,382 synthtool > Replaced '// Generated by the protocol buffer compiler. DO NOT EDIT!' in /tmpfs/tmp/tmpxftdb0jz/google-cloud-language-v1beta2-java/proto-google-cloud-language-v1beta2-java/src/main/java/com/google/cloud/language/v1beta2/TextSpan.java. 2020-03-17 11:42:12,383 synthtool > Replaced '// Generated by the protocol buffer compiler. DO NOT EDIT!' in /tmpfs/tmp/tmpxftdb0jz/google-cloud-language-v1beta2-java/proto-google-cloud-language-v1beta2-java/src/main/java/com/google/cloud/language/v1beta2/EncodingType.java. 2020-03-17 11:42:12,383 synthtool > Replaced '// Generated by the protocol buffer compiler. DO NOT EDIT!' in /tmpfs/tmp/tmpxftdb0jz/google-cloud-language-v1beta2-java/proto-google-cloud-language-v1beta2-java/src/main/java/com/google/cloud/language/v1beta2/AnalyzeEntitySentimentResponse.java. 2020-03-17 11:42:12,383 synthtool > Replaced '// Generated by the protocol buffer compiler. DO NOT EDIT!' in /tmpfs/tmp/tmpxftdb0jz/google-cloud-language-v1beta2-java/proto-google-cloud-language-v1beta2-java/src/main/java/com/google/cloud/language/v1beta2/Sentence.java. 2020-03-17 11:42:12,383 synthtool > Replaced '// Generated by the protocol buffer compiler. DO NOT EDIT!' in /tmpfs/tmp/tmpxftdb0jz/google-cloud-language-v1beta2-java/proto-google-cloud-language-v1beta2-java/src/main/java/com/google/cloud/language/v1beta2/AnalyzeEntitySentimentResponseOrBuilder.java. 2020-03-17 11:42:12,383 synthtool > Replaced '// Generated by the protocol buffer compiler. DO NOT EDIT!' in /tmpfs/tmp/tmpxftdb0jz/google-cloud-language-v1beta2-java/proto-google-cloud-language-v1beta2-java/src/main/java/com/google/cloud/language/v1beta2/AnalyzeEntitiesResponseOrBuilder.java. 2020-03-17 11:42:12,384 synthtool > Replaced '// Generated by the protocol buffer compiler. DO NOT EDIT!' in /tmpfs/tmp/tmpxftdb0jz/google-cloud-language-v1beta2-java/proto-google-cloud-language-v1beta2-java/src/main/java/com/google/cloud/language/v1beta2/AnalyzeSyntaxResponseOrBuilder.java. 2020-03-17 11:42:12,384 synthtool > Replaced '// Generated by the protocol buffer compiler. DO NOT EDIT!' in /tmpfs/tmp/tmpxftdb0jz/google-cloud-language-v1beta2-java/proto-google-cloud-language-v1beta2-java/src/main/java/com/google/cloud/language/v1beta2/SentimentOrBuilder.java. 2020-03-17 11:42:12,384 synthtool > Replaced '// Generated by the protocol buffer compiler. DO NOT EDIT!' in /tmpfs/tmp/tmpxftdb0jz/google-cloud-language-v1beta2-java/proto-google-cloud-language-v1beta2-java/src/main/java/com/google/cloud/language/v1beta2/Document.java. 2020-03-17 11:42:12,384 synthtool > Replaced '// Generated by the protocol buffer compiler. DO NOT EDIT!' in /tmpfs/tmp/tmpxftdb0jz/google-cloud-language-v1beta2-java/proto-google-cloud-language-v1beta2-java/src/main/java/com/google/cloud/language/v1beta2/ClassifyTextResponse.java. 2020-03-17 11:42:12,385 synthtool > Replaced '// Generated by the protocol buffer compiler. DO NOT EDIT!' in /tmpfs/tmp/tmpxftdb0jz/google-cloud-language-v1beta2-java/proto-google-cloud-language-v1beta2-java/src/main/java/com/google/cloud/language/v1beta2/AnalyzeSentimentRequest.java. 2020-03-17 11:42:12,385 synthtool > Replaced '// Generated by the protocol buffer compiler. DO NOT EDIT!' in /tmpfs/tmp/tmpxftdb0jz/google-cloud-language-v1beta2-java/proto-google-cloud-language-v1beta2-java/src/main/java/com/google/cloud/language/v1beta2/PartOfSpeechOrBuilder.java. 2020-03-17 11:42:12,385 synthtool > Replaced '// Generated by the protocol buffer compiler. DO NOT EDIT!' in /tmpfs/tmp/tmpxftdb0jz/google-cloud-language-v1beta2-java/proto-google-cloud-language-v1beta2-java/src/main/java/com/google/cloud/language/v1beta2/AnalyzeSyntaxRequestOrBuilder.java. 2020-03-17 11:42:12,385 synthtool > Replaced '// Generated by the protocol buffer compiler. DO NOT EDIT!' in /tmpfs/tmp/tmpxftdb0jz/google-cloud-language-v1beta2-java/proto-google-cloud-language-v1beta2-java/src/main/java/com/google/cloud/language/v1beta2/AnalyzeSentimentResponseOrBuilder.java. 2020-03-17 11:42:12,385 synthtool > Replaced '// Generated by the protocol buffer compiler. DO NOT EDIT!' in /tmpfs/tmp/tmpxftdb0jz/google-cloud-language-v1beta2-java/proto-google-cloud-language-v1beta2-java/src/main/java/com/google/cloud/language/v1beta2/DependencyEdgeOrBuilder.java. 2020-03-17 11:42:12,386 synthtool > Replaced '// Generated by the protocol buffer compiler. DO NOT EDIT!' in /tmpfs/tmp/tmpxftdb0jz/google-cloud-language-v1beta2-java/proto-google-cloud-language-v1beta2-java/src/main/java/com/google/cloud/language/v1beta2/Sentiment.java. 2020-03-17 11:42:12,386 synthtool > Replaced '// Generated by the protocol buffer compiler. DO NOT EDIT!' in /tmpfs/tmp/tmpxftdb0jz/google-cloud-language-v1beta2-java/proto-google-cloud-language-v1beta2-java/src/main/java/com/google/cloud/language/v1beta2/AnalyzeEntitySentimentRequestOrBuilder.java. 2020-03-17 11:42:12,386 synthtool > Replaced '// Generated by the protocol buffer compiler. DO NOT EDIT!' in /tmpfs/tmp/tmpxftdb0jz/google-cloud-language-v1beta2-java/proto-google-cloud-language-v1beta2-java/src/main/java/com/google/cloud/language/v1beta2/ClassifyTextRequest.java. 2020-03-17 11:42:12,386 synthtool > Replaced '// Generated by the protocol buffer compiler. DO NOT EDIT!' in /tmpfs/tmp/tmpxftdb0jz/google-cloud-language-v1beta2-java/proto-google-cloud-language-v1beta2-java/src/main/java/com/google/cloud/language/v1beta2/LanguageServiceProto.java. 2020-03-17 11:42:12,386 synthtool > Replaced '// Generated by the protocol buffer compiler. DO NOT EDIT!' in /tmpfs/tmp/tmpxftdb0jz/google-cloud-language-v1beta2-java/proto-google-cloud-language-v1beta2-java/src/main/java/com/google/cloud/language/v1beta2/DocumentOrBuilder.java. 2020-03-17 11:42:12,387 synthtool > Replaced '// Generated by the protocol buffer compiler. DO NOT EDIT!' in /tmpfs/tmp/tmpxftdb0jz/google-cloud-language-v1beta2-java/proto-google-cloud-language-v1beta2-java/src/main/java/com/google/cloud/language/v1beta2/AnalyzeSyntaxResponse.java. 2020-03-17 11:42:12,387 synthtool > Replaced '// Generated by the protocol buffer compiler. DO NOT EDIT!' in /tmpfs/tmp/tmpxftdb0jz/google-cloud-language-v1beta2-java/proto-google-cloud-language-v1beta2-java/src/main/java/com/google/cloud/language/v1beta2/AnnotateTextRequestOrBuilder.java. 2020-03-17 11:42:12,387 synthtool > Replaced '// Generated by the protocol buffer compiler. DO NOT EDIT!' in /tmpfs/tmp/tmpxftdb0jz/google-cloud-language-v1beta2-java/proto-google-cloud-language-v1beta2-java/src/main/java/com/google/cloud/language/v1beta2/Token.java. 2020-03-17 11:42:12,387 synthtool > Replaced '// Generated by the protocol buffer compiler. DO NOT EDIT!' in /tmpfs/tmp/tmpxftdb0jz/google-cloud-language-v1beta2-java/proto-google-cloud-language-v1beta2-java/src/main/java/com/google/cloud/language/v1beta2/ClassifyTextResponseOrBuilder.java. 2020-03-17 11:42:12,388 synthtool > Replaced '// Generated by the protocol buffer compiler. DO NOT EDIT!' in /tmpfs/tmp/tmpxftdb0jz/google-cloud-language-v1beta2-java/proto-google-cloud-language-v1beta2-java/src/main/java/com/google/cloud/language/v1beta2/AnalyzeEntitiesRequestOrBuilder.java. 2020-03-17 11:42:12,388 synthtool > Replaced '// Generated by the protocol buffer compiler. DO NOT EDIT!' in /tmpfs/tmp/tmpxftdb0jz/google-cloud-language-v1beta2-java/proto-google-cloud-language-v1beta2-java/src/main/java/com/google/cloud/language/v1beta2/AnalyzeEntitiesResponse.java. 2020-03-17 11:42:12,388 synthtool > Replaced '// Generated by the protocol buffer compiler. DO NOT EDIT!' in /tmpfs/tmp/tmpxftdb0jz/google-cloud-language-v1beta2-java/proto-google-cloud-language-v1beta2-java/src/main/java/com/google/cloud/language/v1beta2/AnnotateTextResponse.java. 2020-03-17 11:42:12,388 synthtool > Replaced '// Generated by the protocol buffer compiler. DO NOT EDIT!' in /tmpfs/tmp/tmpxftdb0jz/google-cloud-language-v1beta2-java/proto-google-cloud-language-v1beta2-java/src/main/java/com/google/cloud/language/v1beta2/EntityMentionOrBuilder.java. 2020-03-17 11:42:12,389 synthtool > Replaced '// Generated by the protocol buffer compiler. DO NOT EDIT!' in /tmpfs/tmp/tmpxftdb0jz/google-cloud-language-v1beta2-java/proto-google-cloud-language-v1beta2-java/src/main/java/com/google/cloud/language/v1beta2/AnnotateTextRequest.java. 2020-03-17 11:42:12,389 synthtool > Replaced '// Generated by the protocol buffer compiler. DO NOT EDIT!' in /tmpfs/tmp/tmpxftdb0jz/google-cloud-language-v1beta2-java/proto-google-cloud-language-v1beta2-java/src/main/java/com/google/cloud/language/v1beta2/Entity.java. 2020-03-17 11:42:12,389 synthtool > Replaced '// Generated by the protocol buffer compiler. DO NOT EDIT!' in /tmpfs/tmp/tmpxftdb0jz/google-cloud-language-v1beta2-java/proto-google-cloud-language-v1beta2-java/src/main/java/com/google/cloud/language/v1beta2/AnnotateTextResponseOrBuilder.java. 2020-03-17 11:42:12,389 synthtool > Replaced '// Generated by the protocol buffer compiler. DO NOT EDIT!' in /tmpfs/tmp/tmpxftdb0jz/google-cloud-language-v1beta2-java/proto-google-cloud-language-v1beta2-java/src/main/java/com/google/cloud/language/v1beta2/AnalyzeEntitySentimentRequest.java. 2020-03-17 11:42:12,391 synthtool > No replacements made in [PosixPath('/tmpfs/tmp/tmpxftdb0jz/google-cloud-language-v1beta2-java/proto-google-cloud-language-v1beta2-java/src/**/*Name.java'), PosixPath('/tmpfs/tmp/tmpxftdb0jz/google-cloud-language-v1beta2-java/proto-google-cloud-language-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-17 11:42:12,392 synthtool > Replaced '^package (.*);' in /tmpfs/tmp/tmpxftdb0jz/google-cloud-language-v1beta2-java/grpc-google-cloud-language-v1beta2-java/src/main/java/com/google/cloud/language/v1beta2/LanguageServiceGrpc.java. 2020-03-17 11:42:12,407 synthtool > No files in sources [PosixPath('/tmpfs/tmp/tmpxftdb0jz/google-cloud-language-v1beta2-java/gapic-google-cloud-language-v1beta2-java/samples/src')] were copied. Does the source contain files? 2020-03-17 11:42:12,407 synthtool > No files in sources [PosixPath('/tmpfs/tmp/tmpxftdb0jz/google-cloud-language-v1beta2-java/gapic-google-cloud-language-v1beta2-java/samples/resources')] were copied. Does the source contain files? 2020-03-17 11:42:12,408 synthtool > No files in sources [PosixPath('/tmpfs/tmp/tmpxftdb0jz/google-cloud-language-v1beta2-java/gapic-google-cloud-language-v1beta2-java/samples/src/**/*.manifest.yaml')] were copied. Does the source contain files? 2020-03-17 11:42:12,409 synthtool > Running java formatter on 23 files 2020-03-17 11:42:15,461 synthtool > Running java formatter on 1 files 2020-03-17 11:42:17,510 synthtool > Running java formatter on 46 files 2020-03-17 11:42:24,652 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-17 11:42:25,166 synthtool > merge: CODE_OF_CONDUCT.md 2020-03-17 11:42:25,166 synthtool > merge: java.header 2020-03-17 11:42:25,167 synthtool > merge: license-checks.xml 2020-03-17 11:42:25,167 synthtool > merge: LICENSE 2020-03-17 11:42:25,167 synthtool > merge: README.md 2020-03-17 11:42:25,168 synthtool > merge: CONTRIBUTING.md 2020-03-17 11:42:25,168 synthtool > merge: renovate.json 2020-03-17 11:42:25,168 synthtool > merge: codecov.yaml 2020-03-17 11:42:25,169 synthtool > merge: .kokoro/build.sh 2020-03-17 11:42:25,170 synthtool > merge: .kokoro/coerce_logs.sh 2020-03-17 11:42:25,170 synthtool > merge: .kokoro/dependencies.sh 2020-03-17 11:42:25,170 synthtool > merge: .kokoro/linkage-monitor.sh 2020-03-17 11:42:25,170 synthtool > merge: .kokoro/trampoline.sh 2020-03-17 11:42:25,171 synthtool > merge: .kokoro/common.cfg 2020-03-17 11:42:25,171 synthtool > merge: .kokoro/build.bat 2020-03-17 11:42:25,171 synthtool > merge: .kokoro/release/promote.sh 2020-03-17 11:42:25,171 synthtool > merge: .kokoro/release/snapshot.sh 2020-03-17 11:42:25,172 synthtool > merge: .kokoro/release/stage.sh 2020-03-17 11:42:25,172 synthtool > merge: .kokoro/release/bump_snapshot.cfg 2020-03-17 11:42:25,172 synthtool > merge: .kokoro/release/drop.cfg 2020-03-17 11:42:25,172 synthtool > merge: .kokoro/release/snapshot.cfg 2020-03-17 11:42:25,173 synthtool > merge: .kokoro/release/promote.cfg 2020-03-17 11:42:25,173 synthtool > merge: .kokoro/release/publish_javadoc.sh 2020-03-17 11:42:25,173 synthtool > merge: .kokoro/release/common.cfg 2020-03-17 11:42:25,174 synthtool > merge: .kokoro/release/drop.sh 2020-03-17 11:42:25,174 synthtool > merge: .kokoro/release/publish_javadoc.cfg 2020-03-17 11:42:25,174 synthtool > merge: .kokoro/release/stage.cfg 2020-03-17 11:42:25,174 synthtool > merge: .kokoro/release/common.sh 2020-03-17 11:42:25,175 synthtool > merge: .kokoro/nightly/lint.cfg 2020-03-17 11:42:25,175 synthtool > merge: .kokoro/nightly/java11.cfg 2020-03-17 11:42:25,175 synthtool > merge: .kokoro/nightly/samples.cfg 2020-03-17 11:42:25,175 synthtool > merge: .kokoro/nightly/java8.cfg 2020-03-17 11:42:25,176 synthtool > merge: .kokoro/nightly/java7.cfg 2020-03-17 11:42:25,176 synthtool > merge: .kokoro/nightly/common.cfg 2020-03-17 11:42:25,176 synthtool > merge: .kokoro/nightly/dependencies.cfg 2020-03-17 11:42:25,176 synthtool > merge: .kokoro/nightly/java8-osx.cfg 2020-03-17 11:42:25,177 synthtool > merge: .kokoro/nightly/java8-win.cfg 2020-03-17 11:42:25,177 synthtool > merge: .kokoro/nightly/integration.cfg 2020-03-17 11:42:25,177 synthtool > merge: .kokoro/presubmit/lint.cfg 2020-03-17 11:42:25,178 synthtool > merge: .kokoro/presubmit/clirr.cfg 2020-03-17 11:42:25,178 synthtool > merge: .kokoro/presubmit/java11.cfg 2020-03-17 11:42:25,178 synthtool > merge: .kokoro/presubmit/samples.cfg 2020-03-17 11:42:25,178 synthtool > merge: .kokoro/presubmit/linkage-monitor.cfg 2020-03-17 11:42:25,179 synthtool > merge: .kokoro/presubmit/java8.cfg 2020-03-17 11:42:25,179 synthtool > merge: .kokoro/presubmit/java7.cfg 2020-03-17 11:42:25,179 synthtool > merge: .kokoro/presubmit/common.cfg 2020-03-17 11:42:25,179 synthtool > merge: .kokoro/presubmit/dependencies.cfg 2020-03-17 11:42:25,180 synthtool > merge: .kokoro/presubmit/java8-osx.cfg 2020-03-17 11:42:25,180 synthtool > merge: .kokoro/presubmit/java8-win.cfg 2020-03-17 11:42:25,180 synthtool > merge: .kokoro/presubmit/integration.cfg 2020-03-17 11:42:25,180 synthtool > merge: .kokoro/continuous/lint.cfg 2020-03-17 11:42:25,181 synthtool > merge: .kokoro/continuous/java11.cfg 2020-03-17 11:42:25,181 synthtool > merge: .kokoro/continuous/samples.cfg 2020-03-17 11:42:25,181 synthtool > merge: .kokoro/continuous/java8.cfg 2020-03-17 11:42:25,181 synthtool > merge: .kokoro/continuous/java7.cfg 2020-03-17 11:42:25,182 synthtool > merge: .kokoro/continuous/propose_release.cfg 2020-03-17 11:42:25,182 synthtool > merge: .kokoro/continuous/common.cfg 2020-03-17 11:42:25,182 synthtool > merge: .kokoro/continuous/dependencies.cfg 2020-03-17 11:42:25,183 synthtool > merge: .kokoro/continuous/java8-osx.cfg 2020-03-17 11:42:25,183 synthtool > merge: .kokoro/continuous/java8-win.cfg 2020-03-17 11:42:25,183 synthtool > merge: .kokoro/continuous/integration.cfg 2020-03-17 11:42:25,183 synthtool > merge: .github/trusted-contribution.yml 2020-03-17 11:42:25,184 synthtool > merge: .github/release-please.yml 2020-03-17 11:42:25,184 synthtool > merge: .github/PULL_REQUEST_TEMPLATE.md 2020-03-17 11:42:25,184 synthtool > merge: .github/ISSUE_TEMPLATE/feature_request.md 2020-03-17 11:42:25,185 synthtool > merge: .github/ISSUE_TEMPLATE/bug_report.md 2020-03-17 11:42:25,185 synthtool > merge: .github/ISSUE_TEMPLATE/support_request.md 2020-03-17 11:42:25,190 synthtool > Wrote metadata to synth.metadata. ```
--- language/snippets/pom.xml | 60 +++++++++++++++++++++++++++++++++++++++ 1 file changed, 60 insertions(+) create mode 100644 language/snippets/pom.xml diff --git a/language/snippets/pom.xml b/language/snippets/pom.xml new file mode 100644 index 00000000000..39e50e564bc --- /dev/null +++ b/language/snippets/pom.xml @@ -0,0 +1,60 @@ + + + 4.0.0 + com.google.cloud + language-snippets + jar + Google Natural Language Snippets + https://github.com/googleapis/java-language + + + + 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-language + + + + + junit + junit + 4.13 + test + + + com.google.truth + truth + 1.0.1 + test + + + From 333b12cd4eb2ab0490a0b9e202a456baf0cae710 Mon Sep 17 00:00:00 2001 From: WhiteSource Renovate Date: Mon, 23 Mar 2020 21:32:04 +0100 Subject: [PATCH 07/98] chore(deps): update dependency com.google.cloud:libraries-bom to v4.3.0 (#85) 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-language). --- language/snippets/pom.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/language/snippets/pom.xml b/language/snippets/pom.xml index 39e50e564bc..e08e56abcd6 100644 --- a/language/snippets/pom.xml +++ b/language/snippets/pom.xml @@ -30,7 +30,7 @@ com.google.cloud libraries-bom - 4.2.0 + 4.3.0 pom import From 8b2a93e892ae28533c830c38682ff78ed66c97ac Mon Sep 17 00:00:00 2001 From: WhiteSource Renovate Date: Wed, 25 Mar 2020 20:52:30 +0100 Subject: [PATCH 08/98] chore(deps): update dependency com.google.cloud.samples:shared-configuration to v1.0.13 (#90) 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-language). --- language/snippets/pom.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/language/snippets/pom.xml b/language/snippets/pom.xml index e08e56abcd6..6f109788f13 100644 --- a/language/snippets/pom.xml +++ b/language/snippets/pom.xml @@ -14,7 +14,7 @@ com.google.cloud.samples shared-configuration - 1.0.12 + 1.0.13 From 22d24cc917cdef320ad77452d2d4b8b61c2151f6 Mon Sep 17 00:00:00 2001 From: Averi Kitsch Date: Fri, 27 Mar 2020 12:00:25 -0700 Subject: [PATCH 09/98] samples: update shared config (#2443) * update shared config * Update to 1.0.13 * lint * Fix linting * lint * fix imports Co-authored-by: Les Vogel --- .../main/java/com/example/language/QuickstartSample.java | 3 +-- .../src/main/java/com/example/language/SetEndpoint.java | 9 +++------ .../java/com/example/language/QuickstartSampleIT.java | 4 +--- .../test/java/com/example/language/SetEndpointIT.java | 3 --- 4 files changed, 5 insertions(+), 14 deletions(-) diff --git a/language/snippets/src/main/java/com/example/language/QuickstartSample.java b/language/snippets/src/main/java/com/example/language/QuickstartSample.java index 85f516bd1ef..c264dc96dd6 100644 --- a/language/snippets/src/main/java/com/example/language/QuickstartSample.java +++ b/language/snippets/src/main/java/com/example/language/QuickstartSample.java @@ -30,8 +30,7 @@ public static void main(String... args) throws Exception { // The text to analyze String text = "Hello, world!"; - Document doc = Document.newBuilder() - .setContent(text).setType(Type.PLAIN_TEXT).build(); + Document doc = Document.newBuilder().setContent(text).setType(Type.PLAIN_TEXT).build(); // Detects the sentiment of the text Sentiment sentiment = language.analyzeSentiment(doc).getDocumentSentiment(); diff --git a/language/snippets/src/main/java/com/example/language/SetEndpoint.java b/language/snippets/src/main/java/com/example/language/SetEndpoint.java index 618d91b4259..73ab525a4fb 100644 --- a/language/snippets/src/main/java/com/example/language/SetEndpoint.java +++ b/language/snippets/src/main/java/com/example/language/SetEndpoint.java @@ -20,7 +20,6 @@ import com.google.cloud.language.v1.LanguageServiceClient; import com.google.cloud.language.v1.LanguageServiceSettings; import com.google.cloud.language.v1.Sentiment; - import java.io.IOException; class SetEndpoint { @@ -28,9 +27,8 @@ class SetEndpoint { // Change your endpoint static void setEndpoint() throws IOException { // [START language_set_endpoint] - LanguageServiceSettings settings = LanguageServiceSettings.newBuilder() - .setEndpoint("eu-language.googleapis.com:443") - .build(); + LanguageServiceSettings settings = + LanguageServiceSettings.newBuilder().setEndpoint("eu-language.googleapis.com:443").build(); // Initialize client that will be used to send requests. This client only needs to be created // once, and can be reused for multiple requests. After completing all of your requests, call @@ -40,8 +38,7 @@ static void setEndpoint() throws IOException { // The text to analyze String text = "Hello, world!"; - Document doc = Document.newBuilder() - .setContent(text).setType(Document.Type.PLAIN_TEXT).build(); + Document doc = Document.newBuilder().setContent(text).setType(Document.Type.PLAIN_TEXT).build(); // Detects the sentiment of the text Sentiment sentiment = client.analyzeSentiment(doc).getDocumentSentiment(); diff --git a/language/snippets/src/test/java/com/example/language/QuickstartSampleIT.java b/language/snippets/src/test/java/com/example/language/QuickstartSampleIT.java index 4fad6479404..9f335c78a5b 100644 --- a/language/snippets/src/test/java/com/example/language/QuickstartSampleIT.java +++ b/language/snippets/src/test/java/com/example/language/QuickstartSampleIT.java @@ -26,9 +26,7 @@ import org.junit.runner.RunWith; import org.junit.runners.JUnit4; -/** - * Tests for quickstart sample. - */ +/** Tests for quickstart sample. */ @RunWith(JUnit4.class) @SuppressWarnings("checkstyle:abbreviationaswordinname") public class QuickstartSampleIT { diff --git a/language/snippets/src/test/java/com/example/language/SetEndpointIT.java b/language/snippets/src/test/java/com/example/language/SetEndpointIT.java index 1a8bbc50636..df570711337 100644 --- a/language/snippets/src/test/java/com/example/language/SetEndpointIT.java +++ b/language/snippets/src/test/java/com/example/language/SetEndpointIT.java @@ -21,7 +21,6 @@ import java.io.ByteArrayOutputStream; import java.io.IOException; import java.io.PrintStream; - import org.junit.After; import org.junit.Before; import org.junit.Test; @@ -36,7 +35,6 @@ public class SetEndpointIT { private ByteArrayOutputStream bout; private PrintStream out; - @Before public void setUp() { bout = new ByteArrayOutputStream(); @@ -49,7 +47,6 @@ public void tearDown() { System.setOut(null); } - @Test public void testSetEndpoint() throws IOException { // Act From f6a0eb64325639c9b5e60ca714bab152ee62af7f Mon Sep 17 00:00:00 2001 From: WhiteSource Renovate Date: Mon, 30 Mar 2020 19:57:08 +0200 Subject: [PATCH 10/98] chore(deps): update dependency com.google.cloud.samples:shared-configuration to v1.0.14 (#96) 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-language). --- language/snippets/pom.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/language/snippets/pom.xml b/language/snippets/pom.xml index 6f109788f13..aa4995810bc 100644 --- a/language/snippets/pom.xml +++ b/language/snippets/pom.xml @@ -14,7 +14,7 @@ com.google.cloud.samples shared-configuration - 1.0.13 + 1.0.14 From b052936d21c22b72a4109afcb9179ab02c251411 Mon Sep 17 00:00:00 2001 From: WhiteSource Renovate Date: Wed, 1 Apr 2020 21:34:32 +0200 Subject: [PATCH 11/98] chore(deps): update dependency com.google.cloud:libraries-bom to v4.4.0 (#97) 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-language). --- language/snippets/pom.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/language/snippets/pom.xml b/language/snippets/pom.xml index aa4995810bc..129380e5a77 100644 --- a/language/snippets/pom.xml +++ b/language/snippets/pom.xml @@ -30,7 +30,7 @@ com.google.cloud libraries-bom - 4.3.0 + 4.4.0 pom import From 00f4c256e771bc710b5b10874e6983ee2eb296a5 Mon Sep 17 00:00:00 2001 From: WhiteSource Renovate Date: Mon, 6 Apr 2020 17:49:06 +0200 Subject: [PATCH 12/98] chore(deps): update dependency com.google.cloud.samples:shared-configuration to v1.0.15 (#99) 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-language). --- language/snippets/pom.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/language/snippets/pom.xml b/language/snippets/pom.xml index 129380e5a77..cf4cf848f81 100644 --- a/language/snippets/pom.xml +++ b/language/snippets/pom.xml @@ -14,7 +14,7 @@ com.google.cloud.samples shared-configuration - 1.0.14 + 1.0.15 From c793f0acfd71b8dad51781f931fb6ec445a59ccb Mon Sep 17 00:00:00 2001 From: WhiteSource Renovate Date: Mon, 6 Apr 2020 19:58:55 +0200 Subject: [PATCH 13/98] chore(deps): update dependency com.google.cloud:libraries-bom to v4.4.1 (#101) 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-language). --- language/snippets/pom.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/language/snippets/pom.xml b/language/snippets/pom.xml index cf4cf848f81..958ca31e72e 100644 --- a/language/snippets/pom.xml +++ b/language/snippets/pom.xml @@ -30,7 +30,7 @@ com.google.cloud libraries-bom - 4.4.0 + 4.4.1 pom import From c7cc8824f0f2391942bd889e3290fe09f2d2d04d Mon Sep 17 00:00:00 2001 From: WhiteSource Renovate Date: Tue, 14 Apr 2020 19:32:48 +0200 Subject: [PATCH 14/98] chore(deps): update dependency com.google.cloud:libraries-bom to v5 (#111) This PR contains the following updates: | Package | Update | Change | |---|---|---| | [com.google.cloud:libraries-bom](https://togithub.com/GoogleCloudPlatform/cloud-opensource-java) | major | `4.4.1` -> `5.0.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-language). --- language/snippets/pom.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/language/snippets/pom.xml b/language/snippets/pom.xml index 958ca31e72e..ef934009615 100644 --- a/language/snippets/pom.xml +++ b/language/snippets/pom.xml @@ -30,7 +30,7 @@ com.google.cloud libraries-bom - 4.4.1 + 5.0.0 pom import From 1be1096e1d6fefe42634dfd95f739c3a8a359228 Mon Sep 17 00:00:00 2001 From: WhiteSource Renovate Date: Tue, 14 Apr 2020 20:28:47 +0200 Subject: [PATCH 15/98] chore(deps): update dependency com.google.cloud:libraries-bom to v5.1.0 (#112) This PR contains the following updates: | Package | Update | Change | |---|---|---| | [com.google.cloud:libraries-bom](https://togithub.com/GoogleCloudPlatform/cloud-opensource-java) | minor | `5.0.0` -> `5.1.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-language). --- language/snippets/pom.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/language/snippets/pom.xml b/language/snippets/pom.xml index ef934009615..0aa3ca02264 100644 --- a/language/snippets/pom.xml +++ b/language/snippets/pom.xml @@ -30,7 +30,7 @@ com.google.cloud libraries-bom - 5.0.0 + 5.1.0 pom import From b9d27899f7176bb2dd8205542766e184bfd025cd Mon Sep 17 00:00:00 2001 From: WhiteSource Renovate Date: Thu, 16 Apr 2020 17:51:14 +0200 Subject: [PATCH 16/98] chore(deps): update dependency com.google.cloud.samples:shared-configuration to v1.0.16 (#118) 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.15` -> `1.0.16` | --- ### Release Notes
GoogleCloudPlatform/java-repo-tools ### [`v1.0.16`](https://togithub.com/GoogleCloudPlatform/java-repo-tools/releases/v1.0.16) [Compare Source](https://togithub.com/GoogleCloudPlatform/java-repo-tools/compare/v1.0.15...v1.0.16) Add a few SpotBugs exclusions: - `RCN_REDUNDANT_NULLCHECK_WOULD_HAVE_BEEN_A_NPE` - existing - codegen bug - `UPM_UNCALLED_PRIVATE_METHOD` - probably SpotBug issue - `NP_NULL_ON_SOME_PATH_FROM_RETURN_VALUE` - likely SpotBug issue - `CLI_CONSTANT_LIST_INDEX` - style issue particular to our samples - `OBL_UNSATISFIED_OBLIGATION` - issue for SQL clients
--- ### 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-language). --- language/snippets/pom.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/language/snippets/pom.xml b/language/snippets/pom.xml index 0aa3ca02264..6b2f29bbb8a 100644 --- a/language/snippets/pom.xml +++ b/language/snippets/pom.xml @@ -14,7 +14,7 @@ com.google.cloud.samples shared-configuration - 1.0.15 + 1.0.16 From 8a8f021d17ea9795cb75ca2322db4b16cfda5f2f Mon Sep 17 00:00:00 2001 From: WhiteSource Renovate Date: Fri, 17 Apr 2020 08:48:54 +0200 Subject: [PATCH 17/98] chore(deps): update dependency com.google.cloud.samples:shared-configuration to v1.0.17 (#123) 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.16` -> `1.0.17` | --- ### Release Notes
GoogleCloudPlatform/java-repo-tools ### [`v1.0.17`](https://togithub.com/GoogleCloudPlatform/java-repo-tools/releases/v1.0.17) [Compare Source](https://togithub.com/GoogleCloudPlatform/java-repo-tools/compare/v1.0.16...v1.0.17) - require -P lint Lets not burden customers with our development rules. - Move Checkstyle, ErrorProne, PMD, and SpotBugs to only run w/ -P lint - Update the Readme - spotbugs-annotations 4.0.2
--- ### 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-language). --- language/snippets/pom.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/language/snippets/pom.xml b/language/snippets/pom.xml index 6b2f29bbb8a..d3f0fe0fce1 100644 --- a/language/snippets/pom.xml +++ b/language/snippets/pom.xml @@ -14,7 +14,7 @@ com.google.cloud.samples shared-configuration - 1.0.16 + 1.0.17 From 9392b635791e03336a2cf1ac3bcf43165880455c Mon Sep 17 00:00:00 2001 From: WhiteSource Renovate Date: Thu, 23 Apr 2020 22:35:08 +0200 Subject: [PATCH 18/98] chore(deps): update dependency com.google.cloud:libraries-bom to v5.2.0 (#130) This PR contains the following updates: | Package | Update | Change | |---|---|---| | [com.google.cloud:libraries-bom](https://togithub.com/GoogleCloudPlatform/cloud-opensource-java) | minor | `5.1.0` -> `5.2.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-language). --- language/snippets/pom.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/language/snippets/pom.xml b/language/snippets/pom.xml index d3f0fe0fce1..f05262cb4c3 100644 --- a/language/snippets/pom.xml +++ b/language/snippets/pom.xml @@ -30,7 +30,7 @@ com.google.cloud libraries-bom - 5.1.0 + 5.2.0 pom import From 1a6e6d8accb623276fe131ad307d5974c75bb050 Mon Sep 17 00:00:00 2001 From: WhiteSource Renovate Date: Wed, 29 Apr 2020 01:07:16 +0200 Subject: [PATCH 19/98] chore(deps): update dependency com.google.cloud:libraries-bom to v5.3.0 (#136) This PR contains the following updates: | Package | Update | Change | |---|---|---| | [com.google.cloud:libraries-bom](https://togithub.com/GoogleCloudPlatform/cloud-opensource-java) | minor | `5.2.0` -> `5.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-language). --- language/snippets/pom.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/language/snippets/pom.xml b/language/snippets/pom.xml index f05262cb4c3..fabbc8cd296 100644 --- a/language/snippets/pom.xml +++ b/language/snippets/pom.xml @@ -30,7 +30,7 @@ com.google.cloud libraries-bom - 5.2.0 + 5.3.0 pom import From f7e3b069eeaa84149b6ca40a52f6ec9c00a18a82 Mon Sep 17 00:00:00 2001 From: WhiteSource Renovate Date: Tue, 19 May 2020 23:44:46 +0200 Subject: [PATCH 20/98] chore(deps): update dependency com.google.cloud:libraries-bom to v5.4.0 (#144) This PR contains the following updates: | Package | Update | Change | |---|---|---| | [com.google.cloud:libraries-bom](https://togithub.com/GoogleCloudPlatform/cloud-opensource-java) | minor | `5.3.0` -> `5.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-language). --- language/snippets/pom.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/language/snippets/pom.xml b/language/snippets/pom.xml index fabbc8cd296..e5400197546 100644 --- a/language/snippets/pom.xml +++ b/language/snippets/pom.xml @@ -30,7 +30,7 @@ com.google.cloud libraries-bom - 5.3.0 + 5.4.0 pom import From a8d4cf0168f6c38b1f9fc49bd3e5fca9fdf09c73 Mon Sep 17 00:00:00 2001 From: WhiteSource Renovate Date: Fri, 29 May 2020 20:33:01 +0200 Subject: [PATCH 21/98] chore(deps): update dependency com.google.cloud:libraries-bom to v5.5.0 (#152) This PR contains the following updates: | Package | Update | Change | |---|---|---| | [com.google.cloud:libraries-bom](https://togithub.com/GoogleCloudPlatform/cloud-opensource-java) | minor | `5.4.0` -> `5.5.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-language). --- language/snippets/pom.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/language/snippets/pom.xml b/language/snippets/pom.xml index e5400197546..f1d3180f7f4 100644 --- a/language/snippets/pom.xml +++ b/language/snippets/pom.xml @@ -30,7 +30,7 @@ com.google.cloud libraries-bom - 5.4.0 + 5.5.0 pom import From e36957e5c342ce618f4391b4f6a06fb8c5a14ec7 Mon Sep 17 00:00:00 2001 From: WhiteSource Renovate Date: Wed, 10 Jun 2020 22:24:13 +0200 Subject: [PATCH 22/98] chore(deps): update dependency com.google.cloud:libraries-bom to v5.7.0 (#162) This PR contains the following updates: | Package | Update | Change | |---|---|---| | [com.google.cloud:libraries-bom](https://togithub.com/GoogleCloudPlatform/cloud-opensource-java) | minor | `5.5.0` -> `5.7.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-language). --- language/snippets/pom.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/language/snippets/pom.xml b/language/snippets/pom.xml index f1d3180f7f4..752415189e3 100644 --- a/language/snippets/pom.xml +++ b/language/snippets/pom.xml @@ -30,7 +30,7 @@ com.google.cloud libraries-bom - 5.5.0 + 5.7.0 pom import From 329e16cc648a2b43e59852b000451f5b6fba2c07 Mon Sep 17 00:00:00 2001 From: WhiteSource Renovate Date: Wed, 10 Jun 2020 22:24:17 +0200 Subject: [PATCH 23/98] chore(deps): update dependency com.google.cloud.samples:shared-configuration to v1.0.18 (#163) This PR contains the following updates: | Package | Update | Change | |---|---|---| | com.google.cloud.samples:shared-configuration | patch | `1.0.17` -> `1.0.18` | --- ### 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-language). --- language/snippets/pom.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/language/snippets/pom.xml b/language/snippets/pom.xml index 752415189e3..1084adadd74 100644 --- a/language/snippets/pom.xml +++ b/language/snippets/pom.xml @@ -14,7 +14,7 @@ com.google.cloud.samples shared-configuration - 1.0.17 + 1.0.18 From d780878896e3964db93d1148d962ddb556800c5c Mon Sep 17 00:00:00 2001 From: WhiteSource Renovate Date: Wed, 17 Jun 2020 01:27:17 +0200 Subject: [PATCH 24/98] chore(deps): update dependency com.google.cloud:libraries-bom to v6 (#171) This PR contains the following updates: | Package | Update | Change | |---|---|---| | [com.google.cloud:libraries-bom](https://togithub.com/GoogleCloudPlatform/cloud-opensource-java) | major | `5.7.0` -> `6.0.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-language). --- language/snippets/pom.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/language/snippets/pom.xml b/language/snippets/pom.xml index 1084adadd74..f4712ecc0c4 100644 --- a/language/snippets/pom.xml +++ b/language/snippets/pom.xml @@ -30,7 +30,7 @@ com.google.cloud libraries-bom - 5.7.0 + 6.0.0 pom import From f17db637ea2b747c2375ff12fd834d890a942fe8 Mon Sep 17 00:00:00 2001 From: WhiteSource Renovate Date: Wed, 17 Jun 2020 19:41:20 +0200 Subject: [PATCH 25/98] chore(deps): update dependency com.google.cloud:libraries-bom to v7 (#174) This PR contains the following updates: | Package | Update | Change | |---|---|---| | [com.google.cloud:libraries-bom](https://togithub.com/GoogleCloudPlatform/cloud-opensource-java) | major | `6.0.0` -> `7.0.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-language). --- language/snippets/pom.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/language/snippets/pom.xml b/language/snippets/pom.xml index f4712ecc0c4..b48e453b349 100644 --- a/language/snippets/pom.xml +++ b/language/snippets/pom.xml @@ -30,7 +30,7 @@ com.google.cloud libraries-bom - 6.0.0 + 7.0.0 pom import From ea0c88d9ef4768573dedfd49de3da60997779f4f Mon Sep 17 00:00:00 2001 From: WhiteSource Renovate Date: Mon, 22 Jun 2020 23:47:51 +0200 Subject: [PATCH 26/98] chore(deps): update dependency com.google.cloud:libraries-bom to v7.0.1 (#179) This PR contains the following updates: | Package | Update | Change | |---|---|---| | [com.google.cloud:libraries-bom](https://togithub.com/GoogleCloudPlatform/cloud-opensource-java) | patch | `7.0.0` -> `7.0.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-language). --- language/snippets/pom.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/language/snippets/pom.xml b/language/snippets/pom.xml index b48e453b349..9b8fc92a354 100644 --- a/language/snippets/pom.xml +++ b/language/snippets/pom.xml @@ -30,7 +30,7 @@ com.google.cloud libraries-bom - 7.0.0 + 7.0.1 pom import From c3877e50c6b340ef4892e41793868a5308bd544c Mon Sep 17 00:00:00 2001 From: WhiteSource Renovate Date: Fri, 26 Jun 2020 07:09:36 +0200 Subject: [PATCH 27/98] chore(deps): update dependency com.google.cloud:libraries-bom to v8 (#182) --- language/snippets/pom.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/language/snippets/pom.xml b/language/snippets/pom.xml index 9b8fc92a354..dd5ecbbaec7 100644 --- a/language/snippets/pom.xml +++ b/language/snippets/pom.xml @@ -30,7 +30,7 @@ com.google.cloud libraries-bom - 7.0.1 + 8.0.0 pom import From 5f922b4ce47bdd17562b82b105228932a521e004 Mon Sep 17 00:00:00 2001 From: WhiteSource Renovate Date: Thu, 16 Jul 2020 19:46:47 +0200 Subject: [PATCH 28/98] chore(deps): update dependency com.google.cloud:libraries-bom to v8.1.0 (#192) This PR contains the following updates: | Package | Update | Change | |---|---|---| | [com.google.cloud:libraries-bom](https://togithub.com/GoogleCloudPlatform/cloud-opensource-java) | minor | `8.0.0` -> `8.1.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-language). --- language/snippets/pom.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/language/snippets/pom.xml b/language/snippets/pom.xml index dd5ecbbaec7..6a9d9eee253 100644 --- a/language/snippets/pom.xml +++ b/language/snippets/pom.xml @@ -30,7 +30,7 @@ com.google.cloud libraries-bom - 8.0.0 + 8.1.0 pom import From 2cc9a9982b079a204e3edfa89fce08545560f1fa Mon Sep 17 00:00:00 2001 From: WhiteSource Renovate Date: Fri, 14 Aug 2020 04:42:13 +0200 Subject: [PATCH 29/98] chore(deps): update dependency com.google.cloud:libraries-bom to v9 (#204) This PR contains the following updates: | Package | Update | Change | |---|---|---| | [com.google.cloud:libraries-bom](https://togithub.com/GoogleCloudPlatform/cloud-opensource-java) | major | `8.1.0` -> `9.0.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-language). --- language/snippets/pom.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/language/snippets/pom.xml b/language/snippets/pom.xml index 6a9d9eee253..9c92cb070ef 100644 --- a/language/snippets/pom.xml +++ b/language/snippets/pom.xml @@ -30,7 +30,7 @@ com.google.cloud libraries-bom - 8.1.0 + 9.0.0 pom import From 61fae698062ae5ff20c7306b7dff16eb8b7e7973 Mon Sep 17 00:00:00 2001 From: WhiteSource Renovate Date: Tue, 18 Aug 2020 00:04:15 +0200 Subject: [PATCH 30/98] chore(deps): update dependency com.google.cloud:libraries-bom to v9.1.0 --- language/snippets/pom.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/language/snippets/pom.xml b/language/snippets/pom.xml index 9c92cb070ef..13d712e72c6 100644 --- a/language/snippets/pom.xml +++ b/language/snippets/pom.xml @@ -30,7 +30,7 @@ com.google.cloud libraries-bom - 9.0.0 + 9.1.0 pom import From e66be67369b5fd9a322313275c682dd96bc31f77 Mon Sep 17 00:00:00 2001 From: WhiteSource Renovate Date: Thu, 10 Sep 2020 22:05:01 +0200 Subject: [PATCH 31/98] chore(deps): update dependency com.google.cloud:libraries-bom to v10 --- language/snippets/pom.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/language/snippets/pom.xml b/language/snippets/pom.xml index 13d712e72c6..aa20e0cce72 100644 --- a/language/snippets/pom.xml +++ b/language/snippets/pom.xml @@ -30,7 +30,7 @@ com.google.cloud libraries-bom - 9.1.0 + 10.1.0 pom import From eae4e0b88c1139c4dea584c9dcadc99812301fab Mon Sep 17 00:00:00 2001 From: WhiteSource Renovate Date: Thu, 24 Sep 2020 19:46:03 +0200 Subject: [PATCH 32/98] chore(deps): update dependency com.google.cloud:libraries-bom to v11 (#240) This PR contains the following updates: | Package | Update | Change | |---|---|---| | [com.google.cloud:libraries-bom](https://togithub.com/GoogleCloudPlatform/cloud-opensource-java) | major | `10.1.0` -> `11.0.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#github/googleapis/java-language). --- language/snippets/pom.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/language/snippets/pom.xml b/language/snippets/pom.xml index aa20e0cce72..7eaf1709aad 100644 --- a/language/snippets/pom.xml +++ b/language/snippets/pom.xml @@ -30,7 +30,7 @@ com.google.cloud libraries-bom - 10.1.0 + 11.0.0 pom import From d0d93b5601009d57d1ff0531f61572a738d9c262 Mon Sep 17 00:00:00 2001 From: WhiteSource Renovate Date: Fri, 2 Oct 2020 18:52:21 +0200 Subject: [PATCH 33/98] chore(deps): update dependency com.google.cloud.samples:shared-configuration to v1.0.21 (#241) This PR contains the following updates: | Package | Update | Change | |---|---|---| | [com.google.cloud.samples:shared-configuration](com/google/cloud/samples/shared-configuration) | patch | `1.0.18` -> `1.0.21` | --- ### 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#github/googleapis/java-language). --- language/snippets/pom.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/language/snippets/pom.xml b/language/snippets/pom.xml index 7eaf1709aad..60a433b7f7d 100644 --- a/language/snippets/pom.xml +++ b/language/snippets/pom.xml @@ -14,7 +14,7 @@ com.google.cloud.samples shared-configuration - 1.0.18 + 1.0.21 From d7edcb9034e1f5392f6f6aa78b0adf530a670720 Mon Sep 17 00:00:00 2001 From: WhiteSource Renovate Date: Tue, 6 Oct 2020 22:08:14 +0200 Subject: [PATCH 34/98] chore(deps): update dependency com.google.cloud:libraries-bom to v12 (#247) This PR contains the following updates: | Package | Update | Change | |---|---|---| | [com.google.cloud:libraries-bom](https://togithub.com/GoogleCloudPlatform/cloud-opensource-java) | major | `11.0.0` -> `12.0.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#github/googleapis/java-language). --- language/snippets/pom.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/language/snippets/pom.xml b/language/snippets/pom.xml index 60a433b7f7d..3602e8af7c6 100644 --- a/language/snippets/pom.xml +++ b/language/snippets/pom.xml @@ -30,7 +30,7 @@ com.google.cloud libraries-bom - 11.0.0 + 12.0.0 pom import From 5d20c7d501bd54a2e183ad35cf67a3bff5b5385d Mon Sep 17 00:00:00 2001 From: WhiteSource Renovate Date: Mon, 12 Oct 2020 19:00:00 +0200 Subject: [PATCH 35/98] test(deps): update dependency junit:junit to v4.13.1 --- language/snippets/pom.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/language/snippets/pom.xml b/language/snippets/pom.xml index 3602e8af7c6..9bae8e094c6 100644 --- a/language/snippets/pom.xml +++ b/language/snippets/pom.xml @@ -47,7 +47,7 @@ junit junit - 4.13 + 4.13.1 test From 8354b7944479196b54c8bc90efcc7bd42ac14867 Mon Sep 17 00:00:00 2001 From: WhiteSource Renovate Date: Fri, 16 Oct 2020 00:46:40 +0200 Subject: [PATCH 36/98] chore(deps): update dependency com.google.cloud:libraries-bom to v12.1.0 (#260) This PR contains the following updates: | Package | Update | Change | |---|---|---| | [com.google.cloud:libraries-bom](https://togithub.com/GoogleCloudPlatform/cloud-opensource-java) | minor | `12.0.0` -> `12.1.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#github/googleapis/java-language). --- language/snippets/pom.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/language/snippets/pom.xml b/language/snippets/pom.xml index 9bae8e094c6..2b581297deb 100644 --- a/language/snippets/pom.xml +++ b/language/snippets/pom.xml @@ -30,7 +30,7 @@ com.google.cloud libraries-bom - 12.0.0 + 12.1.0 pom import From 7f352f628636830986c652c1e4c37fb3c54b711b Mon Sep 17 00:00:00 2001 From: WhiteSource Renovate Date: Wed, 21 Oct 2020 00:51:05 +0200 Subject: [PATCH 37/98] chore(deps): update dependency com.google.cloud:libraries-bom to v13 (#269) This PR contains the following updates: | Package | Update | Change | |---|---|---| | [com.google.cloud:libraries-bom](https://togithub.com/GoogleCloudPlatform/cloud-opensource-java) | major | `12.1.0` -> `13.0.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#github/googleapis/java-language). --- language/snippets/pom.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/language/snippets/pom.xml b/language/snippets/pom.xml index 2b581297deb..e5ae677d563 100644 --- a/language/snippets/pom.xml +++ b/language/snippets/pom.xml @@ -30,7 +30,7 @@ com.google.cloud libraries-bom - 12.1.0 + 13.0.0 pom import From 118b8f6c4532e8d5ef5014e518e526c53ee3dbad Mon Sep 17 00:00:00 2001 From: WhiteSource Renovate Date: Wed, 21 Oct 2020 20:30:30 +0200 Subject: [PATCH 38/98] chore(deps): update dependency com.google.cloud:libraries-bom to v13.1.0 (#274) This PR contains the following updates: | Package | Update | Change | |---|---|---| | [com.google.cloud:libraries-bom](https://togithub.com/GoogleCloudPlatform/cloud-opensource-java) | minor | `13.0.0` -> `13.1.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#github/googleapis/java-language). --- language/snippets/pom.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/language/snippets/pom.xml b/language/snippets/pom.xml index e5ae677d563..89142e77434 100644 --- a/language/snippets/pom.xml +++ b/language/snippets/pom.xml @@ -30,7 +30,7 @@ com.google.cloud libraries-bom - 13.0.0 + 13.1.0 pom import From 07469e0ac833f504269b4a8f25bb6e99daef81fa Mon Sep 17 00:00:00 2001 From: WhiteSource Renovate Date: Thu, 22 Oct 2020 21:37:01 +0200 Subject: [PATCH 39/98] test(deps): update dependency com.google.truth:truth to v1.1 (#270) This PR contains the following updates: | Package | Update | Change | |---|---|---| | [com.google.truth:truth](com/google/truth/truth) | minor | `1.0.1` -> `1.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#github/googleapis/java-language). --- language/snippets/pom.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/language/snippets/pom.xml b/language/snippets/pom.xml index 89142e77434..83dce7395c5 100644 --- a/language/snippets/pom.xml +++ b/language/snippets/pom.xml @@ -53,7 +53,7 @@ com.google.truth truth - 1.0.1 + 1.1 test From 51d2ad78322fde13708f5f4c27cec66f5846726d Mon Sep 17 00:00:00 2001 From: WhiteSource Renovate Date: Fri, 23 Oct 2020 20:00:06 +0200 Subject: [PATCH 40/98] chore(deps): update dependency com.google.cloud:libraries-bom to v13.2.0 (#281) This PR contains the following updates: | Package | Update | Change | |---|---|---| | [com.google.cloud:libraries-bom](https://togithub.com/GoogleCloudPlatform/cloud-opensource-java) | minor | `13.1.0` -> `13.2.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#github/googleapis/java-language). --- language/snippets/pom.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/language/snippets/pom.xml b/language/snippets/pom.xml index 83dce7395c5..2754c26a324 100644 --- a/language/snippets/pom.xml +++ b/language/snippets/pom.xml @@ -30,7 +30,7 @@ com.google.cloud libraries-bom - 13.1.0 + 13.2.0 pom import From 9b9e3679dc01a441ea8f9e86872f61c7a5d80424 Mon Sep 17 00:00:00 2001 From: WhiteSource Renovate Date: Tue, 27 Oct 2020 01:00:25 +0100 Subject: [PATCH 41/98] chore(deps): update dependency com.google.cloud:libraries-bom to v13.3.0 (#283) This PR contains the following updates: | Package | Update | Change | |---|---|---| | [com.google.cloud:libraries-bom](https://togithub.com/GoogleCloudPlatform/cloud-opensource-java) | minor | `13.2.0` -> `13.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#github/googleapis/java-language). --- language/snippets/pom.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/language/snippets/pom.xml b/language/snippets/pom.xml index 2754c26a324..48b88d85f8c 100644 --- a/language/snippets/pom.xml +++ b/language/snippets/pom.xml @@ -30,7 +30,7 @@ com.google.cloud libraries-bom - 13.2.0 + 13.3.0 pom import From 85c77df84fc56d76729ccad03e73053a9b44c1ff Mon Sep 17 00:00:00 2001 From: WhiteSource Renovate Date: Sat, 31 Oct 2020 00:34:34 +0100 Subject: [PATCH 42/98] chore(deps): update dependency com.google.cloud:libraries-bom to v13.4.0 (#288) This PR contains the following updates: | Package | Update | Change | |---|---|---| | [com.google.cloud:libraries-bom](https://togithub.com/GoogleCloudPlatform/cloud-opensource-java) | minor | `13.3.0` -> `13.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#github/googleapis/java-language). --- language/snippets/pom.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/language/snippets/pom.xml b/language/snippets/pom.xml index 48b88d85f8c..8e368b9c02a 100644 --- a/language/snippets/pom.xml +++ b/language/snippets/pom.xml @@ -30,7 +30,7 @@ com.google.cloud libraries-bom - 13.3.0 + 13.4.0 pom import From a8dbe52c11cc725848e0fbae8e659eb3345b13b9 Mon Sep 17 00:00:00 2001 From: WhiteSource Renovate Date: Wed, 4 Nov 2020 01:26:26 +0100 Subject: [PATCH 43/98] chore(deps): update dependency com.google.cloud:libraries-bom to v14 (#291) This PR contains the following updates: | Package | Update | Change | |---|---|---| | [com.google.cloud:libraries-bom](https://togithub.com/GoogleCloudPlatform/cloud-opensource-java) | major | `13.4.0` -> `14.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#github/googleapis/java-language). --- language/snippets/pom.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/language/snippets/pom.xml b/language/snippets/pom.xml index 8e368b9c02a..b22f2f78593 100644 --- a/language/snippets/pom.xml +++ b/language/snippets/pom.xml @@ -30,7 +30,7 @@ com.google.cloud libraries-bom - 13.4.0 + 14.4.1 pom import From f9f5e51e429983d6cdb8e247615a9e3b205c4888 Mon Sep 17 00:00:00 2001 From: WhiteSource Renovate Date: Fri, 6 Nov 2020 00:02:25 +0100 Subject: [PATCH 44/98] chore(deps): update dependency com.google.cloud:libraries-bom to v15 (#298) This PR contains the following updates: | Package | Update | Change | |---|---|---| | [com.google.cloud:libraries-bom](https://togithub.com/GoogleCloudPlatform/cloud-opensource-java) | major | `14.4.1` -> `15.0.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#github/googleapis/java-language). --- language/snippets/pom.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/language/snippets/pom.xml b/language/snippets/pom.xml index b22f2f78593..baca2c13009 100644 --- a/language/snippets/pom.xml +++ b/language/snippets/pom.xml @@ -30,7 +30,7 @@ com.google.cloud libraries-bom - 14.4.1 + 15.0.0 pom import From 3468bf57e1b050dbe7f863d680a26bf61a1c374e Mon Sep 17 00:00:00 2001 From: Mike <45373284+munkhuushmgl@users.noreply.github.com> Date: Fri, 6 Nov 2020 13:19:00 -0800 Subject: [PATCH 45/98] chore: moving the leftover samples from java-docs (#299) --- .../beta/example/language/AnalyzeBeta.java | 133 +++++++ .../java/com/example/language/Analyze.java | 376 ++++++++++++++++++ .../beta/example/language/AnalyzeBetaIT.java | 80 ++++ .../java/com/example/language/AnalyzeIT.java | 177 +++++++++ .../example/language/QuickstartSampleIT.java | 6 +- .../com/example/language/SetEndpointIT.java | 6 +- 6 files changed, 776 insertions(+), 2 deletions(-) create mode 100644 language/snippets/src/main/java/beta/example/language/AnalyzeBeta.java create mode 100644 language/snippets/src/main/java/com/example/language/Analyze.java create mode 100644 language/snippets/src/test/java/beta/example/language/AnalyzeBetaIT.java create mode 100644 language/snippets/src/test/java/com/example/language/AnalyzeIT.java diff --git a/language/snippets/src/main/java/beta/example/language/AnalyzeBeta.java b/language/snippets/src/main/java/beta/example/language/AnalyzeBeta.java new file mode 100644 index 00000000000..ff22eb4e923 --- /dev/null +++ b/language/snippets/src/main/java/beta/example/language/AnalyzeBeta.java @@ -0,0 +1,133 @@ +/* + * Copyright 2017 Google Inc. + * + * 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. + */ + +package beta.example.language; + +import com.example.language.Analyze; +import com.google.cloud.language.v1beta2.AnalyzeSentimentResponse; +import com.google.cloud.language.v1beta2.ClassificationCategory; +import com.google.cloud.language.v1beta2.ClassifyTextRequest; +import com.google.cloud.language.v1beta2.ClassifyTextResponse; +import com.google.cloud.language.v1beta2.Document; +import com.google.cloud.language.v1beta2.Document.Type; +import com.google.cloud.language.v1beta2.LanguageServiceClient; +import com.google.cloud.language.v1beta2.Sentiment; + +/** + * A sample application that uses the Natural Language API to perform entity, sentiment and syntax + * analysis. + */ +public class AnalyzeBeta { + + /** Detects entities,sentiment and syntax in a document using the Natural Language API. */ + public static void main(String[] args) throws Exception { + if (args.length < 2 || args.length > 4) { + System.err.println("Usage:"); + System.err.printf( + "\tjava %s \"command\" \"text to analyze\" \"language\" \n", + Analyze.class.getCanonicalName()); + System.exit(1); + } + String command = args[0]; + String text = args[1]; + String lang = null; + if (args.length > 2) { + lang = args[2]; + } + + if (command.equals("classify")) { + if (text.startsWith("gs://")) { + classifyFile(text); + } else { + classifyText(text); + } + } else if (command.equals("sentiment")) { + analyzeSentimentText(text, lang); + } + } + + /** Detects sentiments from the string {@code text}. */ + public static Sentiment analyzeSentimentText(String text, String lang) throws Exception { + // [START beta_sentiment_text] + // Instantiate a beta client : com.google.cloud.language.v1beta2.LanguageServiceClient + try (LanguageServiceClient language = LanguageServiceClient.create()) { + // NL auto-detects the language, if not provided + Document doc; + if (lang != null) { + doc = + Document.newBuilder() + .setLanguage(lang) + .setContent(text) + .setType(Type.PLAIN_TEXT) + .build(); + } else { + doc = Document.newBuilder().setContent(text).setType(Type.PLAIN_TEXT).build(); + } + AnalyzeSentimentResponse response = language.analyzeSentiment(doc); + Sentiment sentiment = response.getDocumentSentiment(); + if (sentiment != null) { + System.out.println("Found sentiment."); + System.out.printf("\tMagnitude: %.3f\n", sentiment.getMagnitude()); + System.out.printf("\tScore: %.3f\n", sentiment.getScore()); + } else { + System.out.println("No sentiment found"); + } + return sentiment; + } + // [END beta_sentiment_text] + } + + /** Detects categories in text using the Language Beta API. */ + public static void classifyText(String text) throws Exception { + // [START classify_text] + // Instantiate a beta client : com.google.cloud.language.v1beta2.LanguageServiceClient + try (LanguageServiceClient language = LanguageServiceClient.create()) { + // set content to the text string + Document doc = Document.newBuilder().setContent(text).setType(Type.PLAIN_TEXT).build(); + ClassifyTextRequest request = ClassifyTextRequest.newBuilder().setDocument(doc).build(); + // detect categories in the given text + ClassifyTextResponse response = language.classifyText(request); + + for (ClassificationCategory category : response.getCategoriesList()) { + System.out.printf( + "Category name : %s, Confidence : %.3f\n", + category.getName(), category.getConfidence()); + } + } + // [END classify_text] + } + + /** Detects categories in a GCS hosted file using the Language Beta API. */ + public static void classifyFile(String gcsUri) throws Exception { + // [START classify_file] + // Instantiate a beta client : com.google.cloud.language.v1beta2.LanguageServiceClient + try (LanguageServiceClient language = LanguageServiceClient.create()) { + // set the GCS content URI path + Document doc = + Document.newBuilder().setGcsContentUri(gcsUri).setType(Type.PLAIN_TEXT).build(); + ClassifyTextRequest request = ClassifyTextRequest.newBuilder().setDocument(doc).build(); + // detect categories in the given file + ClassifyTextResponse response = language.classifyText(request); + + for (ClassificationCategory category : response.getCategoriesList()) { + System.out.printf( + "Category name : %s, Confidence : %.3f\n", + category.getName(), category.getConfidence()); + } + } + // [END classify_file] + } +} diff --git a/language/snippets/src/main/java/com/example/language/Analyze.java b/language/snippets/src/main/java/com/example/language/Analyze.java new file mode 100644 index 00000000000..25ca4131df6 --- /dev/null +++ b/language/snippets/src/main/java/com/example/language/Analyze.java @@ -0,0 +1,376 @@ +/* + * Copyright 2016 Google Inc. + * + * 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. + */ + +package com.example.language; + +import com.google.cloud.language.v1.AnalyzeEntitiesRequest; +import com.google.cloud.language.v1.AnalyzeEntitiesResponse; +import com.google.cloud.language.v1.AnalyzeEntitySentimentRequest; +import com.google.cloud.language.v1.AnalyzeEntitySentimentResponse; +import com.google.cloud.language.v1.AnalyzeSentimentResponse; +import com.google.cloud.language.v1.AnalyzeSyntaxRequest; +import com.google.cloud.language.v1.AnalyzeSyntaxResponse; +import com.google.cloud.language.v1.ClassificationCategory; +import com.google.cloud.language.v1.ClassifyTextRequest; +import com.google.cloud.language.v1.ClassifyTextResponse; +import com.google.cloud.language.v1.Document; +import com.google.cloud.language.v1.Document.Type; +import com.google.cloud.language.v1.EncodingType; +import com.google.cloud.language.v1.Entity; +import com.google.cloud.language.v1.EntityMention; +import com.google.cloud.language.v1.LanguageServiceClient; +import com.google.cloud.language.v1.Sentiment; +import com.google.cloud.language.v1.Token; +import java.util.List; +import java.util.Map; + +/** + * A sample application that uses the Natural Language API to perform entity, sentiment and syntax + * analysis. + */ +public class Analyze { + + /** Detects entities,sentiment and syntax in a document using the Natural Language API. */ + public static void main(String[] args) throws Exception { + if (args.length != 2) { + System.err.println("Usage:"); + System.err.printf( + "\tjava %s \"command\" \"text to analyze\"\n", Analyze.class.getCanonicalName()); + System.exit(1); + } + String command = args[0]; + String text = args[1]; + + if (command.equals("classify")) { + if (text.startsWith("gs://")) { + classifyFile(text); + } else { + classifyText(text); + } + } else if (command.equals("entities")) { + if (text.startsWith("gs://")) { + analyzeEntitiesFile(text); + } else { + analyzeEntitiesText(text); + } + } else if (command.equals("sentiment")) { + if (text.startsWith("gs://")) { + analyzeSentimentFile(text); + } else { + analyzeSentimentText(text); + } + } else if (command.equals("syntax")) { + if (text.startsWith("gs://")) { + analyzeSyntaxFile(text); + } else { + analyzeSyntaxText(text); + } + } else if (command.equals("entities-sentiment")) { + if (text.startsWith("gs://")) { + entitySentimentFile(text); + } else { + entitySentimentText(text); + } + } + } + + /** Identifies entities in the string {@code text}. */ + public static void analyzeEntitiesText(String text) throws Exception { + // [START language_entities_text] + // Instantiate the Language client com.google.cloud.language.v1.LanguageServiceClient + try (LanguageServiceClient language = LanguageServiceClient.create()) { + Document doc = Document.newBuilder().setContent(text).setType(Type.PLAIN_TEXT).build(); + AnalyzeEntitiesRequest request = + AnalyzeEntitiesRequest.newBuilder() + .setDocument(doc) + .setEncodingType(EncodingType.UTF16) + .build(); + + AnalyzeEntitiesResponse response = language.analyzeEntities(request); + + // Print the response + for (Entity entity : response.getEntitiesList()) { + System.out.printf("Entity: %s", entity.getName()); + System.out.printf("Salience: %.3f\n", entity.getSalience()); + System.out.println("Metadata: "); + for (Map.Entry entry : entity.getMetadataMap().entrySet()) { + System.out.printf("%s : %s", entry.getKey(), entry.getValue()); + } + for (EntityMention mention : entity.getMentionsList()) { + System.out.printf("Begin offset: %d\n", mention.getText().getBeginOffset()); + System.out.printf("Content: %s\n", mention.getText().getContent()); + System.out.printf("Type: %s\n\n", mention.getType()); + } + } + } + // [END language_entities_text] + } + + /** Identifies entities in the contents of the object at the given GCS {@code path}. */ + public static void analyzeEntitiesFile(String gcsUri) throws Exception { + // [START language_entities_gcs] + // Instantiate the Language client com.google.cloud.language.v1.LanguageServiceClient + try (LanguageServiceClient language = LanguageServiceClient.create()) { + // set the GCS Content URI path to the file to be analyzed + Document doc = + Document.newBuilder().setGcsContentUri(gcsUri).setType(Type.PLAIN_TEXT).build(); + AnalyzeEntitiesRequest request = + AnalyzeEntitiesRequest.newBuilder() + .setDocument(doc) + .setEncodingType(EncodingType.UTF16) + .build(); + + AnalyzeEntitiesResponse response = language.analyzeEntities(request); + + // Print the response + for (Entity entity : response.getEntitiesList()) { + System.out.printf("Entity: %s\n", entity.getName()); + System.out.printf("Salience: %.3f\n", entity.getSalience()); + System.out.println("Metadata: "); + for (Map.Entry entry : entity.getMetadataMap().entrySet()) { + System.out.printf("%s : %s", entry.getKey(), entry.getValue()); + } + for (EntityMention mention : entity.getMentionsList()) { + System.out.printf("Begin offset: %d\n", mention.getText().getBeginOffset()); + System.out.printf("Content: %s\n", mention.getText().getContent()); + System.out.printf("Type: %s\n\n", mention.getType()); + } + } + } + // [END language_entities_gcs] + } + + /** Identifies the sentiment in the string {@code text}. */ + public static Sentiment analyzeSentimentText(String text) throws Exception { + // [START language_sentiment_text] + // Instantiate the Language client com.google.cloud.language.v1.LanguageServiceClient + try (LanguageServiceClient language = LanguageServiceClient.create()) { + Document doc = Document.newBuilder().setContent(text).setType(Type.PLAIN_TEXT).build(); + AnalyzeSentimentResponse response = language.analyzeSentiment(doc); + Sentiment sentiment = response.getDocumentSentiment(); + if (sentiment == null) { + System.out.println("No sentiment found"); + } else { + System.out.printf("Sentiment magnitude: %.3f\n", sentiment.getMagnitude()); + System.out.printf("Sentiment score: %.3f\n", sentiment.getScore()); + } + return sentiment; + } + // [END language_sentiment_text] + } + + /** Gets {@link Sentiment} from the contents of the GCS hosted file. */ + public static Sentiment analyzeSentimentFile(String gcsUri) throws Exception { + // [START language_sentiment_gcs] + // Instantiate the Language client com.google.cloud.language.v1.LanguageServiceClient + try (LanguageServiceClient language = LanguageServiceClient.create()) { + Document doc = + Document.newBuilder().setGcsContentUri(gcsUri).setType(Type.PLAIN_TEXT).build(); + AnalyzeSentimentResponse response = language.analyzeSentiment(doc); + Sentiment sentiment = response.getDocumentSentiment(); + if (sentiment == null) { + System.out.println("No sentiment found"); + } else { + System.out.printf("Sentiment magnitude : %.3f\n", sentiment.getMagnitude()); + System.out.printf("Sentiment score : %.3f\n", sentiment.getScore()); + } + return sentiment; + } + // [END language_sentiment_gcs] + } + + /** from the string {@code text}. */ + public static List analyzeSyntaxText(String text) throws Exception { + // [START language_syntax_text] + // Instantiate the Language client com.google.cloud.language.v1.LanguageServiceClient + try (LanguageServiceClient language = LanguageServiceClient.create()) { + Document doc = Document.newBuilder().setContent(text).setType(Type.PLAIN_TEXT).build(); + AnalyzeSyntaxRequest request = + AnalyzeSyntaxRequest.newBuilder() + .setDocument(doc) + .setEncodingType(EncodingType.UTF16) + .build(); + // analyze the syntax in the given text + AnalyzeSyntaxResponse response = language.analyzeSyntax(request); + // print the response + for (Token token : response.getTokensList()) { + System.out.printf("\tText: %s\n", token.getText().getContent()); + System.out.printf("\tBeginOffset: %d\n", token.getText().getBeginOffset()); + System.out.printf("Lemma: %s\n", token.getLemma()); + System.out.printf("PartOfSpeechTag: %s\n", token.getPartOfSpeech().getTag()); + System.out.printf("\tAspect: %s\n", token.getPartOfSpeech().getAspect()); + System.out.printf("\tCase: %s\n", token.getPartOfSpeech().getCase()); + System.out.printf("\tForm: %s\n", token.getPartOfSpeech().getForm()); + System.out.printf("\tGender: %s\n", token.getPartOfSpeech().getGender()); + System.out.printf("\tMood: %s\n", token.getPartOfSpeech().getMood()); + System.out.printf("\tNumber: %s\n", token.getPartOfSpeech().getNumber()); + System.out.printf("\tPerson: %s\n", token.getPartOfSpeech().getPerson()); + System.out.printf("\tProper: %s\n", token.getPartOfSpeech().getProper()); + System.out.printf("\tReciprocity: %s\n", token.getPartOfSpeech().getReciprocity()); + System.out.printf("\tTense: %s\n", token.getPartOfSpeech().getTense()); + System.out.printf("\tVoice: %s\n", token.getPartOfSpeech().getVoice()); + System.out.println("DependencyEdge"); + System.out.printf("\tHeadTokenIndex: %d\n", token.getDependencyEdge().getHeadTokenIndex()); + System.out.printf("\tLabel: %s\n\n", token.getDependencyEdge().getLabel()); + } + return response.getTokensList(); + } + // [END language_syntax_text] + } + + /** Get the syntax of the GCS hosted file. */ + public static List analyzeSyntaxFile(String gcsUri) throws Exception { + // [START language_syntax_gcs] + // Instantiate the Language client com.google.cloud.language.v1.LanguageServiceClient + try (LanguageServiceClient language = LanguageServiceClient.create()) { + Document doc = + Document.newBuilder().setGcsContentUri(gcsUri).setType(Type.PLAIN_TEXT).build(); + AnalyzeSyntaxRequest request = + AnalyzeSyntaxRequest.newBuilder() + .setDocument(doc) + .setEncodingType(EncodingType.UTF16) + .build(); + // analyze the syntax in the given text + AnalyzeSyntaxResponse response = language.analyzeSyntax(request); + // print the response + for (Token token : response.getTokensList()) { + System.out.printf("\tText: %s\n", token.getText().getContent()); + System.out.printf("\tBeginOffset: %d\n", token.getText().getBeginOffset()); + System.out.printf("Lemma: %s\n", token.getLemma()); + System.out.printf("PartOfSpeechTag: %s\n", token.getPartOfSpeech().getTag()); + System.out.printf("\tAspect: %s\n", token.getPartOfSpeech().getAspect()); + System.out.printf("\tCase: %s\n", token.getPartOfSpeech().getCase()); + System.out.printf("\tForm: %s\n", token.getPartOfSpeech().getForm()); + System.out.printf("\tGender: %s\n", token.getPartOfSpeech().getGender()); + System.out.printf("\tMood: %s\n", token.getPartOfSpeech().getMood()); + System.out.printf("\tNumber: %s\n", token.getPartOfSpeech().getNumber()); + System.out.printf("\tPerson: %s\n", token.getPartOfSpeech().getPerson()); + System.out.printf("\tProper: %s\n", token.getPartOfSpeech().getProper()); + System.out.printf("\tReciprocity: %s\n", token.getPartOfSpeech().getReciprocity()); + System.out.printf("\tTense: %s\n", token.getPartOfSpeech().getTense()); + System.out.printf("\tVoice: %s\n", token.getPartOfSpeech().getVoice()); + System.out.println("DependencyEdge"); + System.out.printf("\tHeadTokenIndex: %d\n", token.getDependencyEdge().getHeadTokenIndex()); + System.out.printf("\tLabel: %s\n\n", token.getDependencyEdge().getLabel()); + } + + return response.getTokensList(); + } + // [END language_syntax_gcs] + } + + /** Detects categories in text using the Language Beta API. */ + public static void classifyText(String text) throws Exception { + // [START language_classify_text] + // Instantiate the Language client com.google.cloud.language.v1.LanguageServiceClient + try (LanguageServiceClient language = LanguageServiceClient.create()) { + // set content to the text string + Document doc = Document.newBuilder().setContent(text).setType(Type.PLAIN_TEXT).build(); + ClassifyTextRequest request = ClassifyTextRequest.newBuilder().setDocument(doc).build(); + // detect categories in the given text + ClassifyTextResponse response = language.classifyText(request); + + for (ClassificationCategory category : response.getCategoriesList()) { + System.out.printf( + "Category name : %s, Confidence : %.3f\n", + category.getName(), category.getConfidence()); + } + } + // [END language_classify_text] + } + + /** Detects categories in a GCS hosted file using the Language Beta API. */ + public static void classifyFile(String gcsUri) throws Exception { + // [START language_classify_gcs] + // Instantiate the Language client com.google.cloud.language.v1.LanguageServiceClient + try (LanguageServiceClient language = LanguageServiceClient.create()) { + // set the GCS content URI path + Document doc = + Document.newBuilder().setGcsContentUri(gcsUri).setType(Type.PLAIN_TEXT).build(); + ClassifyTextRequest request = ClassifyTextRequest.newBuilder().setDocument(doc).build(); + // detect categories in the given file + ClassifyTextResponse response = language.classifyText(request); + + for (ClassificationCategory category : response.getCategoriesList()) { + System.out.printf( + "Category name : %s, Confidence : %.3f\n", + category.getName(), category.getConfidence()); + } + } + // [END language_classify_gcs] + } + + /** Detects the entity sentiments in the string {@code text} using the Language Beta API. */ + public static void entitySentimentText(String text) throws Exception { + // [START language_entity_sentiment_text] + // Instantiate the Language client com.google.cloud.language.v1.LanguageServiceClient + try (LanguageServiceClient language = LanguageServiceClient.create()) { + Document doc = Document.newBuilder().setContent(text).setType(Type.PLAIN_TEXT).build(); + AnalyzeEntitySentimentRequest request = + AnalyzeEntitySentimentRequest.newBuilder() + .setDocument(doc) + .setEncodingType(EncodingType.UTF16) + .build(); + // detect entity sentiments in the given string + AnalyzeEntitySentimentResponse response = language.analyzeEntitySentiment(request); + // Print the response + for (Entity entity : response.getEntitiesList()) { + System.out.printf("Entity: %s\n", entity.getName()); + System.out.printf("Salience: %.3f\n", entity.getSalience()); + System.out.printf("Sentiment : %s\n", entity.getSentiment()); + for (EntityMention mention : entity.getMentionsList()) { + System.out.printf("Begin offset: %d\n", mention.getText().getBeginOffset()); + System.out.printf("Content: %s\n", mention.getText().getContent()); + System.out.printf("Magnitude: %.3f\n", mention.getSentiment().getMagnitude()); + System.out.printf("Sentiment score : %.3f\n", mention.getSentiment().getScore()); + System.out.printf("Type: %s\n\n", mention.getType()); + } + } + } + // [END language_entity_sentiment_text] + } + + /** Identifies the entity sentiments in the the GCS hosted file using the Language Beta API. */ + public static void entitySentimentFile(String gcsUri) throws Exception { + // [START language_entity_sentiment_gcs] + // Instantiate the Language client com.google.cloud.language.v1.LanguageServiceClient + try (LanguageServiceClient language = LanguageServiceClient.create()) { + Document doc = + Document.newBuilder().setGcsContentUri(gcsUri).setType(Type.PLAIN_TEXT).build(); + AnalyzeEntitySentimentRequest request = + AnalyzeEntitySentimentRequest.newBuilder() + .setDocument(doc) + .setEncodingType(EncodingType.UTF16) + .build(); + // Detect entity sentiments in the given file + AnalyzeEntitySentimentResponse response = language.analyzeEntitySentiment(request); + // Print the response + for (Entity entity : response.getEntitiesList()) { + System.out.printf("Entity: %s\n", entity.getName()); + System.out.printf("Salience: %.3f\n", entity.getSalience()); + System.out.printf("Sentiment : %s\n", entity.getSentiment()); + for (EntityMention mention : entity.getMentionsList()) { + System.out.printf("Begin offset: %d\n", mention.getText().getBeginOffset()); + System.out.printf("Content: %s\n", mention.getText().getContent()); + System.out.printf("Magnitude: %.3f\n", mention.getSentiment().getMagnitude()); + System.out.printf("Sentiment score : %.3f\n", mention.getSentiment().getScore()); + System.out.printf("Type: %s\n\n", mention.getType()); + } + } + } + // [END language_entity_sentiment_gcs] + } +} diff --git a/language/snippets/src/test/java/beta/example/language/AnalyzeBetaIT.java b/language/snippets/src/test/java/beta/example/language/AnalyzeBetaIT.java new file mode 100644 index 00000000000..5c4f1101f1d --- /dev/null +++ b/language/snippets/src/test/java/beta/example/language/AnalyzeBetaIT.java @@ -0,0 +1,80 @@ +/* + * Copyright 2017 Google Inc. + * + * 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. + */ + +package beta.example.language; + +import static com.google.common.truth.Truth.assertThat; + +import com.example.language.Analyze; +import com.google.cloud.language.v1beta2.Sentiment; +import java.io.ByteArrayOutputStream; +import java.io.PrintStream; +import org.junit.After; +import org.junit.Before; +import org.junit.Test; +import org.junit.runner.RunWith; +import org.junit.runners.JUnit4; + +/** Integration (system) tests for {@link Analyze}. */ +@RunWith(JUnit4.class) +@SuppressWarnings("checkstyle:abbreviationaswordinname") +public class AnalyzeBetaIT { + + private ByteArrayOutputStream bout; + private PrintStream out; + private PrintStream originalPrintStream; + + @Before + public void setUp() { + bout = new ByteArrayOutputStream(); + out = new PrintStream(bout); + originalPrintStream = System.out; + System.setOut(out); + } + + @After + public void tearDown() { + // restores print statements in the original method + System.out.flush(); + System.setOut(originalPrintStream); + } + + @Test + public void analyzeSentiment_returnPositiveGerman() throws Exception { + Sentiment sentiment = + AnalyzeBeta.analyzeSentimentText("Ich hatte die schΓΆnste Erfahrung mit euch allen.", "DE"); + assertThat(sentiment.getMagnitude()).isGreaterThan(0.0F); + assertThat(sentiment.getScore()).isGreaterThan(0.0F); + } + + @Test + public void analyzeCategoriesInTextReturnsExpectedResult() throws Exception { + AnalyzeBeta.classifyText( + "Android is a mobile operating system developed by Google, " + + "based on the Linux kernel and designed primarily for touchscreen " + + "mobile devices such as smartphones and tablets."); + String got = bout.toString(); + assertThat(got).contains("Computers & Electronics"); + } + + @Test + public void analyzeCategoriesInFileReturnsExpectedResult() throws Exception { + String gcsFile = "gs://cloud-samples-data/language/android.txt"; + AnalyzeBeta.classifyFile(gcsFile); + String got = bout.toString(); + assertThat(got).contains("Computers & Electronics"); + } +} diff --git a/language/snippets/src/test/java/com/example/language/AnalyzeIT.java b/language/snippets/src/test/java/com/example/language/AnalyzeIT.java new file mode 100644 index 00000000000..f80ee83cc10 --- /dev/null +++ b/language/snippets/src/test/java/com/example/language/AnalyzeIT.java @@ -0,0 +1,177 @@ +/* + * Copyright 2016 Google Inc. + * + * 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. + */ + +package com.example.language; + +import static com.google.common.truth.Truth.assertThat; + +import com.google.cloud.language.v1.PartOfSpeech.Tag; +import com.google.cloud.language.v1.Sentiment; +import com.google.cloud.language.v1.Token; +import java.io.ByteArrayOutputStream; +import java.io.PrintStream; +import java.util.List; +import java.util.stream.Collectors; +import org.junit.After; +import org.junit.Before; +import org.junit.Test; +import org.junit.runner.RunWith; +import org.junit.runners.JUnit4; + +/** Integration (system) tests for {@link Analyze}. */ +@RunWith(JUnit4.class) +@SuppressWarnings("checkstyle:abbreviationaswordinname") +public class AnalyzeIT { + + private ByteArrayOutputStream bout; + private PrintStream out; + private PrintStream originalPrintStream; + + @Before + public void setUp() { + bout = new ByteArrayOutputStream(); + out = new PrintStream(bout); + originalPrintStream = System.out; + System.setOut(out); + } + + @After + public void tearDown() { + // restores print statements in the original method + System.out.flush(); + System.setOut(originalPrintStream); + } + + @Test + public void analyzeCategoriesInTextReturnsExpectedResult() throws Exception { + Analyze.classifyText( + "Android is a mobile operating system developed by Google, " + + "based on the Linux kernel and designed primarily for touchscreen " + + "mobile devices such as smartphones and tablets."); + String got = bout.toString(); + assertThat(got).contains("Computers & Electronics"); + } + + @Test + public void analyzeCategoriesInFileReturnsExpectedResult() throws Exception { + String gcsFile = "gs://cloud-samples-data/language/android.txt"; + Analyze.classifyFile(gcsFile); + String got = bout.toString(); + assertThat(got).contains("Computers & Electronics"); + } + + @Test + public void analyzeEntities_withEntities_returnsLarryPage() throws Exception { + Analyze.analyzeEntitiesText( + "Larry Page, Google's co-founder, once described the 'perfect search engine' as" + + " something that 'understands exactly what you mean and gives you back exactly what" + + " you want.' Since he spoke those words Google has grown to offer products beyond" + + " search, but the spirit of what he said remains."); + String got = bout.toString(); + assertThat(got).contains("Larry Page"); + } + + @Test + public void analyzeEntities_withEntitiesFile_containsCalifornia() throws Exception { + Analyze.analyzeEntitiesFile("gs://cloud-samples-data/language/entity.txt"); + String got = bout.toString(); + assertThat(got).contains("California"); + } + + @Test + public void analyzeSentimentText_returnPositive() throws Exception { + Sentiment sentiment = + Analyze.analyzeSentimentText( + "Tom Cruise is one of the finest actors in hollywood and a great star!"); + assertThat(sentiment.getMagnitude()).isGreaterThan(0.0F); + assertThat(sentiment.getScore()).isGreaterThan(0.0F); + } + + @Test + public void analyzeSentimentFile_returnPositiveFile() throws Exception { + Sentiment sentiment = + Analyze.analyzeSentimentFile( + "gs://cloud-samples-data/language/" + "sentiment-positive.txt"); + assertThat(sentiment.getMagnitude()).isGreaterThan(0.0F); + assertThat(sentiment.getScore()).isGreaterThan(0.0F); + } + + @Test + public void analyzeSentimentText_returnNegative() throws Exception { + Sentiment sentiment = + Analyze.analyzeSentimentText("That was the worst performance I've seen in a while."); + assertThat(sentiment.getMagnitude()).isGreaterThan(0.0F); + assertThat(sentiment.getScore()).isLessThan(0.0F); + } + + @Test + public void analyzeSentiment_returnNegative() throws Exception { + Sentiment sentiment = + Analyze.analyzeSentimentFile( + "gs://cloud-samples-data/language/" + "sentiment-negative.txt"); + assertThat(sentiment.getMagnitude()).isGreaterThan(0.0F); + assertThat(sentiment.getScore()).isLessThan(0.0F); + } + + @Test + public void analyzeSyntax_partOfSpeech() throws Exception { + List tokens = + Analyze.analyzeSyntaxText("President Obama was elected for the second term"); + + List got = + tokens.stream().map(e -> e.getPartOfSpeech().getTag()).collect(Collectors.toList()); + + assertThat(got) + .containsExactly( + Tag.NOUN, Tag.NOUN, Tag.VERB, Tag.VERB, Tag.ADP, Tag.DET, Tag.ADJ, Tag.NOUN) + .inOrder(); + } + + @Test + public void analyzeSyntax_partOfSpeechFile() throws Exception { + List token = + Analyze.analyzeSyntaxFile("gs://cloud-samples-data/language/" + "syntax-sentence.txt"); + + List got = + token.stream().map(e -> e.getPartOfSpeech().getTag()).collect(Collectors.toList()); + assertThat(got) + .containsExactly(Tag.DET, Tag.VERB, Tag.DET, Tag.ADJ, Tag.NOUN, Tag.PUNCT) + .inOrder(); + } + + @Test + public void analyzeEntitySentimentTextReturnsExpectedResult() throws Exception { + Analyze.entitySentimentText( + "Oranges, grapes, and apples can be " + + "found in the cafeterias located in Mountain View, Seattle, and London."); + String got = bout.toString(); + assertThat(got).contains("Seattle"); + } + + @Test + public void analyzeEntitySentimentTextEncodedReturnsExpectedResult() throws Exception { + Analyze.entitySentimentText("fooβ†’bar"); + String got = bout.toString(); + assertThat(got).contains("offset: 4"); + } + + @Test + public void analyzeEntitySentimenFileReturnsExpectedResult() throws Exception { + Analyze.entitySentimentFile("gs://cloud-samples-data/language/president.txt"); + String got = bout.toString(); + assertThat(got).contains("Kennedy"); + } +} diff --git a/language/snippets/src/test/java/com/example/language/QuickstartSampleIT.java b/language/snippets/src/test/java/com/example/language/QuickstartSampleIT.java index 9f335c78a5b..15a89ff5d96 100644 --- a/language/snippets/src/test/java/com/example/language/QuickstartSampleIT.java +++ b/language/snippets/src/test/java/com/example/language/QuickstartSampleIT.java @@ -32,17 +32,21 @@ public class QuickstartSampleIT { private ByteArrayOutputStream bout; private PrintStream out; + private PrintStream originalPrintStream; @Before public void setUp() { bout = new ByteArrayOutputStream(); out = new PrintStream(bout); + originalPrintStream = System.out; System.setOut(out); } @After public void tearDown() { - System.setOut(null); + // restores print statements in the original method + System.out.flush(); + System.setOut(originalPrintStream); } @Test diff --git a/language/snippets/src/test/java/com/example/language/SetEndpointIT.java b/language/snippets/src/test/java/com/example/language/SetEndpointIT.java index df570711337..f464f472735 100644 --- a/language/snippets/src/test/java/com/example/language/SetEndpointIT.java +++ b/language/snippets/src/test/java/com/example/language/SetEndpointIT.java @@ -34,17 +34,21 @@ public class SetEndpointIT { private ByteArrayOutputStream bout; private PrintStream out; + private PrintStream originalPrintStream; @Before public void setUp() { bout = new ByteArrayOutputStream(); out = new PrintStream(bout); + originalPrintStream = System.out; System.setOut(out); } @After public void tearDown() { - System.setOut(null); + // restores print statements in the original method + System.out.flush(); + System.setOut(originalPrintStream); } @Test From 4d898eb23a4bbcf2baa1a4bc0ff0de2d5eff02c9 Mon Sep 17 00:00:00 2001 From: WhiteSource Renovate Date: Thu, 19 Nov 2020 18:00:43 +0100 Subject: [PATCH 46/98] chore(deps): update dependency com.google.cloud:libraries-bom to v16 (#314) [![WhiteSource Renovate](https://app.renovatebot.com/images/banner.svg)](https://renovatebot.com) This PR contains the following updates: | Package | Update | Change | |---|---|---| | [com.google.cloud:libraries-bom](https://togithub.com/GoogleCloudPlatform/cloud-opensource-java) | major | `15.0.0` -> `16.1.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#github/googleapis/java-language). --- language/snippets/pom.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/language/snippets/pom.xml b/language/snippets/pom.xml index baca2c13009..2c755a33763 100644 --- a/language/snippets/pom.xml +++ b/language/snippets/pom.xml @@ -30,7 +30,7 @@ com.google.cloud libraries-bom - 15.0.0 + 16.1.0 pom import From f77f4eaefaadb7d785847ae6d2227c0046bcfaa2 Mon Sep 17 00:00:00 2001 From: WhiteSource Renovate Date: Tue, 15 Dec 2020 23:30:38 +0100 Subject: [PATCH 47/98] chore(deps): update dependency com.google.cloud:libraries-bom to v16.2.0 (#337) [![WhiteSource Renovate](https://app.renovatebot.com/images/banner.svg)](https://renovatebot.com) This PR contains the following updates: | Package | Update | Change | |---|---|---| | [com.google.cloud:libraries-bom](https://togithub.com/GoogleCloudPlatform/cloud-opensource-java) | minor | `16.1.0` -> `16.2.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#github/googleapis/java-language). --- language/snippets/pom.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/language/snippets/pom.xml b/language/snippets/pom.xml index 2c755a33763..7cba84e8bfb 100644 --- a/language/snippets/pom.xml +++ b/language/snippets/pom.xml @@ -30,7 +30,7 @@ com.google.cloud libraries-bom - 16.1.0 + 16.2.0 pom import From 65dcd5f30926c2437ea2976d152b11c55016da65 Mon Sep 17 00:00:00 2001 From: WhiteSource Renovate Date: Thu, 7 Jan 2021 22:28:21 +0100 Subject: [PATCH 48/98] chore(deps): update dependency com.google.cloud:libraries-bom to v16.2.1 (#343) [![WhiteSource Renovate](https://app.renovatebot.com/images/banner.svg)](https://renovatebot.com) This PR contains the following updates: | Package | Update | Change | |---|---|---| | [com.google.cloud:libraries-bom](https://togithub.com/GoogleCloudPlatform/cloud-opensource-java) | patch | `16.2.0` -> `16.2.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#github/googleapis/java-language). --- language/snippets/pom.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/language/snippets/pom.xml b/language/snippets/pom.xml index 7cba84e8bfb..33fade8c2cb 100644 --- a/language/snippets/pom.xml +++ b/language/snippets/pom.xml @@ -30,7 +30,7 @@ com.google.cloud libraries-bom - 16.2.0 + 16.2.1 pom import From d132e982ddad76ec046a25a761984ff1671047b8 Mon Sep 17 00:00:00 2001 From: WhiteSource Renovate Date: Mon, 25 Jan 2021 18:32:14 +0100 Subject: [PATCH 49/98] test(deps): update dependency com.google.truth:truth to v1.1.2 (#354) [![WhiteSource Renovate](https://app.renovatebot.com/images/banner.svg)](https://renovatebot.com) This PR contains the following updates: | Package | Change | Age | Adoption | Passing | Confidence | |---|---|---|---|---|---| | [com.google.truth:truth](com/google/truth/truth) | `1.1` -> `1.1.2` | [![age](https://badges.renovateapi.com/packages/maven/com.google.truth:truth/1.1.2/age-slim)](https://docs.renovatebot.com/merge-confidence/) | [![adoption](https://badges.renovateapi.com/packages/maven/com.google.truth:truth/1.1.2/adoption-slim)](https://docs.renovatebot.com/merge-confidence/) | [![passing](https://badges.renovateapi.com/packages/maven/com.google.truth:truth/1.1.2/compatibility-slim/1.1)](https://docs.renovatebot.com/merge-confidence/) | [![confidence](https://badges.renovateapi.com/packages/maven/com.google.truth:truth/1.1.2/confidence-slim/1.1)](https://docs.renovatebot.com/merge-confidence/) | --- ### 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#github/googleapis/java-language). --- language/snippets/pom.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/language/snippets/pom.xml b/language/snippets/pom.xml index 33fade8c2cb..89d5e413fe8 100644 --- a/language/snippets/pom.xml +++ b/language/snippets/pom.xml @@ -53,7 +53,7 @@ com.google.truth truth - 1.1 + 1.1.2 test From a25999f65fa9f67955d27f8536893cffc21291bb Mon Sep 17 00:00:00 2001 From: WhiteSource Renovate Date: Fri, 29 Jan 2021 22:03:32 +0100 Subject: [PATCH 50/98] chore(deps): update dependency com.google.cloud:libraries-bom to v16.3.0 (#353) --- language/snippets/pom.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/language/snippets/pom.xml b/language/snippets/pom.xml index 89d5e413fe8..d360f321908 100644 --- a/language/snippets/pom.xml +++ b/language/snippets/pom.xml @@ -30,7 +30,7 @@ com.google.cloud libraries-bom - 16.2.1 + 16.3.0 pom import From 4512cb9916b19822b450520fcb69e3ee4ac16514 Mon Sep 17 00:00:00 2001 From: WhiteSource Renovate Date: Wed, 10 Feb 2021 17:06:16 +0100 Subject: [PATCH 51/98] chore(deps): update dependency com.google.cloud:libraries-bom to v16.4.0 (#371) [![WhiteSource Renovate](https://app.renovatebot.com/images/banner.svg)](https://renovatebot.com) This PR contains the following updates: | Package | Change | Age | Adoption | Passing | Confidence | |---|---|---|---|---|---| | [com.google.cloud:libraries-bom](https://togithub.com/GoogleCloudPlatform/cloud-opensource-java) | `16.3.0` -> `16.4.0` | [![age](https://badges.renovateapi.com/packages/maven/com.google.cloud:libraries-bom/16.4.0/age-slim)](https://docs.renovatebot.com/merge-confidence/) | [![adoption](https://badges.renovateapi.com/packages/maven/com.google.cloud:libraries-bom/16.4.0/adoption-slim)](https://docs.renovatebot.com/merge-confidence/) | [![passing](https://badges.renovateapi.com/packages/maven/com.google.cloud:libraries-bom/16.4.0/compatibility-slim/16.3.0)](https://docs.renovatebot.com/merge-confidence/) | [![confidence](https://badges.renovateapi.com/packages/maven/com.google.cloud:libraries-bom/16.4.0/confidence-slim/16.3.0)](https://docs.renovatebot.com/merge-confidence/) | --- ### 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#github/googleapis/java-language). --- language/snippets/pom.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/language/snippets/pom.xml b/language/snippets/pom.xml index d360f321908..7459afe0807 100644 --- a/language/snippets/pom.xml +++ b/language/snippets/pom.xml @@ -30,7 +30,7 @@ com.google.cloud libraries-bom - 16.3.0 + 16.4.0 pom import From 306a7b2be3bafbe0c22ffab12d5859721bdadb1b Mon Sep 17 00:00:00 2001 From: WhiteSource Renovate Date: Tue, 16 Feb 2021 19:06:19 +0100 Subject: [PATCH 52/98] test(deps): update dependency junit:junit to v4.13.2 (#374) [![WhiteSource Renovate](https://app.renovatebot.com/images/banner.svg)](https://renovatebot.com) This PR contains the following updates: | Package | Change | Age | Adoption | Passing | Confidence | |---|---|---|---|---|---| | [junit:junit](http://junit.org) ([source](https://togithub.com/junit-team/junit4)) | `4.13.1` -> `4.13.2` | [![age](https://badges.renovateapi.com/packages/maven/junit:junit/4.13.2/age-slim)](https://docs.renovatebot.com/merge-confidence/) | [![adoption](https://badges.renovateapi.com/packages/maven/junit:junit/4.13.2/adoption-slim)](https://docs.renovatebot.com/merge-confidence/) | [![passing](https://badges.renovateapi.com/packages/maven/junit:junit/4.13.2/compatibility-slim/4.13.1)](https://docs.renovatebot.com/merge-confidence/) | [![confidence](https://badges.renovateapi.com/packages/maven/junit:junit/4.13.2/confidence-slim/4.13.1)](https://docs.renovatebot.com/merge-confidence/) | --- ### 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#github/googleapis/java-language). --- language/snippets/pom.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/language/snippets/pom.xml b/language/snippets/pom.xml index 7459afe0807..1ae4ea84a3a 100644 --- a/language/snippets/pom.xml +++ b/language/snippets/pom.xml @@ -47,7 +47,7 @@ junit junit - 4.13.1 + 4.13.2 test From 491cfd40f14c1d81ba159b59e974eea279035134 Mon Sep 17 00:00:00 2001 From: WhiteSource Renovate Date: Wed, 24 Feb 2021 20:36:27 +0100 Subject: [PATCH 53/98] chore(deps): update dependency com.google.cloud:libraries-bom to v17 (#383) [![WhiteSource Renovate](https://app.renovatebot.com/images/banner.svg)](https://renovatebot.com) This PR contains the following updates: | Package | Change | Age | Adoption | Passing | Confidence | |---|---|---|---|---|---| | [com.google.cloud:libraries-bom](https://togithub.com/GoogleCloudPlatform/cloud-opensource-java) | `16.4.0` -> `17.0.0` | [![age](https://badges.renovateapi.com/packages/maven/com.google.cloud:libraries-bom/17.0.0/age-slim)](https://docs.renovatebot.com/merge-confidence/) | [![adoption](https://badges.renovateapi.com/packages/maven/com.google.cloud:libraries-bom/17.0.0/adoption-slim)](https://docs.renovatebot.com/merge-confidence/) | [![passing](https://badges.renovateapi.com/packages/maven/com.google.cloud:libraries-bom/17.0.0/compatibility-slim/16.4.0)](https://docs.renovatebot.com/merge-confidence/) | [![confidence](https://badges.renovateapi.com/packages/maven/com.google.cloud:libraries-bom/17.0.0/confidence-slim/16.4.0)](https://docs.renovatebot.com/merge-confidence/) | --- ### 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#github/googleapis/java-language). --- language/snippets/pom.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/language/snippets/pom.xml b/language/snippets/pom.xml index 1ae4ea84a3a..67741281041 100644 --- a/language/snippets/pom.xml +++ b/language/snippets/pom.xml @@ -30,7 +30,7 @@ com.google.cloud libraries-bom - 16.4.0 + 17.0.0 pom import From 14bcda445a255a0c8104aac9c3f5dce94414bfd3 Mon Sep 17 00:00:00 2001 From: WhiteSource Renovate Date: Thu, 25 Feb 2021 16:08:28 +0100 Subject: [PATCH 54/98] chore(deps): update dependency com.google.cloud:libraries-bom to v18 (#386) [![WhiteSource Renovate](https://app.renovatebot.com/images/banner.svg)](https://renovatebot.com) This PR contains the following updates: | Package | Change | Age | Adoption | Passing | Confidence | |---|---|---|---|---|---| | [com.google.cloud:libraries-bom](https://togithub.com/GoogleCloudPlatform/cloud-opensource-java) | `17.0.0` -> `18.0.0` | [![age](https://badges.renovateapi.com/packages/maven/com.google.cloud:libraries-bom/18.0.0/age-slim)](https://docs.renovatebot.com/merge-confidence/) | [![adoption](https://badges.renovateapi.com/packages/maven/com.google.cloud:libraries-bom/18.0.0/adoption-slim)](https://docs.renovatebot.com/merge-confidence/) | [![passing](https://badges.renovateapi.com/packages/maven/com.google.cloud:libraries-bom/18.0.0/compatibility-slim/17.0.0)](https://docs.renovatebot.com/merge-confidence/) | [![confidence](https://badges.renovateapi.com/packages/maven/com.google.cloud:libraries-bom/18.0.0/confidence-slim/17.0.0)](https://docs.renovatebot.com/merge-confidence/) | --- ### 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#github/googleapis/java-language). --- language/snippets/pom.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/language/snippets/pom.xml b/language/snippets/pom.xml index 67741281041..ebd9934bbcf 100644 --- a/language/snippets/pom.xml +++ b/language/snippets/pom.xml @@ -30,7 +30,7 @@ com.google.cloud libraries-bom - 17.0.0 + 18.0.0 pom import From 925cfe9a233bbec71399077dba7adc3734f53c1b Mon Sep 17 00:00:00 2001 From: WhiteSource Renovate Date: Wed, 3 Mar 2021 20:36:35 +0100 Subject: [PATCH 55/98] chore(deps): update dependency com.google.cloud:libraries-bom to v18.1.0 (#397) [![WhiteSource Renovate](https://app.renovatebot.com/images/banner.svg)](https://renovatebot.com) This PR contains the following updates: | Package | Change | Age | Adoption | Passing | Confidence | |---|---|---|---|---|---| | [com.google.cloud:libraries-bom](https://togithub.com/GoogleCloudPlatform/cloud-opensource-java) | `18.0.0` -> `18.1.0` | [![age](https://badges.renovateapi.com/packages/maven/com.google.cloud:libraries-bom/18.1.0/age-slim)](https://docs.renovatebot.com/merge-confidence/) | [![adoption](https://badges.renovateapi.com/packages/maven/com.google.cloud:libraries-bom/18.1.0/adoption-slim)](https://docs.renovatebot.com/merge-confidence/) | [![passing](https://badges.renovateapi.com/packages/maven/com.google.cloud:libraries-bom/18.1.0/compatibility-slim/18.0.0)](https://docs.renovatebot.com/merge-confidence/) | [![confidence](https://badges.renovateapi.com/packages/maven/com.google.cloud:libraries-bom/18.1.0/confidence-slim/18.0.0)](https://docs.renovatebot.com/merge-confidence/) | --- ### 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#github/googleapis/java-language). --- language/snippets/pom.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/language/snippets/pom.xml b/language/snippets/pom.xml index ebd9934bbcf..fb6aff271b4 100644 --- a/language/snippets/pom.xml +++ b/language/snippets/pom.xml @@ -30,7 +30,7 @@ com.google.cloud libraries-bom - 18.0.0 + 18.1.0 pom import From ccd56a288d448cb341d8e8d8d6af5628aeb88270 Mon Sep 17 00:00:00 2001 From: WhiteSource Renovate Date: Thu, 4 Mar 2021 20:36:36 +0100 Subject: [PATCH 56/98] chore(deps): update dependency com.google.cloud:libraries-bom to v19 (#400) [![WhiteSource Renovate](https://app.renovatebot.com/images/banner.svg)](https://renovatebot.com) This PR contains the following updates: | Package | Change | Age | Adoption | Passing | Confidence | |---|---|---|---|---|---| | [com.google.cloud:libraries-bom](https://togithub.com/GoogleCloudPlatform/cloud-opensource-java) | `18.1.0` -> `19.0.0` | [![age](https://badges.renovateapi.com/packages/maven/com.google.cloud:libraries-bom/19.0.0/age-slim)](https://docs.renovatebot.com/merge-confidence/) | [![adoption](https://badges.renovateapi.com/packages/maven/com.google.cloud:libraries-bom/19.0.0/adoption-slim)](https://docs.renovatebot.com/merge-confidence/) | [![passing](https://badges.renovateapi.com/packages/maven/com.google.cloud:libraries-bom/19.0.0/compatibility-slim/18.1.0)](https://docs.renovatebot.com/merge-confidence/) | [![confidence](https://badges.renovateapi.com/packages/maven/com.google.cloud:libraries-bom/19.0.0/confidence-slim/18.1.0)](https://docs.renovatebot.com/merge-confidence/) | --- ### 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#github/googleapis/java-language). --- language/snippets/pom.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/language/snippets/pom.xml b/language/snippets/pom.xml index fb6aff271b4..d3d3dcc6102 100644 --- a/language/snippets/pom.xml +++ b/language/snippets/pom.xml @@ -30,7 +30,7 @@ com.google.cloud libraries-bom - 18.1.0 + 19.0.0 pom import From 5cbad3f17f16590a7af10fb557f3f6ae84b08006 Mon Sep 17 00:00:00 2001 From: WhiteSource Renovate Date: Wed, 17 Mar 2021 21:08:34 +0100 Subject: [PATCH 57/98] chore(deps): update dependency com.google.cloud:libraries-bom to v19.1.0 (#411) [![WhiteSource Renovate](https://app.renovatebot.com/images/banner.svg)](https://renovatebot.com) This PR contains the following updates: | Package | Change | Age | Adoption | Passing | Confidence | |---|---|---|---|---|---| | [com.google.cloud:libraries-bom](https://togithub.com/GoogleCloudPlatform/cloud-opensource-java) | `19.0.0` -> `19.1.0` | [![age](https://badges.renovateapi.com/packages/maven/com.google.cloud:libraries-bom/19.1.0/age-slim)](https://docs.renovatebot.com/merge-confidence/) | [![adoption](https://badges.renovateapi.com/packages/maven/com.google.cloud:libraries-bom/19.1.0/adoption-slim)](https://docs.renovatebot.com/merge-confidence/) | [![passing](https://badges.renovateapi.com/packages/maven/com.google.cloud:libraries-bom/19.1.0/compatibility-slim/19.0.0)](https://docs.renovatebot.com/merge-confidence/) | [![confidence](https://badges.renovateapi.com/packages/maven/com.google.cloud:libraries-bom/19.1.0/confidence-slim/19.0.0)](https://docs.renovatebot.com/merge-confidence/) | --- ### 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#github/googleapis/java-language). --- language/snippets/pom.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/language/snippets/pom.xml b/language/snippets/pom.xml index d3d3dcc6102..c8566778b35 100644 --- a/language/snippets/pom.xml +++ b/language/snippets/pom.xml @@ -30,7 +30,7 @@ com.google.cloud libraries-bom - 19.0.0 + 19.1.0 pom import From 09a31f6fa07e14023557dbaab0edbacb46a9698f Mon Sep 17 00:00:00 2001 From: WhiteSource Renovate Date: Mon, 29 Mar 2021 15:56:15 +0200 Subject: [PATCH 58/98] chore(deps): update dependency com.google.cloud:libraries-bom to v19.2.1 (#413) [![WhiteSource Renovate](https://app.renovatebot.com/images/banner.svg)](https://renovatebot.com) This PR contains the following updates: | Package | Change | Age | Adoption | Passing | Confidence | |---|---|---|---|---|---| | [com.google.cloud:libraries-bom](https://togithub.com/GoogleCloudPlatform/cloud-opensource-java) | `19.1.0` -> `19.2.1` | [![age](https://badges.renovateapi.com/packages/maven/com.google.cloud:libraries-bom/19.2.1/age-slim)](https://docs.renovatebot.com/merge-confidence/) | [![adoption](https://badges.renovateapi.com/packages/maven/com.google.cloud:libraries-bom/19.2.1/adoption-slim)](https://docs.renovatebot.com/merge-confidence/) | [![passing](https://badges.renovateapi.com/packages/maven/com.google.cloud:libraries-bom/19.2.1/compatibility-slim/19.1.0)](https://docs.renovatebot.com/merge-confidence/) | [![confidence](https://badges.renovateapi.com/packages/maven/com.google.cloud:libraries-bom/19.2.1/confidence-slim/19.1.0)](https://docs.renovatebot.com/merge-confidence/) | --- ### 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#github/googleapis/java-language). --- language/snippets/pom.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/language/snippets/pom.xml b/language/snippets/pom.xml index c8566778b35..d1aa9f906ef 100644 --- a/language/snippets/pom.xml +++ b/language/snippets/pom.xml @@ -30,7 +30,7 @@ com.google.cloud libraries-bom - 19.1.0 + 19.2.1 pom import From 347020bff6c4376768abd47877ba41b98a2d4419 Mon Sep 17 00:00:00 2001 From: WhiteSource Renovate Date: Fri, 9 Apr 2021 19:52:25 +0200 Subject: [PATCH 59/98] chore(deps): update dependency com.google.cloud.samples:shared-configuration to v1.0.22 (#419) [![WhiteSource Renovate](https://app.renovatebot.com/images/banner.svg)](https://renovatebot.com) This PR contains the following updates: | Package | Change | Age | Adoption | Passing | Confidence | |---|---|---|---|---|---| | com.google.cloud.samples:shared-configuration | `1.0.21` -> `1.0.22` | [![age](https://badges.renovateapi.com/packages/maven/com.google.cloud.samples:shared-configuration/1.0.22/age-slim)](https://docs.renovatebot.com/merge-confidence/) | [![adoption](https://badges.renovateapi.com/packages/maven/com.google.cloud.samples:shared-configuration/1.0.22/adoption-slim)](https://docs.renovatebot.com/merge-confidence/) | [![passing](https://badges.renovateapi.com/packages/maven/com.google.cloud.samples:shared-configuration/1.0.22/compatibility-slim/1.0.21)](https://docs.renovatebot.com/merge-confidence/) | [![confidence](https://badges.renovateapi.com/packages/maven/com.google.cloud.samples:shared-configuration/1.0.22/confidence-slim/1.0.21)](https://docs.renovatebot.com/merge-confidence/) | --- ### 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#github/googleapis/java-language). --- language/snippets/pom.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/language/snippets/pom.xml b/language/snippets/pom.xml index d1aa9f906ef..2bac9696c4f 100644 --- a/language/snippets/pom.xml +++ b/language/snippets/pom.xml @@ -14,7 +14,7 @@ com.google.cloud.samples shared-configuration - 1.0.21 + 1.0.22 From f372b8ca5e081122411971866ad8a21d5ca64c5e Mon Sep 17 00:00:00 2001 From: WhiteSource Renovate Date: Mon, 12 Apr 2021 18:04:43 +0200 Subject: [PATCH 60/98] chore(deps): update dependency com.google.cloud:libraries-bom to v20 (#429) [![WhiteSource Renovate](https://app.renovatebot.com/images/banner.svg)](https://renovatebot.com) This PR contains the following updates: | Package | Change | Age | Adoption | Passing | Confidence | |---|---|---|---|---|---| | [com.google.cloud:libraries-bom](https://togithub.com/GoogleCloudPlatform/cloud-opensource-java) | `19.2.1` -> `20.0.0` | [![age](https://badges.renovateapi.com/packages/maven/com.google.cloud:libraries-bom/20.0.0/age-slim)](https://docs.renovatebot.com/merge-confidence/) | [![adoption](https://badges.renovateapi.com/packages/maven/com.google.cloud:libraries-bom/20.0.0/adoption-slim)](https://docs.renovatebot.com/merge-confidence/) | [![passing](https://badges.renovateapi.com/packages/maven/com.google.cloud:libraries-bom/20.0.0/compatibility-slim/19.2.1)](https://docs.renovatebot.com/merge-confidence/) | [![confidence](https://badges.renovateapi.com/packages/maven/com.google.cloud:libraries-bom/20.0.0/confidence-slim/19.2.1)](https://docs.renovatebot.com/merge-confidence/) | --- ### 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#github/googleapis/java-language). --- language/snippets/pom.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/language/snippets/pom.xml b/language/snippets/pom.xml index 2bac9696c4f..856fb973982 100644 --- a/language/snippets/pom.xml +++ b/language/snippets/pom.xml @@ -30,7 +30,7 @@ com.google.cloud libraries-bom - 19.2.1 + 20.0.0 pom import From 860b1baa4e39da5c8c67e5433e856ff662ae9ad9 Mon Sep 17 00:00:00 2001 From: WhiteSource Renovate Date: Mon, 19 Apr 2021 16:44:26 +0200 Subject: [PATCH 61/98] chore(deps): update dependency com.google.cloud:libraries-bom to v20.1.0 (#436) [![WhiteSource Renovate](https://app.renovatebot.com/images/banner.svg)](https://renovatebot.com) This PR contains the following updates: | Package | Change | Age | Adoption | Passing | Confidence | |---|---|---|---|---|---| | [com.google.cloud:libraries-bom](https://togithub.com/GoogleCloudPlatform/cloud-opensource-java) | `20.0.0` -> `20.1.0` | [![age](https://badges.renovateapi.com/packages/maven/com.google.cloud:libraries-bom/20.1.0/age-slim)](https://docs.renovatebot.com/merge-confidence/) | [![adoption](https://badges.renovateapi.com/packages/maven/com.google.cloud:libraries-bom/20.1.0/adoption-slim)](https://docs.renovatebot.com/merge-confidence/) | [![passing](https://badges.renovateapi.com/packages/maven/com.google.cloud:libraries-bom/20.1.0/compatibility-slim/20.0.0)](https://docs.renovatebot.com/merge-confidence/) | [![confidence](https://badges.renovateapi.com/packages/maven/com.google.cloud:libraries-bom/20.1.0/confidence-slim/20.0.0)](https://docs.renovatebot.com/merge-confidence/) | --- ### 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#github/googleapis/java-language). --- language/snippets/pom.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/language/snippets/pom.xml b/language/snippets/pom.xml index 856fb973982..c160f6e7633 100644 --- a/language/snippets/pom.xml +++ b/language/snippets/pom.xml @@ -30,7 +30,7 @@ com.google.cloud libraries-bom - 20.0.0 + 20.1.0 pom import From 1651ffd07ddc1e11fe016b4b22a58296f46668f5 Mon Sep 17 00:00:00 2001 From: WhiteSource Renovate Date: Thu, 29 Apr 2021 16:40:24 +0200 Subject: [PATCH 62/98] chore(deps): update dependency com.google.cloud:libraries-bom to v20.2.0 (#445) [![WhiteSource Renovate](https://app.renovatebot.com/images/banner.svg)](https://renovatebot.com) This PR contains the following updates: | Package | Change | Age | Adoption | Passing | Confidence | |---|---|---|---|---|---| | [com.google.cloud:libraries-bom](https://togithub.com/GoogleCloudPlatform/cloud-opensource-java) | `20.1.0` -> `20.2.0` | [![age](https://badges.renovateapi.com/packages/maven/com.google.cloud:libraries-bom/20.2.0/age-slim)](https://docs.renovatebot.com/merge-confidence/) | [![adoption](https://badges.renovateapi.com/packages/maven/com.google.cloud:libraries-bom/20.2.0/adoption-slim)](https://docs.renovatebot.com/merge-confidence/) | [![passing](https://badges.renovateapi.com/packages/maven/com.google.cloud:libraries-bom/20.2.0/compatibility-slim/20.1.0)](https://docs.renovatebot.com/merge-confidence/) | [![confidence](https://badges.renovateapi.com/packages/maven/com.google.cloud:libraries-bom/20.2.0/confidence-slim/20.1.0)](https://docs.renovatebot.com/merge-confidence/) | --- ### 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#github/googleapis/java-language). --- language/snippets/pom.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/language/snippets/pom.xml b/language/snippets/pom.xml index c160f6e7633..3aa659cd27b 100644 --- a/language/snippets/pom.xml +++ b/language/snippets/pom.xml @@ -30,7 +30,7 @@ com.google.cloud libraries-bom - 20.1.0 + 20.2.0 pom import From c39262104ddfc649d6ffb802ffeded933bd403ff Mon Sep 17 00:00:00 2001 From: WhiteSource Renovate Date: Thu, 13 May 2021 15:58:17 +0200 Subject: [PATCH 63/98] chore(deps): update dependency com.google.cloud:libraries-bom to v20.3.0 (#451) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit [![WhiteSource Renovate](https://app.renovatebot.com/images/banner.svg)](https://renovatebot.com) This PR contains the following updates: | Package | Change | Age | Adoption | Passing | Confidence | |---|---|---|---|---|---| | [com.google.cloud:libraries-bom](https://togithub.com/GoogleCloudPlatform/cloud-opensource-java) | `20.2.0` -> `20.3.0` | [![age](https://badges.renovateapi.com/packages/maven/com.google.cloud:libraries-bom/20.3.0/age-slim)](https://docs.renovatebot.com/merge-confidence/) | [![adoption](https://badges.renovateapi.com/packages/maven/com.google.cloud:libraries-bom/20.3.0/adoption-slim)](https://docs.renovatebot.com/merge-confidence/) | [![passing](https://badges.renovateapi.com/packages/maven/com.google.cloud:libraries-bom/20.3.0/compatibility-slim/20.2.0)](https://docs.renovatebot.com/merge-confidence/) | [![confidence](https://badges.renovateapi.com/packages/maven/com.google.cloud:libraries-bom/20.3.0/confidence-slim/20.2.0)](https://docs.renovatebot.com/merge-confidence/) | --- ### Configuration πŸ“… **Schedule**: At any time (no schedule defined). 🚦 **Automerge**: Disabled by config. Please merge this manually once you are satisfied. ♻️ **Rebasing**: Whenever PR becomes conflicted, or you tick the rebase/retry checkbox. πŸ”• **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#github/googleapis/java-language). --- language/snippets/pom.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/language/snippets/pom.xml b/language/snippets/pom.xml index 3aa659cd27b..11934382818 100644 --- a/language/snippets/pom.xml +++ b/language/snippets/pom.xml @@ -30,7 +30,7 @@ com.google.cloud libraries-bom - 20.2.0 + 20.3.0 pom import From dddd8018825f151904bb5d71bbbe22c658652f4c Mon Sep 17 00:00:00 2001 From: WhiteSource Renovate Date: Mon, 17 May 2021 03:48:03 +0200 Subject: [PATCH 64/98] chore(deps): update dependency com.google.cloud:libraries-bom to v20.4.0 (#459) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit [![WhiteSource Renovate](https://app.renovatebot.com/images/banner.svg)](https://renovatebot.com) This PR contains the following updates: | Package | Change | Age | Adoption | Passing | Confidence | |---|---|---|---|---|---| | [com.google.cloud:libraries-bom](https://togithub.com/GoogleCloudPlatform/cloud-opensource-java) | `20.3.0` -> `20.4.0` | [![age](https://badges.renovateapi.com/packages/maven/com.google.cloud:libraries-bom/20.4.0/age-slim)](https://docs.renovatebot.com/merge-confidence/) | [![adoption](https://badges.renovateapi.com/packages/maven/com.google.cloud:libraries-bom/20.4.0/adoption-slim)](https://docs.renovatebot.com/merge-confidence/) | [![passing](https://badges.renovateapi.com/packages/maven/com.google.cloud:libraries-bom/20.4.0/compatibility-slim/20.3.0)](https://docs.renovatebot.com/merge-confidence/) | [![confidence](https://badges.renovateapi.com/packages/maven/com.google.cloud:libraries-bom/20.4.0/confidence-slim/20.3.0)](https://docs.renovatebot.com/merge-confidence/) | --- ### Configuration πŸ“… **Schedule**: At any time (no schedule defined). 🚦 **Automerge**: Disabled by config. Please merge this manually once you are satisfied. ♻️ **Rebasing**: Whenever PR becomes conflicted, or you tick the rebase/retry checkbox. πŸ”• **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#github/googleapis/java-language). --- language/snippets/pom.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/language/snippets/pom.xml b/language/snippets/pom.xml index 11934382818..6b4bc9f52dd 100644 --- a/language/snippets/pom.xml +++ b/language/snippets/pom.xml @@ -30,7 +30,7 @@ com.google.cloud libraries-bom - 20.3.0 + 20.4.0 pom import From 4e48317189b0c4cdaf196cdefbcd27c5bdc6bea2 Mon Sep 17 00:00:00 2001 From: WhiteSource Renovate Date: Tue, 25 May 2021 17:49:12 +0200 Subject: [PATCH 65/98] chore(deps): update dependency com.google.cloud:libraries-bom to v20.5.0 (#469) --- language/snippets/pom.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/language/snippets/pom.xml b/language/snippets/pom.xml index 6b4bc9f52dd..2d4798c6d6b 100644 --- a/language/snippets/pom.xml +++ b/language/snippets/pom.xml @@ -30,7 +30,7 @@ com.google.cloud libraries-bom - 20.4.0 + 20.5.0 pom import From 749131ed7bbb15ff2970502844a09fb270baa66a Mon Sep 17 00:00:00 2001 From: WhiteSource Renovate Date: Wed, 26 May 2021 22:56:20 +0200 Subject: [PATCH 66/98] test(deps): update dependency com.google.truth:truth to v1.1.3 (#471) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit [![WhiteSource Renovate](https://app.renovatebot.com/images/banner.svg)](https://renovatebot.com) This PR contains the following updates: | Package | Change | Age | Adoption | Passing | Confidence | |---|---|---|---|---|---| | com.google.truth:truth | `1.1.2` -> `1.1.3` | [![age](https://badges.renovateapi.com/packages/maven/com.google.truth:truth/1.1.3/age-slim)](https://docs.renovatebot.com/merge-confidence/) | [![adoption](https://badges.renovateapi.com/packages/maven/com.google.truth:truth/1.1.3/adoption-slim)](https://docs.renovatebot.com/merge-confidence/) | [![passing](https://badges.renovateapi.com/packages/maven/com.google.truth:truth/1.1.3/compatibility-slim/1.1.2)](https://docs.renovatebot.com/merge-confidence/) | [![confidence](https://badges.renovateapi.com/packages/maven/com.google.truth:truth/1.1.3/confidence-slim/1.1.2)](https://docs.renovatebot.com/merge-confidence/) | --- ### Configuration πŸ“… **Schedule**: At any time (no schedule defined). 🚦 **Automerge**: Disabled by config. Please merge this manually once you are satisfied. ♻️ **Rebasing**: Whenever PR becomes conflicted, or you tick the rebase/retry checkbox. πŸ”• **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#github/googleapis/java-language). --- language/snippets/pom.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/language/snippets/pom.xml b/language/snippets/pom.xml index 2d4798c6d6b..f3d4a8d1667 100644 --- a/language/snippets/pom.xml +++ b/language/snippets/pom.xml @@ -53,7 +53,7 @@ com.google.truth truth - 1.1.2 + 1.1.3 test From d2622761bb9ebee6935af4131cd7a0e0f2dedea8 Mon Sep 17 00:00:00 2001 From: WhiteSource Renovate Date: Mon, 7 Jun 2021 21:00:27 +0200 Subject: [PATCH 67/98] chore(deps): update dependency com.google.cloud:libraries-bom to v20.6.0 (#482) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit [![WhiteSource Renovate](https://app.renovatebot.com/images/banner.svg)](https://renovatebot.com) This PR contains the following updates: | Package | Change | Age | Adoption | Passing | Confidence | |---|---|---|---|---|---| | [com.google.cloud:libraries-bom](https://togithub.com/GoogleCloudPlatform/cloud-opensource-java) | `20.5.0` -> `20.6.0` | [![age](https://badges.renovateapi.com/packages/maven/com.google.cloud:libraries-bom/20.6.0/age-slim)](https://docs.renovatebot.com/merge-confidence/) | [![adoption](https://badges.renovateapi.com/packages/maven/com.google.cloud:libraries-bom/20.6.0/adoption-slim)](https://docs.renovatebot.com/merge-confidence/) | [![passing](https://badges.renovateapi.com/packages/maven/com.google.cloud:libraries-bom/20.6.0/compatibility-slim/20.5.0)](https://docs.renovatebot.com/merge-confidence/) | [![confidence](https://badges.renovateapi.com/packages/maven/com.google.cloud:libraries-bom/20.6.0/confidence-slim/20.5.0)](https://docs.renovatebot.com/merge-confidence/) | --- ### Configuration πŸ“… **Schedule**: At any time (no schedule defined). 🚦 **Automerge**: Disabled by config. Please merge this manually once you are satisfied. β™» **Rebasing**: Whenever PR becomes conflicted, or you tick the rebase/retry checkbox. πŸ”• **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#github/googleapis/java-language). --- language/snippets/pom.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/language/snippets/pom.xml b/language/snippets/pom.xml index f3d4a8d1667..f6aeb018250 100644 --- a/language/snippets/pom.xml +++ b/language/snippets/pom.xml @@ -30,7 +30,7 @@ com.google.cloud libraries-bom - 20.5.0 + 20.6.0 pom import From 07b11d9dad8816a7301cab1307959915b2a6de1f Mon Sep 17 00:00:00 2001 From: WhiteSource Renovate Date: Tue, 8 Jun 2021 00:32:08 +0200 Subject: [PATCH 68/98] chore(deps): update dependency com.google.cloud.samples:shared-configuration to v1.0.23 (#481) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit [![WhiteSource Renovate](https://app.renovatebot.com/images/banner.svg)](https://renovatebot.com) This PR contains the following updates: | Package | Change | Age | Adoption | Passing | Confidence | |---|---|---|---|---|---| | com.google.cloud.samples:shared-configuration | `1.0.22` -> `1.0.23` | [![age](https://badges.renovateapi.com/packages/maven/com.google.cloud.samples:shared-configuration/1.0.23/age-slim)](https://docs.renovatebot.com/merge-confidence/) | [![adoption](https://badges.renovateapi.com/packages/maven/com.google.cloud.samples:shared-configuration/1.0.23/adoption-slim)](https://docs.renovatebot.com/merge-confidence/) | [![passing](https://badges.renovateapi.com/packages/maven/com.google.cloud.samples:shared-configuration/1.0.23/compatibility-slim/1.0.22)](https://docs.renovatebot.com/merge-confidence/) | [![confidence](https://badges.renovateapi.com/packages/maven/com.google.cloud.samples:shared-configuration/1.0.23/confidence-slim/1.0.22)](https://docs.renovatebot.com/merge-confidence/) | --- ### Configuration πŸ“… **Schedule**: At any time (no schedule defined). 🚦 **Automerge**: Disabled by config. Please merge this manually once you are satisfied. β™» **Rebasing**: Whenever PR becomes conflicted, or you tick the rebase/retry checkbox. πŸ”• **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#github/googleapis/java-language). --- language/snippets/pom.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/language/snippets/pom.xml b/language/snippets/pom.xml index f6aeb018250..09b78695c37 100644 --- a/language/snippets/pom.xml +++ b/language/snippets/pom.xml @@ -14,7 +14,7 @@ com.google.cloud.samples shared-configuration - 1.0.22 + 1.0.23 From c54a77d5b461de972d27d6ccb44b7f82e57419b8 Mon Sep 17 00:00:00 2001 From: WhiteSource Renovate Date: Wed, 23 Jun 2021 21:10:37 +0200 Subject: [PATCH 69/98] chore(deps): update dependency com.google.cloud:libraries-bom to v20.7.0 (#491) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit [![WhiteSource Renovate](https://app.renovatebot.com/images/banner.svg)](https://renovatebot.com) This PR contains the following updates: | Package | Change | Age | Adoption | Passing | Confidence | |---|---|---|---|---|---| | [com.google.cloud:libraries-bom](https://togithub.com/GoogleCloudPlatform/cloud-opensource-java) | `20.6.0` -> `20.7.0` | [![age](https://badges.renovateapi.com/packages/maven/com.google.cloud:libraries-bom/20.7.0/age-slim)](https://docs.renovatebot.com/merge-confidence/) | [![adoption](https://badges.renovateapi.com/packages/maven/com.google.cloud:libraries-bom/20.7.0/adoption-slim)](https://docs.renovatebot.com/merge-confidence/) | [![passing](https://badges.renovateapi.com/packages/maven/com.google.cloud:libraries-bom/20.7.0/compatibility-slim/20.6.0)](https://docs.renovatebot.com/merge-confidence/) | [![confidence](https://badges.renovateapi.com/packages/maven/com.google.cloud:libraries-bom/20.7.0/confidence-slim/20.6.0)](https://docs.renovatebot.com/merge-confidence/) | --- ### Configuration πŸ“… **Schedule**: At any time (no schedule defined). 🚦 **Automerge**: Disabled by config. Please merge this manually once you are satisfied. β™» **Rebasing**: Whenever PR becomes conflicted, or you tick the rebase/retry checkbox. πŸ”• **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#github/googleapis/java-language). --- language/snippets/pom.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/language/snippets/pom.xml b/language/snippets/pom.xml index 09b78695c37..bb59fb364b0 100644 --- a/language/snippets/pom.xml +++ b/language/snippets/pom.xml @@ -30,7 +30,7 @@ com.google.cloud libraries-bom - 20.6.0 + 20.7.0 pom import From a1ef3669fe59e094940fa4876cd087007343baea Mon Sep 17 00:00:00 2001 From: WhiteSource Renovate Date: Fri, 9 Jul 2021 16:38:41 +0200 Subject: [PATCH 70/98] chore(deps): update dependency com.google.cloud:libraries-bom to v20.8.0 (#501) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit [![WhiteSource Renovate](https://app.renovatebot.com/images/banner.svg)](https://renovatebot.com) This PR contains the following updates: | Package | Change | Age | Adoption | Passing | Confidence | |---|---|---|---|---|---| | [com.google.cloud:libraries-bom](https://togithub.com/GoogleCloudPlatform/cloud-opensource-java) | `20.7.0` -> `20.8.0` | [![age](https://badges.renovateapi.com/packages/maven/com.google.cloud:libraries-bom/20.8.0/age-slim)](https://docs.renovatebot.com/merge-confidence/) | [![adoption](https://badges.renovateapi.com/packages/maven/com.google.cloud:libraries-bom/20.8.0/adoption-slim)](https://docs.renovatebot.com/merge-confidence/) | [![passing](https://badges.renovateapi.com/packages/maven/com.google.cloud:libraries-bom/20.8.0/compatibility-slim/20.7.0)](https://docs.renovatebot.com/merge-confidence/) | [![confidence](https://badges.renovateapi.com/packages/maven/com.google.cloud:libraries-bom/20.8.0/confidence-slim/20.7.0)](https://docs.renovatebot.com/merge-confidence/) | --- ### Configuration πŸ“… **Schedule**: At any time (no schedule defined). 🚦 **Automerge**: Disabled by config. Please merge this manually once you are satisfied. β™» **Rebasing**: Whenever PR becomes conflicted, or you tick the rebase/retry checkbox. πŸ”• **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#github/googleapis/java-language). --- language/snippets/pom.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/language/snippets/pom.xml b/language/snippets/pom.xml index bb59fb364b0..e0fe02660e5 100644 --- a/language/snippets/pom.xml +++ b/language/snippets/pom.xml @@ -30,7 +30,7 @@ com.google.cloud libraries-bom - 20.7.0 + 20.8.0 pom import From f603cfceca539e0b27eca975a7e3834959a0976e Mon Sep 17 00:00:00 2001 From: WhiteSource Renovate Date: Wed, 28 Jul 2021 02:54:39 +0200 Subject: [PATCH 71/98] chore(deps): update dependency com.google.cloud:libraries-bom to v20.9.0 (#510) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit [![WhiteSource Renovate](https://app.renovatebot.com/images/banner.svg)](https://renovatebot.com) This PR contains the following updates: | Package | Change | Age | Adoption | Passing | Confidence | |---|---|---|---|---|---| | [com.google.cloud:libraries-bom](https://togithub.com/GoogleCloudPlatform/cloud-opensource-java) | `20.8.0` -> `20.9.0` | [![age](https://badges.renovateapi.com/packages/maven/com.google.cloud:libraries-bom/20.9.0/age-slim)](https://docs.renovatebot.com/merge-confidence/) | [![adoption](https://badges.renovateapi.com/packages/maven/com.google.cloud:libraries-bom/20.9.0/adoption-slim)](https://docs.renovatebot.com/merge-confidence/) | [![passing](https://badges.renovateapi.com/packages/maven/com.google.cloud:libraries-bom/20.9.0/compatibility-slim/20.8.0)](https://docs.renovatebot.com/merge-confidence/) | [![confidence](https://badges.renovateapi.com/packages/maven/com.google.cloud:libraries-bom/20.9.0/confidence-slim/20.8.0)](https://docs.renovatebot.com/merge-confidence/) | --- ### Configuration πŸ“… **Schedule**: At any time (no schedule defined). 🚦 **Automerge**: Disabled by config. Please merge this manually once you are satisfied. β™» **Rebasing**: Renovate will not automatically rebase this PR, because other commits have been found. πŸ”• **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#github/googleapis/java-language). --- language/snippets/pom.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/language/snippets/pom.xml b/language/snippets/pom.xml index e0fe02660e5..e958722e8a5 100644 --- a/language/snippets/pom.xml +++ b/language/snippets/pom.xml @@ -30,7 +30,7 @@ com.google.cloud libraries-bom - 20.8.0 + 20.9.0 pom import From 15417fa37fd1b841bc1be26c1d7022a3c02a6a6a Mon Sep 17 00:00:00 2001 From: WhiteSource Renovate Date: Thu, 19 Aug 2021 19:54:15 +0200 Subject: [PATCH 72/98] chore(deps): update dependency com.google.cloud:libraries-bom to v21 (#687) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit [![WhiteSource Renovate](https://app.renovatebot.com/images/banner.svg)](https://renovatebot.com) This PR contains the following updates: | Package | Change | Age | Adoption | Passing | Confidence | |---|---|---|---|---|---| | [com.google.cloud:libraries-bom](https://togithub.com/GoogleCloudPlatform/cloud-opensource-java) | `20.9.0` -> `21.0.0` | [![age](https://badges.renovateapi.com/packages/maven/com.google.cloud:libraries-bom/21.0.0/age-slim)](https://docs.renovatebot.com/merge-confidence/) | [![adoption](https://badges.renovateapi.com/packages/maven/com.google.cloud:libraries-bom/21.0.0/adoption-slim)](https://docs.renovatebot.com/merge-confidence/) | [![passing](https://badges.renovateapi.com/packages/maven/com.google.cloud:libraries-bom/21.0.0/compatibility-slim/20.9.0)](https://docs.renovatebot.com/merge-confidence/) | [![confidence](https://badges.renovateapi.com/packages/maven/com.google.cloud:libraries-bom/21.0.0/confidence-slim/20.9.0)](https://docs.renovatebot.com/merge-confidence/) | --- ### Configuration πŸ“… **Schedule**: At any time (no schedule defined). 🚦 **Automerge**: Disabled by config. Please merge this manually once you are satisfied. β™» **Rebasing**: Renovate will not automatically rebase this PR, because other commits have been found. πŸ”• **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#github/googleapis/java-language). --- language/snippets/pom.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/language/snippets/pom.xml b/language/snippets/pom.xml index e958722e8a5..79e85acac9f 100644 --- a/language/snippets/pom.xml +++ b/language/snippets/pom.xml @@ -30,7 +30,7 @@ com.google.cloud libraries-bom - 20.9.0 + 21.0.0 pom import From a9f36067d9ff8da610359c8d76ba3f112939b33b Mon Sep 17 00:00:00 2001 From: WhiteSource Renovate Date: Fri, 27 Aug 2021 18:12:22 +0200 Subject: [PATCH 73/98] chore(deps): update dependency com.google.cloud:libraries-bom to v22 (#698) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit [![WhiteSource Renovate](https://app.renovatebot.com/images/banner.svg)](https://renovatebot.com) This PR contains the following updates: | Package | Change | Age | Adoption | Passing | Confidence | |---|---|---|---|---|---| | [com.google.cloud:libraries-bom](https://togithub.com/GoogleCloudPlatform/cloud-opensource-java) | `21.0.0` -> `22.0.0` | [![age](https://badges.renovateapi.com/packages/maven/com.google.cloud:libraries-bom/22.0.0/age-slim)](https://docs.renovatebot.com/merge-confidence/) | [![adoption](https://badges.renovateapi.com/packages/maven/com.google.cloud:libraries-bom/22.0.0/adoption-slim)](https://docs.renovatebot.com/merge-confidence/) | [![passing](https://badges.renovateapi.com/packages/maven/com.google.cloud:libraries-bom/22.0.0/compatibility-slim/21.0.0)](https://docs.renovatebot.com/merge-confidence/) | [![confidence](https://badges.renovateapi.com/packages/maven/com.google.cloud:libraries-bom/22.0.0/confidence-slim/21.0.0)](https://docs.renovatebot.com/merge-confidence/) | --- ### Configuration πŸ“… **Schedule**: At any time (no schedule defined). 🚦 **Automerge**: Disabled by config. Please merge this manually once you are satisfied. β™» **Rebasing**: Renovate will not automatically rebase this PR, because other commits have been found. πŸ”• **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#github/googleapis/java-language). --- language/snippets/pom.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/language/snippets/pom.xml b/language/snippets/pom.xml index 79e85acac9f..77658330b38 100644 --- a/language/snippets/pom.xml +++ b/language/snippets/pom.xml @@ -30,7 +30,7 @@ com.google.cloud libraries-bom - 21.0.0 + 22.0.0 pom import From 4d0db9767bcc1c66c60d6e67e0158ca772e96b9c Mon Sep 17 00:00:00 2001 From: WhiteSource Renovate Date: Mon, 13 Sep 2021 18:06:24 +0200 Subject: [PATCH 74/98] chore(deps): update dependency com.google.cloud:libraries-bom to v23 (#710) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit [![WhiteSource Renovate](https://app.renovatebot.com/images/banner.svg)](https://renovatebot.com) This PR contains the following updates: | Package | Change | Age | Adoption | Passing | Confidence | |---|---|---|---|---|---| | [com.google.cloud:libraries-bom](https://togithub.com/GoogleCloudPlatform/cloud-opensource-java) | `22.0.0` -> `23.0.0` | [![age](https://badges.renovateapi.com/packages/maven/com.google.cloud:libraries-bom/23.0.0/age-slim)](https://docs.renovatebot.com/merge-confidence/) | [![adoption](https://badges.renovateapi.com/packages/maven/com.google.cloud:libraries-bom/23.0.0/adoption-slim)](https://docs.renovatebot.com/merge-confidence/) | [![passing](https://badges.renovateapi.com/packages/maven/com.google.cloud:libraries-bom/23.0.0/compatibility-slim/22.0.0)](https://docs.renovatebot.com/merge-confidence/) | [![confidence](https://badges.renovateapi.com/packages/maven/com.google.cloud:libraries-bom/23.0.0/confidence-slim/22.0.0)](https://docs.renovatebot.com/merge-confidence/) | --- ### Configuration πŸ“… **Schedule**: At any time (no schedule defined). 🚦 **Automerge**: Disabled by config. Please merge this manually once you are satisfied. β™» **Rebasing**: Whenever PR becomes conflicted, or you tick the rebase/retry checkbox. πŸ”• **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#github/googleapis/java-language). --- language/snippets/pom.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/language/snippets/pom.xml b/language/snippets/pom.xml index 77658330b38..a9c12422466 100644 --- a/language/snippets/pom.xml +++ b/language/snippets/pom.xml @@ -30,7 +30,7 @@ com.google.cloud libraries-bom - 22.0.0 + 23.0.0 pom import From 5435f8c8b13fe45ccc3613902f202a39db732936 Mon Sep 17 00:00:00 2001 From: WhiteSource Renovate Date: Fri, 1 Oct 2021 16:37:38 +0200 Subject: [PATCH 75/98] chore(deps): update dependency com.google.cloud:libraries-bom to v23.1.0 (#732) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit * chore(deps): update dependency com.google.cloud:libraries-bom to v23.1.0 * πŸ¦‰ Updates from OwlBot See https://github.com/googleapis/repo-automation-bots/blob/main/packages/owl-bot/README.md * πŸ¦‰ Updates from OwlBot See https://github.com/googleapis/repo-automation-bots/blob/main/packages/owl-bot/README.md * πŸ¦‰ Updates from OwlBot See https://github.com/googleapis/repo-automation-bots/blob/main/packages/owl-bot/README.md Co-authored-by: Owl Bot --- language/snippets/pom.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/language/snippets/pom.xml b/language/snippets/pom.xml index a9c12422466..9e34d315217 100644 --- a/language/snippets/pom.xml +++ b/language/snippets/pom.xml @@ -30,7 +30,7 @@ com.google.cloud libraries-bom - 23.0.0 + 23.1.0 pom import From b0187c6d72cab2af2ba284c87e079bf2c1a2d86e Mon Sep 17 00:00:00 2001 From: WhiteSource Renovate Date: Wed, 27 Oct 2021 18:20:47 +0200 Subject: [PATCH 76/98] chore(deps): update dependency com.google.cloud:libraries-bom to v24 (#744) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit [![WhiteSource Renovate](https://app.renovatebot.com/images/banner.svg)](https://renovatebot.com) This PR contains the following updates: | Package | Change | Age | Adoption | Passing | Confidence | |---|---|---|---|---|---| | [com.google.cloud:libraries-bom](https://togithub.com/GoogleCloudPlatform/cloud-opensource-java) | `23.1.0` -> `24.0.0` | [![age](https://badges.renovateapi.com/packages/maven/com.google.cloud:libraries-bom/24.0.0/age-slim)](https://docs.renovatebot.com/merge-confidence/) | [![adoption](https://badges.renovateapi.com/packages/maven/com.google.cloud:libraries-bom/24.0.0/adoption-slim)](https://docs.renovatebot.com/merge-confidence/) | [![passing](https://badges.renovateapi.com/packages/maven/com.google.cloud:libraries-bom/24.0.0/compatibility-slim/23.1.0)](https://docs.renovatebot.com/merge-confidence/) | [![confidence](https://badges.renovateapi.com/packages/maven/com.google.cloud:libraries-bom/24.0.0/confidence-slim/23.1.0)](https://docs.renovatebot.com/merge-confidence/) | --- ### Configuration πŸ“… **Schedule**: At any time (no schedule defined). 🚦 **Automerge**: Disabled by config. Please merge this manually once you are satisfied. β™» **Rebasing**: Renovate will not automatically rebase this PR, because other commits have been found. πŸ”• **Ignore**: Close this PR and you won't be reminded about this update again. --- - [ ] If you want to rebase/retry this PR, click this checkbox. --- This PR has been generated by [WhiteSource Renovate](https://renovate.whitesourcesoftware.com). View repository job log [here](https://app.renovatebot.com/dashboard#github/googleapis/java-language). --- language/snippets/pom.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/language/snippets/pom.xml b/language/snippets/pom.xml index 9e34d315217..e2a028a2dff 100644 --- a/language/snippets/pom.xml +++ b/language/snippets/pom.xml @@ -30,7 +30,7 @@ com.google.cloud libraries-bom - 23.1.0 + 24.0.0 pom import From 939d37afb09493ca4eb294ef0b8cbeb5a7a204dc Mon Sep 17 00:00:00 2001 From: WhiteSource Renovate Date: Mon, 6 Dec 2021 23:52:30 +0100 Subject: [PATCH 77/98] chore(deps): update dependency com.google.cloud.samples:shared-configuration to v1.2.0 (#761) --- language/snippets/pom.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/language/snippets/pom.xml b/language/snippets/pom.xml index e2a028a2dff..6b015d3c6cd 100644 --- a/language/snippets/pom.xml +++ b/language/snippets/pom.xml @@ -14,7 +14,7 @@ com.google.cloud.samples shared-configuration - 1.0.23 + 1.2.0 From 6127e51c656ffd0de1a9b65e25114bc70367abc0 Mon Sep 17 00:00:00 2001 From: WhiteSource Renovate Date: Thu, 9 Dec 2021 00:10:11 +0100 Subject: [PATCH 78/98] chore(deps): update dependency com.google.cloud:libraries-bom to v24.1.0 (#766) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit [![WhiteSource Renovate](https://app.renovatebot.com/images/banner.svg)](https://renovatebot.com) This PR contains the following updates: | Package | Change | Age | Adoption | Passing | Confidence | |---|---|---|---|---|---| | [com.google.cloud:libraries-bom](https://togithub.com/GoogleCloudPlatform/cloud-opensource-java) | `24.0.0` -> `24.1.0` | [![age](https://badges.renovateapi.com/packages/maven/com.google.cloud:libraries-bom/24.1.0/age-slim)](https://docs.renovatebot.com/merge-confidence/) | [![adoption](https://badges.renovateapi.com/packages/maven/com.google.cloud:libraries-bom/24.1.0/adoption-slim)](https://docs.renovatebot.com/merge-confidence/) | [![passing](https://badges.renovateapi.com/packages/maven/com.google.cloud:libraries-bom/24.1.0/compatibility-slim/24.0.0)](https://docs.renovatebot.com/merge-confidence/) | [![confidence](https://badges.renovateapi.com/packages/maven/com.google.cloud:libraries-bom/24.1.0/confidence-slim/24.0.0)](https://docs.renovatebot.com/merge-confidence/) | --- ### Configuration πŸ“… **Schedule**: At any time (no schedule defined). 🚦 **Automerge**: Disabled by config. Please merge this manually once you are satisfied. β™» **Rebasing**: Renovate will not automatically rebase this PR, because other commits have been found. πŸ”• **Ignore**: Close this PR and you won't be reminded about this update again. --- - [ ] If you want to rebase/retry this PR, click this checkbox. --- This PR has been generated by [WhiteSource Renovate](https://renovate.whitesourcesoftware.com). View repository job log [here](https://app.renovatebot.com/dashboard#github/googleapis/java-language). --- language/snippets/pom.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/language/snippets/pom.xml b/language/snippets/pom.xml index 6b015d3c6cd..a983f5e0166 100644 --- a/language/snippets/pom.xml +++ b/language/snippets/pom.xml @@ -30,7 +30,7 @@ com.google.cloud libraries-bom - 24.0.0 + 24.1.0 pom import From 6cf9a4edfc8b65e420815c07acaa611d044847de Mon Sep 17 00:00:00 2001 From: WhiteSource Renovate Date: Tue, 28 Dec 2021 22:12:22 +0100 Subject: [PATCH 79/98] chore(deps): update dependency com.google.cloud:libraries-bom to v24.1.1 (#767) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit [![WhiteSource Renovate](https://app.renovatebot.com/images/banner.svg)](https://renovatebot.com) This PR contains the following updates: | Package | Change | Age | Adoption | Passing | Confidence | |---|---|---|---|---|---| | [com.google.cloud:libraries-bom](https://togithub.com/GoogleCloudPlatform/cloud-opensource-java) | `24.1.0` -> `24.1.1` | [![age](https://badges.renovateapi.com/packages/maven/com.google.cloud:libraries-bom/24.1.1/age-slim)](https://docs.renovatebot.com/merge-confidence/) | [![adoption](https://badges.renovateapi.com/packages/maven/com.google.cloud:libraries-bom/24.1.1/adoption-slim)](https://docs.renovatebot.com/merge-confidence/) | [![passing](https://badges.renovateapi.com/packages/maven/com.google.cloud:libraries-bom/24.1.1/compatibility-slim/24.1.0)](https://docs.renovatebot.com/merge-confidence/) | [![confidence](https://badges.renovateapi.com/packages/maven/com.google.cloud:libraries-bom/24.1.1/confidence-slim/24.1.0)](https://docs.renovatebot.com/merge-confidence/) | --- ### Configuration πŸ“… **Schedule**: At any time (no schedule defined). 🚦 **Automerge**: Disabled by config. Please merge this manually once you are satisfied. β™» **Rebasing**: Renovate will not automatically rebase this PR, because other commits have been found. πŸ”• **Ignore**: Close this PR and you won't be reminded about this update again. --- - [ ] If you want to rebase/retry this PR, click this checkbox. --- This PR has been generated by [WhiteSource Renovate](https://renovate.whitesourcesoftware.com). View repository job log [here](https://app.renovatebot.com/dashboard#github/googleapis/java-language). --- language/snippets/pom.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/language/snippets/pom.xml b/language/snippets/pom.xml index a983f5e0166..85344ed3885 100644 --- a/language/snippets/pom.xml +++ b/language/snippets/pom.xml @@ -30,7 +30,7 @@ com.google.cloud libraries-bom - 24.1.0 + 24.1.1 pom import From 95a3a49083917912c655bf3d2cbd679b5e523d73 Mon Sep 17 00:00:00 2001 From: WhiteSource Renovate Date: Fri, 7 Jan 2022 16:50:22 +0100 Subject: [PATCH 80/98] chore(deps): update dependency com.google.cloud:libraries-bom to v24.1.2 (#773) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit [![WhiteSource Renovate](https://app.renovatebot.com/images/banner.svg)](https://renovatebot.com) This PR contains the following updates: | Package | Change | Age | Adoption | Passing | Confidence | |---|---|---|---|---|---| | [com.google.cloud:libraries-bom](https://togithub.com/GoogleCloudPlatform/cloud-opensource-java) | `24.1.1` -> `24.1.2` | [![age](https://badges.renovateapi.com/packages/maven/com.google.cloud:libraries-bom/24.1.2/age-slim)](https://docs.renovatebot.com/merge-confidence/) | [![adoption](https://badges.renovateapi.com/packages/maven/com.google.cloud:libraries-bom/24.1.2/adoption-slim)](https://docs.renovatebot.com/merge-confidence/) | [![passing](https://badges.renovateapi.com/packages/maven/com.google.cloud:libraries-bom/24.1.2/compatibility-slim/24.1.1)](https://docs.renovatebot.com/merge-confidence/) | [![confidence](https://badges.renovateapi.com/packages/maven/com.google.cloud:libraries-bom/24.1.2/confidence-slim/24.1.1)](https://docs.renovatebot.com/merge-confidence/) | --- ### Configuration πŸ“… **Schedule**: At any time (no schedule defined). 🚦 **Automerge**: Disabled by config. Please merge this manually once you are satisfied. β™» **Rebasing**: Renovate will not automatically rebase this PR, because other commits have been found. πŸ”• **Ignore**: Close this PR and you won't be reminded about this update again. --- - [ ] If you want to rebase/retry this PR, click this checkbox. --- This PR has been generated by [WhiteSource Renovate](https://renovate.whitesourcesoftware.com). View repository job log [here](https://app.renovatebot.com/dashboard#github/googleapis/java-language). --- language/snippets/pom.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/language/snippets/pom.xml b/language/snippets/pom.xml index 85344ed3885..85bcc908fa6 100644 --- a/language/snippets/pom.xml +++ b/language/snippets/pom.xml @@ -30,7 +30,7 @@ com.google.cloud libraries-bom - 24.1.1 + 24.1.2 pom import From 3a84d5eb10522a8c8db86e422fb377a378b5dc60 Mon Sep 17 00:00:00 2001 From: WhiteSource Renovate Date: Tue, 18 Jan 2022 20:10:24 +0100 Subject: [PATCH 81/98] chore(deps): update dependency com.google.cloud:libraries-bom to v24.2.0 (#782) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit [![WhiteSource Renovate](https://app.renovatebot.com/images/banner.svg)](https://renovatebot.com) This PR contains the following updates: | Package | Change | Age | Adoption | Passing | Confidence | |---|---|---|---|---|---| | [com.google.cloud:libraries-bom](https://togithub.com/GoogleCloudPlatform/cloud-opensource-java) | `24.1.2` -> `24.2.0` | [![age](https://badges.renovateapi.com/packages/maven/com.google.cloud:libraries-bom/24.2.0/age-slim)](https://docs.renovatebot.com/merge-confidence/) | [![adoption](https://badges.renovateapi.com/packages/maven/com.google.cloud:libraries-bom/24.2.0/adoption-slim)](https://docs.renovatebot.com/merge-confidence/) | [![passing](https://badges.renovateapi.com/packages/maven/com.google.cloud:libraries-bom/24.2.0/compatibility-slim/24.1.2)](https://docs.renovatebot.com/merge-confidence/) | [![confidence](https://badges.renovateapi.com/packages/maven/com.google.cloud:libraries-bom/24.2.0/confidence-slim/24.1.2)](https://docs.renovatebot.com/merge-confidence/) | --- ### Configuration πŸ“… **Schedule**: At any time (no schedule defined). 🚦 **Automerge**: Disabled by config. Please merge this manually once you are satisfied. β™» **Rebasing**: Renovate will not automatically rebase this PR, because other commits have been found. πŸ”• **Ignore**: Close this PR and you won't be reminded about this update again. --- - [ ] If you want to rebase/retry this PR, click this checkbox. --- This PR has been generated by [WhiteSource Renovate](https://renovate.whitesourcesoftware.com). View repository job log [here](https://app.renovatebot.com/dashboard#github/googleapis/java-language). --- language/snippets/pom.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/language/snippets/pom.xml b/language/snippets/pom.xml index 85bcc908fa6..70b0c9c51ae 100644 --- a/language/snippets/pom.xml +++ b/language/snippets/pom.xml @@ -30,7 +30,7 @@ com.google.cloud libraries-bom - 24.1.2 + 24.2.0 pom import From 4e81328e50313d8b710f8c068aee3cdf366ca0f1 Mon Sep 17 00:00:00 2001 From: WhiteSource Renovate Date: Tue, 8 Feb 2022 23:14:44 +0100 Subject: [PATCH 82/98] chore(deps): update dependency com.google.cloud:libraries-bom to v24.3.0 (#797) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit [![WhiteSource Renovate](https://app.renovatebot.com/images/banner.svg)](https://renovatebot.com) This PR contains the following updates: | Package | Change | Age | Adoption | Passing | Confidence | |---|---|---|---|---|---| | [com.google.cloud:libraries-bom](https://cloud.google.com/java/docs/bom) ([source](https://togithub.com/GoogleCloudPlatform/cloud-opensource-java)) | `24.2.0` -> `24.3.0` | [![age](https://badges.renovateapi.com/packages/maven/com.google.cloud:libraries-bom/24.3.0/age-slim)](https://docs.renovatebot.com/merge-confidence/) | [![adoption](https://badges.renovateapi.com/packages/maven/com.google.cloud:libraries-bom/24.3.0/adoption-slim)](https://docs.renovatebot.com/merge-confidence/) | [![passing](https://badges.renovateapi.com/packages/maven/com.google.cloud:libraries-bom/24.3.0/compatibility-slim/24.2.0)](https://docs.renovatebot.com/merge-confidence/) | [![confidence](https://badges.renovateapi.com/packages/maven/com.google.cloud:libraries-bom/24.3.0/confidence-slim/24.2.0)](https://docs.renovatebot.com/merge-confidence/) | --- ### Configuration πŸ“… **Schedule**: At any time (no schedule defined). 🚦 **Automerge**: Disabled by config. Please merge this manually once you are satisfied. β™» **Rebasing**: Renovate will not automatically rebase this PR, because other commits have been found. πŸ”• **Ignore**: Close this PR and you won't be reminded about this update again. --- - [ ] If you want to rebase/retry this PR, click this checkbox. --- This PR has been generated by [WhiteSource Renovate](https://renovate.whitesourcesoftware.com). View repository job log [here](https://app.renovatebot.com/dashboard#github/googleapis/java-language). --- language/snippets/pom.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/language/snippets/pom.xml b/language/snippets/pom.xml index 70b0c9c51ae..f5554fd189b 100644 --- a/language/snippets/pom.xml +++ b/language/snippets/pom.xml @@ -30,7 +30,7 @@ com.google.cloud libraries-bom - 24.2.0 + 24.3.0 pom import From 6d4ffee21052f45bf0c5b5f279fb9b2a9183948e Mon Sep 17 00:00:00 2001 From: WhiteSource Renovate Date: Thu, 3 Mar 2022 02:44:36 +0100 Subject: [PATCH 83/98] chore(deps): update dependency com.google.cloud:libraries-bom to v24.4.0 (#816) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit [![WhiteSource Renovate](https://app.renovatebot.com/images/banner.svg)](https://renovatebot.com) This PR contains the following updates: | Package | Change | Age | Adoption | Passing | Confidence | |---|---|---|---|---|---| | [com.google.cloud:libraries-bom](https://cloud.google.com/java/docs/bom) ([source](https://togithub.com/GoogleCloudPlatform/cloud-opensource-java)) | `24.3.0` -> `24.4.0` | [![age](https://badges.renovateapi.com/packages/maven/com.google.cloud:libraries-bom/24.4.0/age-slim)](https://docs.renovatebot.com/merge-confidence/) | [![adoption](https://badges.renovateapi.com/packages/maven/com.google.cloud:libraries-bom/24.4.0/adoption-slim)](https://docs.renovatebot.com/merge-confidence/) | [![passing](https://badges.renovateapi.com/packages/maven/com.google.cloud:libraries-bom/24.4.0/compatibility-slim/24.3.0)](https://docs.renovatebot.com/merge-confidence/) | [![confidence](https://badges.renovateapi.com/packages/maven/com.google.cloud:libraries-bom/24.4.0/confidence-slim/24.3.0)](https://docs.renovatebot.com/merge-confidence/) | --- ### Configuration πŸ“… **Schedule**: At any time (no schedule defined). 🚦 **Automerge**: Disabled by config. Please merge this manually once you are satisfied. β™» **Rebasing**: Renovate will not automatically rebase this PR, because other commits have been found. πŸ”• **Ignore**: Close this PR and you won't be reminded about this update again. --- - [ ] If you want to rebase/retry this PR, click this checkbox. --- This PR has been generated by [WhiteSource Renovate](https://renovate.whitesourcesoftware.com). View repository job log [here](https://app.renovatebot.com/dashboard#github/googleapis/java-language). --- language/snippets/pom.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/language/snippets/pom.xml b/language/snippets/pom.xml index f5554fd189b..a8f41fd602d 100644 --- a/language/snippets/pom.xml +++ b/language/snippets/pom.xml @@ -30,7 +30,7 @@ com.google.cloud libraries-bom - 24.3.0 + 24.4.0 pom import From 8456f9809a35f4843141418dc74e7fe82ebd1044 Mon Sep 17 00:00:00 2001 From: WhiteSource Renovate Date: Mon, 14 Mar 2022 23:08:24 +0100 Subject: [PATCH 84/98] chore(deps): update dependency com.google.cloud:libraries-bom to v25 (#823) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit [![WhiteSource Renovate](https://app.renovatebot.com/images/banner.svg)](https://renovatebot.com) This PR contains the following updates: | Package | Change | Age | Adoption | Passing | Confidence | |---|---|---|---|---|---| | [com.google.cloud:libraries-bom](https://cloud.google.com/java/docs/bom) ([source](https://togithub.com/GoogleCloudPlatform/cloud-opensource-java)) | `24.4.0` -> `25.0.0` | [![age](https://badges.renovateapi.com/packages/maven/com.google.cloud:libraries-bom/25.0.0/age-slim)](https://docs.renovatebot.com/merge-confidence/) | [![adoption](https://badges.renovateapi.com/packages/maven/com.google.cloud:libraries-bom/25.0.0/adoption-slim)](https://docs.renovatebot.com/merge-confidence/) | [![passing](https://badges.renovateapi.com/packages/maven/com.google.cloud:libraries-bom/25.0.0/compatibility-slim/24.4.0)](https://docs.renovatebot.com/merge-confidence/) | [![confidence](https://badges.renovateapi.com/packages/maven/com.google.cloud:libraries-bom/25.0.0/confidence-slim/24.4.0)](https://docs.renovatebot.com/merge-confidence/) | --- ### Configuration πŸ“… **Schedule**: At any time (no schedule defined). 🚦 **Automerge**: Disabled by config. Please merge this manually once you are satisfied. β™» **Rebasing**: Renovate will not automatically rebase this PR, because other commits have been found. πŸ”• **Ignore**: Close this PR and you won't be reminded about this update again. --- - [ ] If you want to rebase/retry this PR, click this checkbox. --- This PR has been generated by [WhiteSource Renovate](https://renovate.whitesourcesoftware.com). View repository job log [here](https://app.renovatebot.com/dashboard#github/googleapis/java-language). --- language/snippets/pom.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/language/snippets/pom.xml b/language/snippets/pom.xml index a8f41fd602d..26a1c4f93ad 100644 --- a/language/snippets/pom.xml +++ b/language/snippets/pom.xml @@ -30,7 +30,7 @@ com.google.cloud libraries-bom - 24.4.0 + 25.0.0 pom import From ba31c894749ecad8371f500166e65eaafb5d336e Mon Sep 17 00:00:00 2001 From: WhiteSource Renovate Date: Fri, 1 Apr 2022 18:42:37 +0200 Subject: [PATCH 85/98] chore(deps): update dependency com.google.cloud:libraries-bom to v25.1.0 (#830) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit [![WhiteSource Renovate](https://app.renovatebot.com/images/banner.svg)](https://renovatebot.com) This PR contains the following updates: | Package | Change | Age | Adoption | Passing | Confidence | |---|---|---|---|---|---| | [com.google.cloud:libraries-bom](https://cloud.google.com/java/docs/bom) ([source](https://togithub.com/GoogleCloudPlatform/cloud-opensource-java)) | `25.0.0` -> `25.1.0` | [![age](https://badges.renovateapi.com/packages/maven/com.google.cloud:libraries-bom/25.1.0/age-slim)](https://docs.renovatebot.com/merge-confidence/) | [![adoption](https://badges.renovateapi.com/packages/maven/com.google.cloud:libraries-bom/25.1.0/adoption-slim)](https://docs.renovatebot.com/merge-confidence/) | [![passing](https://badges.renovateapi.com/packages/maven/com.google.cloud:libraries-bom/25.1.0/compatibility-slim/25.0.0)](https://docs.renovatebot.com/merge-confidence/) | [![confidence](https://badges.renovateapi.com/packages/maven/com.google.cloud:libraries-bom/25.1.0/confidence-slim/25.0.0)](https://docs.renovatebot.com/merge-confidence/) | --- ### Configuration πŸ“… **Schedule**: At any time (no schedule defined). 🚦 **Automerge**: Disabled by config. Please merge this manually once you are satisfied. β™» **Rebasing**: Renovate will not automatically rebase this PR, because other commits have been found. πŸ”• **Ignore**: Close this PR and you won't be reminded about this update again. --- - [ ] If you want to rebase/retry this PR, click this checkbox. --- This PR has been generated by [WhiteSource Renovate](https://renovate.whitesourcesoftware.com). View repository job log [here](https://app.renovatebot.com/dashboard#github/googleapis/java-language). --- language/snippets/pom.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/language/snippets/pom.xml b/language/snippets/pom.xml index 26a1c4f93ad..712bf4617b1 100644 --- a/language/snippets/pom.xml +++ b/language/snippets/pom.xml @@ -30,7 +30,7 @@ com.google.cloud libraries-bom - 25.0.0 + 25.1.0 pom import From b2808257c67a0f445e16d842e8c163d84d6068b1 Mon Sep 17 00:00:00 2001 From: WhiteSource Renovate Date: Wed, 27 Apr 2022 17:32:12 +0200 Subject: [PATCH 86/98] chore(deps): update dependency com.google.cloud:libraries-bom to v25.2.0 (#841) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit [![WhiteSource Renovate](https://app.renovatebot.com/images/banner.svg)](https://renovatebot.com) This PR contains the following updates: | Package | Change | Age | Adoption | Passing | Confidence | |---|---|---|---|---|---| | [com.google.cloud:libraries-bom](https://cloud.google.com/java/docs/bom) ([source](https://togithub.com/GoogleCloudPlatform/cloud-opensource-java)) | `25.1.0` -> `25.2.0` | [![age](https://badges.renovateapi.com/packages/maven/com.google.cloud:libraries-bom/25.2.0/age-slim)](https://docs.renovatebot.com/merge-confidence/) | [![adoption](https://badges.renovateapi.com/packages/maven/com.google.cloud:libraries-bom/25.2.0/adoption-slim)](https://docs.renovatebot.com/merge-confidence/) | [![passing](https://badges.renovateapi.com/packages/maven/com.google.cloud:libraries-bom/25.2.0/compatibility-slim/25.1.0)](https://docs.renovatebot.com/merge-confidence/) | [![confidence](https://badges.renovateapi.com/packages/maven/com.google.cloud:libraries-bom/25.2.0/confidence-slim/25.1.0)](https://docs.renovatebot.com/merge-confidence/) | --- ### Configuration πŸ“… **Schedule**: At any time (no schedule defined). 🚦 **Automerge**: Disabled by config. Please merge this manually once you are satisfied. β™» **Rebasing**: Renovate will not automatically rebase this PR, because other commits have been found. πŸ”• **Ignore**: Close this PR and you won't be reminded about this update again. --- - [ ] If you want to rebase/retry this PR, click this checkbox. --- This PR has been generated by [WhiteSource Renovate](https://renovate.whitesourcesoftware.com). View repository job log [here](https://app.renovatebot.com/dashboard#github/googleapis/java-language). --- language/snippets/pom.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/language/snippets/pom.xml b/language/snippets/pom.xml index 712bf4617b1..cba0bfa5b5b 100644 --- a/language/snippets/pom.xml +++ b/language/snippets/pom.xml @@ -30,7 +30,7 @@ com.google.cloud libraries-bom - 25.1.0 + 25.2.0 pom import From 0751399ca71a63cd7813a00ee12eb37ccb44dc3e Mon Sep 17 00:00:00 2001 From: WhiteSource Renovate Date: Mon, 16 May 2022 19:36:12 +0200 Subject: [PATCH 87/98] chore(deps): update dependency com.google.cloud:libraries-bom to v25.3.0 (#845) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit [![WhiteSource Renovate](https://app.renovatebot.com/images/banner.svg)](https://renovatebot.com) This PR contains the following updates: | Package | Change | Age | Adoption | Passing | Confidence | |---|---|---|---|---|---| | [com.google.cloud:libraries-bom](https://cloud.google.com/java/docs/bom) ([source](https://togithub.com/GoogleCloudPlatform/cloud-opensource-java)) | `25.2.0` -> `25.3.0` | [![age](https://badges.renovateapi.com/packages/maven/com.google.cloud:libraries-bom/25.3.0/age-slim)](https://docs.renovatebot.com/merge-confidence/) | [![adoption](https://badges.renovateapi.com/packages/maven/com.google.cloud:libraries-bom/25.3.0/adoption-slim)](https://docs.renovatebot.com/merge-confidence/) | [![passing](https://badges.renovateapi.com/packages/maven/com.google.cloud:libraries-bom/25.3.0/compatibility-slim/25.2.0)](https://docs.renovatebot.com/merge-confidence/) | [![confidence](https://badges.renovateapi.com/packages/maven/com.google.cloud:libraries-bom/25.3.0/confidence-slim/25.2.0)](https://docs.renovatebot.com/merge-confidence/) | --- ### Configuration πŸ“… **Schedule**: At any time (no schedule defined). 🚦 **Automerge**: Disabled by config. Please merge this manually once you are satisfied. β™» **Rebasing**: Renovate will not automatically rebase this PR, because other commits have been found. πŸ”• **Ignore**: Close this PR and you won't be reminded about this update again. --- - [ ] If you want to rebase/retry this PR, click this checkbox. ⚠ **Warning**: custom changes will be lost. --- This PR has been generated by [WhiteSource Renovate](https://renovate.whitesourcesoftware.com). View repository job log [here](https://app.renovatebot.com/dashboard#github/googleapis/java-language). --- language/snippets/pom.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/language/snippets/pom.xml b/language/snippets/pom.xml index cba0bfa5b5b..4259902ee56 100644 --- a/language/snippets/pom.xml +++ b/language/snippets/pom.xml @@ -30,7 +30,7 @@ com.google.cloud libraries-bom - 25.2.0 + 25.3.0 pom import From 753f4fe0ee3ca7b0d0acdd5e50a6f0a078aa75b7 Mon Sep 17 00:00:00 2001 From: WhiteSource Renovate Date: Mon, 6 Jun 2022 19:08:21 +0200 Subject: [PATCH 88/98] chore(deps): update dependency com.google.cloud:libraries-bom to v25.4.0 (#853) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit [![Mend Renovate](https://app.renovatebot.com/images/banner.svg)](https://renovatebot.com) This PR contains the following updates: | Package | Change | Age | Adoption | Passing | Confidence | |---|---|---|---|---|---| | [com.google.cloud:libraries-bom](https://cloud.google.com/java/docs/bom) ([source](https://togithub.com/GoogleCloudPlatform/cloud-opensource-java)) | `25.3.0` -> `25.4.0` | [![age](https://badges.renovateapi.com/packages/maven/com.google.cloud:libraries-bom/25.4.0/age-slim)](https://docs.renovatebot.com/merge-confidence/) | [![adoption](https://badges.renovateapi.com/packages/maven/com.google.cloud:libraries-bom/25.4.0/adoption-slim)](https://docs.renovatebot.com/merge-confidence/) | [![passing](https://badges.renovateapi.com/packages/maven/com.google.cloud:libraries-bom/25.4.0/compatibility-slim/25.3.0)](https://docs.renovatebot.com/merge-confidence/) | [![confidence](https://badges.renovateapi.com/packages/maven/com.google.cloud:libraries-bom/25.4.0/confidence-slim/25.3.0)](https://docs.renovatebot.com/merge-confidence/) | --- ### Configuration πŸ“… **Schedule**: Branch creation - At any time (no schedule defined), Automerge - At any time (no schedule defined). 🚦 **Automerge**: Disabled by config. Please merge this manually once you are satisfied. β™» **Rebasing**: Renovate will not automatically rebase this PR, because other commits have been found. πŸ”• **Ignore**: Close this PR and you won't be reminded about this update again. --- - [ ] If you want to rebase/retry this PR, click this checkbox. ⚠ **Warning**: custom changes will be lost. --- This PR has been generated by [Mend Renovate](https://www.mend.io/free-developer-tools/renovate/). View repository job log [here](https://app.renovatebot.com/dashboard#github/googleapis/java-language). --- language/snippets/pom.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/language/snippets/pom.xml b/language/snippets/pom.xml index 4259902ee56..1fb2213f550 100644 --- a/language/snippets/pom.xml +++ b/language/snippets/pom.xml @@ -30,7 +30,7 @@ com.google.cloud libraries-bom - 25.3.0 + 25.4.0 pom import From a0b2132dcf728ccade7249cbff67834d08e0c299 Mon Sep 17 00:00:00 2001 From: WhiteSource Renovate Date: Tue, 12 Jul 2022 02:21:38 +0200 Subject: [PATCH 89/98] chore(deps): update dependency com.google.cloud:libraries-bom to v26 (#867) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit * chore(deps): update dependency com.google.cloud:libraries-bom to v26 * πŸ¦‰ Updates from OwlBot post-processor See https://github.com/googleapis/repo-automation-bots/blob/main/packages/owl-bot/README.md Co-authored-by: Owl Bot --- language/snippets/pom.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/language/snippets/pom.xml b/language/snippets/pom.xml index 1fb2213f550..0036ed9d30b 100644 --- a/language/snippets/pom.xml +++ b/language/snippets/pom.xml @@ -30,7 +30,7 @@ com.google.cloud libraries-bom - 25.4.0 + 26.0.0 pom import From 1372d4d12d22e2b9c98c05de8d31c26f6a2730eb Mon Sep 17 00:00:00 2001 From: WhiteSource Renovate Date: Tue, 16 Aug 2022 18:16:11 +0200 Subject: [PATCH 90/98] chore(deps): update dependency com.google.cloud:libraries-bom to v26.1.0 (#879) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit [![Mend Renovate](https://app.renovatebot.com/images/banner.svg)](https://renovatebot.com) This PR contains the following updates: | Package | Change | Age | Adoption | Passing | Confidence | |---|---|---|---|---|---| | [com.google.cloud:libraries-bom](https://cloud.google.com/java/docs/bom) ([source](https://togithub.com/googleapis/java-cloud-bom)) | `26.0.0` -> `26.1.0` | [![age](https://badges.renovateapi.com/packages/maven/com.google.cloud:libraries-bom/26.1.0/age-slim)](https://docs.renovatebot.com/merge-confidence/) | [![adoption](https://badges.renovateapi.com/packages/maven/com.google.cloud:libraries-bom/26.1.0/adoption-slim)](https://docs.renovatebot.com/merge-confidence/) | [![passing](https://badges.renovateapi.com/packages/maven/com.google.cloud:libraries-bom/26.1.0/compatibility-slim/26.0.0)](https://docs.renovatebot.com/merge-confidence/) | [![confidence](https://badges.renovateapi.com/packages/maven/com.google.cloud:libraries-bom/26.1.0/confidence-slim/26.0.0)](https://docs.renovatebot.com/merge-confidence/) | --- ### Configuration πŸ“… **Schedule**: Branch creation - At any time (no schedule defined), Automerge - At any time (no schedule defined). 🚦 **Automerge**: Disabled by config. Please merge this manually once you are satisfied. β™» **Rebasing**: Renovate will not automatically rebase this PR, because other commits have been found. πŸ”• **Ignore**: Close this PR and you won't be reminded about this update again. --- - [ ] If you want to rebase/retry this PR, click this checkbox. ⚠ **Warning**: custom changes will be lost. --- This PR has been generated by [Mend Renovate](https://www.mend.io/free-developer-tools/renovate/). View repository job log [here](https://app.renovatebot.com/dashboard#github/googleapis/java-language). --- language/snippets/pom.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/language/snippets/pom.xml b/language/snippets/pom.xml index 0036ed9d30b..8a176e59ae2 100644 --- a/language/snippets/pom.xml +++ b/language/snippets/pom.xml @@ -30,7 +30,7 @@ com.google.cloud libraries-bom - 26.0.0 + 26.1.0 pom import From a0f7375d82c3b0de3abac2ee57dc552ca04faecd Mon Sep 17 00:00:00 2001 From: WhiteSource Renovate Date: Wed, 31 Aug 2022 22:44:34 +0200 Subject: [PATCH 91/98] chore(deps): update dependency com.google.cloud:libraries-bom to v26.1.1 (#883) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit [![Mend Renovate](https://app.renovatebot.com/images/banner.svg)](https://renovatebot.com) This PR contains the following updates: | Package | Change | Age | Adoption | Passing | Confidence | |---|---|---|---|---|---| | [com.google.cloud:libraries-bom](https://cloud.google.com/java/docs/bom) ([source](https://togithub.com/googleapis/java-cloud-bom)) | `26.1.0` -> `26.1.1` | [![age](https://badges.renovateapi.com/packages/maven/com.google.cloud:libraries-bom/26.1.1/age-slim)](https://docs.renovatebot.com/merge-confidence/) | [![adoption](https://badges.renovateapi.com/packages/maven/com.google.cloud:libraries-bom/26.1.1/adoption-slim)](https://docs.renovatebot.com/merge-confidence/) | [![passing](https://badges.renovateapi.com/packages/maven/com.google.cloud:libraries-bom/26.1.1/compatibility-slim/26.1.0)](https://docs.renovatebot.com/merge-confidence/) | [![confidence](https://badges.renovateapi.com/packages/maven/com.google.cloud:libraries-bom/26.1.1/confidence-slim/26.1.0)](https://docs.renovatebot.com/merge-confidence/) | --- ### Configuration πŸ“… **Schedule**: Branch creation - At any time (no schedule defined), Automerge - At any time (no schedule defined). 🚦 **Automerge**: Disabled by config. Please merge this manually once you are satisfied. β™» **Rebasing**: Renovate will not automatically rebase this PR, because other commits have been found. πŸ”• **Ignore**: Close this PR and you won't be reminded about this update again. --- - [ ] If you want to rebase/retry this PR, click this checkbox. ⚠ **Warning**: custom changes will be lost. --- This PR has been generated by [Mend Renovate](https://www.mend.io/free-developer-tools/renovate/). View repository job log [here](https://app.renovatebot.com/dashboard#github/googleapis/java-language). --- language/snippets/pom.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/language/snippets/pom.xml b/language/snippets/pom.xml index 8a176e59ae2..d0086e2c24d 100644 --- a/language/snippets/pom.xml +++ b/language/snippets/pom.xml @@ -30,7 +30,7 @@ com.google.cloud libraries-bom - 26.1.0 + 26.1.1 pom import From 35772fe68cc0d45e612149e6b3d411f7ff72289c Mon Sep 17 00:00:00 2001 From: WhiteSource Renovate Date: Tue, 20 Sep 2022 17:28:15 +0200 Subject: [PATCH 92/98] chore(deps): update dependency com.google.cloud:libraries-bom to v26.1.2 (#894) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit [![Mend Renovate](https://app.renovatebot.com/images/banner.svg)](https://renovatebot.com) This PR contains the following updates: | Package | Change | Age | Adoption | Passing | Confidence | |---|---|---|---|---|---| | [com.google.cloud:libraries-bom](https://cloud.google.com/java/docs/bom) ([source](https://togithub.com/googleapis/java-cloud-bom)) | `26.1.1` -> `26.1.2` | [![age](https://badges.renovateapi.com/packages/maven/com.google.cloud:libraries-bom/26.1.2/age-slim)](https://docs.renovatebot.com/merge-confidence/) | [![adoption](https://badges.renovateapi.com/packages/maven/com.google.cloud:libraries-bom/26.1.2/adoption-slim)](https://docs.renovatebot.com/merge-confidence/) | [![passing](https://badges.renovateapi.com/packages/maven/com.google.cloud:libraries-bom/26.1.2/compatibility-slim/26.1.1)](https://docs.renovatebot.com/merge-confidence/) | [![confidence](https://badges.renovateapi.com/packages/maven/com.google.cloud:libraries-bom/26.1.2/confidence-slim/26.1.1)](https://docs.renovatebot.com/merge-confidence/) | --- ### Configuration πŸ“… **Schedule**: Branch creation - At any time (no schedule defined), Automerge - At any time (no schedule defined). 🚦 **Automerge**: Disabled by config. Please merge this manually once you are satisfied. β™» **Rebasing**: Renovate will not automatically rebase this PR, because other commits have been found. πŸ”• **Ignore**: Close this PR and you won't be reminded about this update again. --- - [ ] If you want to rebase/retry this PR, click this checkbox. ⚠ **Warning**: custom changes will be lost. --- This PR has been generated by [Mend Renovate](https://www.mend.io/free-developer-tools/renovate/). View repository job log [here](https://app.renovatebot.com/dashboard#github/googleapis/java-language). --- language/snippets/pom.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/language/snippets/pom.xml b/language/snippets/pom.xml index d0086e2c24d..2dc175bfd7f 100644 --- a/language/snippets/pom.xml +++ b/language/snippets/pom.xml @@ -30,7 +30,7 @@ com.google.cloud libraries-bom - 26.1.1 + 26.1.2 pom import From 21b176cc3306746c6083c1be683f9b77d38e0ef3 Mon Sep 17 00:00:00 2001 From: wizeng23 Date: Tue, 27 Sep 2022 13:02:38 -0700 Subject: [PATCH 93/98] docs: update classification sample to use v2 model (#899) --- .../java/com/example/language/Analyze.java | 34 ++++++++++++------- 1 file changed, 22 insertions(+), 12 deletions(-) diff --git a/language/snippets/src/main/java/com/example/language/Analyze.java b/language/snippets/src/main/java/com/example/language/Analyze.java index 25ca4131df6..04aaef4a887 100644 --- a/language/snippets/src/main/java/com/example/language/Analyze.java +++ b/language/snippets/src/main/java/com/example/language/Analyze.java @@ -24,6 +24,9 @@ import com.google.cloud.language.v1.AnalyzeSyntaxRequest; import com.google.cloud.language.v1.AnalyzeSyntaxResponse; import com.google.cloud.language.v1.ClassificationCategory; +import com.google.cloud.language.v1.ClassificationModelOptions; +import com.google.cloud.language.v1.ClassificationModelOptions.V2Model; +import com.google.cloud.language.v1.ClassificationModelOptions.V2Model.ContentCategoriesVersion; import com.google.cloud.language.v1.ClassifyTextRequest; import com.google.cloud.language.v1.ClassifyTextResponse; import com.google.cloud.language.v1.Document; @@ -124,7 +127,7 @@ public static void analyzeEntitiesFile(String gcsUri) throws Exception { // [START language_entities_gcs] // Instantiate the Language client com.google.cloud.language.v1.LanguageServiceClient try (LanguageServiceClient language = LanguageServiceClient.create()) { - // set the GCS Content URI path to the file to be analyzed + // Set the GCS Content URI path to the file to be analyzed Document doc = Document.newBuilder().setGcsContentUri(gcsUri).setType(Type.PLAIN_TEXT).build(); AnalyzeEntitiesRequest request = @@ -203,9 +206,9 @@ public static List analyzeSyntaxText(String text) throws Exception { .setDocument(doc) .setEncodingType(EncodingType.UTF16) .build(); - // analyze the syntax in the given text + // Analyze the syntax in the given text AnalyzeSyntaxResponse response = language.analyzeSyntax(request); - // print the response + // Print the response for (Token token : response.getTokensList()) { System.out.printf("\tText: %s\n", token.getText().getContent()); System.out.printf("\tBeginOffset: %d\n", token.getText().getBeginOffset()); @@ -243,9 +246,9 @@ public static List analyzeSyntaxFile(String gcsUri) throws Exception { .setDocument(doc) .setEncodingType(EncodingType.UTF16) .build(); - // analyze the syntax in the given text + // Analyze the syntax in the given text AnalyzeSyntaxResponse response = language.analyzeSyntax(request); - // print the response + // Print the response for (Token token : response.getTokensList()) { System.out.printf("\tText: %s\n", token.getText().getContent()); System.out.printf("\tBeginOffset: %d\n", token.getText().getBeginOffset()); @@ -277,10 +280,17 @@ public static void classifyText(String text) throws Exception { // [START language_classify_text] // Instantiate the Language client com.google.cloud.language.v1.LanguageServiceClient try (LanguageServiceClient language = LanguageServiceClient.create()) { - // set content to the text string + // Set content to the text string Document doc = Document.newBuilder().setContent(text).setType(Type.PLAIN_TEXT).build(); - ClassifyTextRequest request = ClassifyTextRequest.newBuilder().setDocument(doc).build(); - // detect categories in the given text + V2Model v2Model = V2Model.setContentCategoriesVersion(ContentCategoriesVersion.V2).build(); + ClassificationModelOptions options = + ClassificationModelOptions.newBuilder().setV2Model(v2Model).build(); + ClassifyTextRequest request = + ClassifyTextRequest.newBuilder() + .setDocument(doc) + .setClassificationModelOptions(options) + .build(); + // Detect categories in the given text ClassifyTextResponse response = language.classifyText(request); for (ClassificationCategory category : response.getCategoriesList()) { @@ -297,11 +307,11 @@ public static void classifyFile(String gcsUri) throws Exception { // [START language_classify_gcs] // Instantiate the Language client com.google.cloud.language.v1.LanguageServiceClient try (LanguageServiceClient language = LanguageServiceClient.create()) { - // set the GCS content URI path + // Set the GCS content URI path Document doc = Document.newBuilder().setGcsContentUri(gcsUri).setType(Type.PLAIN_TEXT).build(); ClassifyTextRequest request = ClassifyTextRequest.newBuilder().setDocument(doc).build(); - // detect categories in the given file + // Detect categories in the given file ClassifyTextResponse response = language.classifyText(request); for (ClassificationCategory category : response.getCategoriesList()) { @@ -324,7 +334,7 @@ public static void entitySentimentText(String text) throws Exception { .setDocument(doc) .setEncodingType(EncodingType.UTF16) .build(); - // detect entity sentiments in the given string + // Detect entity sentiments in the given string AnalyzeEntitySentimentResponse response = language.analyzeEntitySentiment(request); // Print the response for (Entity entity : response.getEntitiesList()) { @@ -343,7 +353,7 @@ public static void entitySentimentText(String text) throws Exception { // [END language_entity_sentiment_text] } - /** Identifies the entity sentiments in the the GCS hosted file using the Language Beta API. */ + /** Identifies the entity sentiments in the GCS hosted file using the Language Beta API. */ public static void entitySentimentFile(String gcsUri) throws Exception { // [START language_entity_sentiment_gcs] // Instantiate the Language client com.google.cloud.language.v1.LanguageServiceClient From d5455ee26bc1e2c89e258d37a17bc9154e581558 Mon Sep 17 00:00:00 2001 From: WhiteSource Renovate Date: Fri, 7 Oct 2022 20:06:27 +0200 Subject: [PATCH 94/98] chore(deps): update dependency com.google.cloud:libraries-bom to v26.1.3 (#932) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit [![Mend Renovate](https://app.renovatebot.com/images/banner.svg)](https://renovatebot.com) This PR contains the following updates: | Package | Change | Age | Adoption | Passing | Confidence | |---|---|---|---|---|---| | [com.google.cloud:libraries-bom](https://cloud.google.com/java/docs/bom) ([source](https://togithub.com/googleapis/java-cloud-bom)) | `26.1.2` -> `26.1.3` | [![age](https://badges.renovateapi.com/packages/maven/com.google.cloud:libraries-bom/26.1.3/age-slim)](https://docs.renovatebot.com/merge-confidence/) | [![adoption](https://badges.renovateapi.com/packages/maven/com.google.cloud:libraries-bom/26.1.3/adoption-slim)](https://docs.renovatebot.com/merge-confidence/) | [![passing](https://badges.renovateapi.com/packages/maven/com.google.cloud:libraries-bom/26.1.3/compatibility-slim/26.1.2)](https://docs.renovatebot.com/merge-confidence/) | [![confidence](https://badges.renovateapi.com/packages/maven/com.google.cloud:libraries-bom/26.1.3/confidence-slim/26.1.2)](https://docs.renovatebot.com/merge-confidence/) | --- ### Configuration πŸ“… **Schedule**: Branch creation - At any time (no schedule defined), Automerge - At any time (no schedule defined). 🚦 **Automerge**: Disabled by config. Please merge this manually once you are satisfied. β™» **Rebasing**: Renovate will not automatically rebase this PR, because other commits have been found. πŸ”• **Ignore**: Close this PR and you won't be reminded about this update again. --- - [ ] If you want to rebase/retry this PR, click this checkbox. ⚠ **Warning**: custom changes will be lost. --- This PR has been generated by [Mend Renovate](https://www.mend.io/free-developer-tools/renovate/). View repository job log [here](https://app.renovatebot.com/dashboard#github/googleapis/java-language). --- language/snippets/pom.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/language/snippets/pom.xml b/language/snippets/pom.xml index 2dc175bfd7f..bd87cfd7978 100644 --- a/language/snippets/pom.xml +++ b/language/snippets/pom.xml @@ -30,7 +30,7 @@ com.google.cloud libraries-bom - 26.1.2 + 26.1.3 pom import From ee80352000de991981497f351079092f133d5e03 Mon Sep 17 00:00:00 2001 From: Mend Renovate Date: Tue, 8 Nov 2022 18:54:21 +0100 Subject: [PATCH 95/98] chore(deps): update dependency com.google.cloud:libraries-bom to v26.1.4 (#946) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit [![Mend Renovate](https://app.renovatebot.com/images/banner.svg)](https://renovatebot.com) This PR contains the following updates: | Package | Change | Age | Adoption | Passing | Confidence | |---|---|---|---|---|---| | [com.google.cloud:libraries-bom](https://cloud.google.com/java/docs/bom) ([source](https://togithub.com/googleapis/java-cloud-bom)) | `26.1.3` -> `26.1.4` | [![age](https://badges.renovateapi.com/packages/maven/com.google.cloud:libraries-bom/26.1.4/age-slim)](https://docs.renovatebot.com/merge-confidence/) | [![adoption](https://badges.renovateapi.com/packages/maven/com.google.cloud:libraries-bom/26.1.4/adoption-slim)](https://docs.renovatebot.com/merge-confidence/) | [![passing](https://badges.renovateapi.com/packages/maven/com.google.cloud:libraries-bom/26.1.4/compatibility-slim/26.1.3)](https://docs.renovatebot.com/merge-confidence/) | [![confidence](https://badges.renovateapi.com/packages/maven/com.google.cloud:libraries-bom/26.1.4/confidence-slim/26.1.3)](https://docs.renovatebot.com/merge-confidence/) | --- ### Configuration πŸ“… **Schedule**: Branch creation - At any time (no schedule defined), Automerge - At any time (no schedule defined). 🚦 **Automerge**: Disabled by config. Please merge this manually once you are satisfied. β™» **Rebasing**: Renovate will not automatically rebase this PR, because other commits have been found. πŸ”• **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 [Mend Renovate](https://www.mend.io/free-developer-tools/renovate/). View repository job log [here](https://app.renovatebot.com/dashboard#github/googleapis/java-language). --- language/snippets/pom.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/language/snippets/pom.xml b/language/snippets/pom.xml index bd87cfd7978..fac1aad2c7d 100644 --- a/language/snippets/pom.xml +++ b/language/snippets/pom.xml @@ -30,7 +30,7 @@ com.google.cloud libraries-bom - 26.1.3 + 26.1.4 pom import From 0812635ad23ba3de54e3d0a709b292a300a96337 Mon Sep 17 00:00:00 2001 From: shabirmean Date: Wed, 16 Nov 2022 19:21:45 -0500 Subject: [PATCH 96/98] chore: post migration updates - groupId, artifact url, repo references --- language/snippets/pom.xml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/language/snippets/pom.xml b/language/snippets/pom.xml index fac1aad2c7d..cbff32596c4 100644 --- a/language/snippets/pom.xml +++ b/language/snippets/pom.xml @@ -1,11 +1,11 @@ 4.0.0 - com.google.cloud + com.example.language language-snippets jar Google Natural Language Snippets - https://github.com/googleapis/java-language + https://github.com/GoogleCloudPlatform/java-docs-samples/tree/main/language