diff --git a/samples/snippets/src/main/java/com/example/errorreporting/QuickStart.java b/samples/snippets/src/main/java/com/example/errorreporting/QuickStart.java
index b9032906..819f564e 100644
--- a/samples/snippets/src/main/java/com/example/errorreporting/QuickStart.java
+++ b/samples/snippets/src/main/java/com/example/errorreporting/QuickStart.java
@@ -29,12 +29,11 @@
/**
* Snippet demonstrates using the Cloud Error Reporting API to report a custom error event.
- *
- * This library is not required on App Engine, errors written to stderr are automatically written
- * to Cloud Error Reporting.
- * It is also not required if you are writing logs to Cloud Logging.
- * Errors written to Cloud Logging that contain an exception or stack trace
- * are automatically written out to Cloud Error Reporting.
+ *
+ *
This library is not required on App Engine, errors written to stderr are automatically written
+ * to Cloud Error Reporting. It is also not required if you are writing logs to Cloud Logging.
+ * Errors written to Cloud Logging that contain an exception or stack trace are automatically
+ * written out to Cloud Error Reporting.
*/
public class QuickStart {
public static void main(String[] args) throws Exception {
@@ -47,20 +46,23 @@ public static void main(String[] args) throws Exception {
try (ReportErrorsServiceClient reportErrorsServiceClient = ReportErrorsServiceClient.create()) {
// Custom error events require an error reporting location as well.
- ErrorContext errorContext = ErrorContext.newBuilder()
- .setReportLocation(SourceLocation.newBuilder()
- .setFilePath("Test.java")
- .setLineNumber(10)
- .setFunctionName("myMethod")
- .build())
- .build();
+ ErrorContext errorContext =
+ ErrorContext.newBuilder()
+ .setReportLocation(
+ SourceLocation.newBuilder()
+ .setFilePath("Test.java")
+ .setLineNumber(10)
+ .setFunctionName("myMethod")
+ .build())
+ .build();
- //Report a custom error event
- ReportedErrorEvent customErrorEvent = ReportedErrorEvent.getDefaultInstance()
- .toBuilder()
- .setMessage("custom error event")
- .setContext(errorContext)
- .build();
+ // Report a custom error event
+ ReportedErrorEvent customErrorEvent =
+ ReportedErrorEvent.getDefaultInstance()
+ .toBuilder()
+ .setMessage("custom error event")
+ .setContext(errorContext)
+ .build();
// Report an event synchronously, use .reportErrorEventCallable for asynchronous reporting.
reportErrorsServiceClient.reportErrorEvent(projectName, customErrorEvent);
}
diff --git a/samples/snippets/src/test/java/com/example/errorreporting/QuickStartIT.java b/samples/snippets/src/test/java/com/example/errorreporting/QuickStartIT.java
index 2c9e3099..6e7a4750 100644
--- a/samples/snippets/src/test/java/com/example/errorreporting/QuickStartIT.java
+++ b/samples/snippets/src/test/java/com/example/errorreporting/QuickStartIT.java
@@ -27,6 +27,6 @@ public class QuickStartIT {
@Test
public void testQuickStart() throws Exception {
// Ensure quick start runs without any exception
- QuickStart.main(new String[]{});
+ QuickStart.main(new String[] {});
}
}
diff --git a/synth.py b/synth.py
deleted file mode 100644
index e6cdad33..00000000
--- a/synth.py
+++ /dev/null
@@ -1,96 +0,0 @@
-# Copyright 2018 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.
-
-"""This script is used to synthesize generated parts of this library."""
-
-import synthtool as s
-import synthtool.gcp as gcp
-import synthtool.languages.java as java
-
-AUTOSYNTH_MULTIPLE_COMMITS = True
-
-gapic = gcp.GAPICBazel()
-
-service = 'devtools-clouderrorreporting'
-versions = ['v1beta1']
-
-ERROR_GROUP_OVERLOAD = """
- // Inserted by synthtool to preserve backwards-compatibility
- /**
- * Get the specified group.
- *
- *
Sample code:
- *
- *
- * try (ErrorGroupServiceClient errorGroupServiceClient = ErrorGroupServiceClient.create()) {
- * GroupName groupName = GroupName.of("[PROJECT]", "[GROUP]");
- * ErrorGroup response = errorGroupServiceClient.getGroup(groupName);
- * }
- *
- *
- * @param groupName Required. The group resource name. Written as
- * <code>projects/<var>projectID</var>/groups/<var>group_name</var></code>.
- * Call <a href="/https/github.com/error-reporting/reference/rest/v1beta1/projects.groupStats/list">
- * <code>groupStats.list</code></a> to return a list of groups belonging to
- * this project.
- * Example: <code>projects/my-project-123/groups/my-group</code>
- * @throws com.google.api.gax.rpc.ApiException if the remote call fails
- * @deprecated Use ErrorGroupServiceClient#getGroup(ErrorGroupName)
- */
- @Deprecated
- public final ErrorGroup getGroup(GroupName groupName) {
-
- GetGroupRequest request =
- GetGroupRequest.newBuilder()
- .setGroupName(groupName == null ? null : groupName.toString())
- .build();
- return getGroup(request);
- }
-"""
-
-ERROR_GROUP_OVERLOAD_PREVIOUS_METHOD = r'(\s+public ErrorGroupServiceStub getStub\(\) {\n\s+return stub;\n\s+})'
-
-for version in versions:
- library = gapic.java_library(
- service=service,
- version=version,
- proto_path=f'google/devtools/clouderrorreporting/{version}',
- bazel_target=f'//google/devtools/clouderrorreporting/{version}:google-cloud-{service}-{version}-java',
- )
-
- library = library / f"google-cloud-{service}-{version}-java"
-
- java.fix_proto_headers(library / f'proto-google-cloud-{service}-{version}-java')
- java.fix_grpc_headers(library / f'grpc-google-cloud-{service}-{version}-java', "")
-
- s.replace(
- library / f'gapic-google-cloud-{service}-{version}-java/src/**/ErrorGroupServiceClient.java',
- ERROR_GROUP_OVERLOAD_PREVIOUS_METHOD,
- "\g<1>\n\n" + ERROR_GROUP_OVERLOAD
- )
- s.replace(
- library / f'gapic-google-cloud-{service}-{version}-java/src/**/ErrorGroupServiceClient.java',
- "import com.google.devtools.clouderrorreporting.v1beta1.ErrorGroupName;",
- "import com.google.devtools.clouderrorreporting.v1beta1.ErrorGroupName;\nimport com.google.devtools.clouderrorreporting.v1beta1.GroupName;"
- )
-
- s.copy(library / f'gapic-google-cloud-{service}-{version}-java/src', f'google-cloud-errorreporting/src')
- s.copy(library / f'grpc-google-cloud-{service}-{version}-java/src', f'grpc-google-cloud-error-reporting-{version}/src')
- s.copy(library / f'proto-google-cloud-{service}-{version}-java/src', f'proto-google-cloud-error-reporting-{version}/src')
-
- java.format_code(f'google-cloud-errorreporting/src')
- java.format_code(f'grpc-google-cloud-error-reporting-{version}/src')
- java.format_code(f'proto-google-cloud-error-reporting-{version}/src')
-
-java.common_templates()
diff --git a/versions.txt b/versions.txt
index 5500483c..a8e73220 100644
--- a/versions.txt
+++ b/versions.txt
@@ -1,6 +1,6 @@
# Format:
# module:released-version:current-version
-grpc-google-cloud-errorreporting-v1beta1:0.88.4:0.88.5-SNAPSHOT
-proto-google-cloud-errorreporting-v1beta1:0.88.4:0.88.5-SNAPSHOT
-google-cloud-errorreporting:0.122.4-beta:0.122.5-beta-SNAPSHOT
\ No newline at end of file
+google-cloud-errorreporting:0.122.4-beta:0.122.5-beta-SNAPSHOT
+grpc-google-cloud-error-reporting-v1beta1:0.88.4:0.88.5-SNAPSHOT
+proto-google-cloud-error-reporting-v1beta1:0.88.4:0.88.5-SNAPSHOT
From 7f63fdb132c21f308e61a922ebdbeccc362c053a Mon Sep 17 00:00:00 2001
From: WhiteSource Renovate
Date: Thu, 9 Sep 2021 02:00:24 +0200
Subject: [PATCH 11/19] chore(deps): update dependency
com.google.cloud:libraries-bom to v23 (#668)
MIME-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 8bit
[](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` | [](https://docs.renovatebot.com/merge-confidence/) | [](https://docs.renovatebot.com/merge-confidence/) | [](https://docs.renovatebot.com/merge-confidence/) | [](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-errorreporting).
---
samples/snippets/pom.xml | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/samples/snippets/pom.xml b/samples/snippets/pom.xml
index e2facf2e..cbe533e3 100644
--- a/samples/snippets/pom.xml
+++ b/samples/snippets/pom.xml
@@ -30,7 +30,7 @@
com.google.cloud
libraries-bom
- 22.0.0
+ 23.0.0
pom
import
From ef129edf76d72d4b40ae9196dda0a1906fcc84f2 Mon Sep 17 00:00:00 2001
From: WhiteSource Renovate
Date: Thu, 9 Sep 2021 18:31:04 +0200
Subject: [PATCH 12/19] chore(deps): update dependency
com.google.cloud:google-cloud-errorreporting to v0.122.4-beta (#661)
---
samples/install-without-bom/pom.xml | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/samples/install-without-bom/pom.xml b/samples/install-without-bom/pom.xml
index 4a933b77..6ed2641e 100644
--- a/samples/install-without-bom/pom.xml
+++ b/samples/install-without-bom/pom.xml
@@ -29,7 +29,7 @@
com.google.cloud
google-cloud-errorreporting
- 0.122.3-beta
+ 0.122.4-beta
From 76f0234d85e744389389e88ff256abb893b0338e Mon Sep 17 00:00:00 2001
From: WhiteSource Renovate
Date: Thu, 9 Sep 2021 18:31:21 +0200
Subject: [PATCH 13/19] build(deps): update dependency
org.apache.maven.plugins:maven-javadoc-plugin to v3.3.1 (#667)
---
pom.xml | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/pom.xml b/pom.xml
index 282409cc..9b833943 100644
--- a/pom.xml
+++ b/pom.xml
@@ -148,7 +148,7 @@
org.apache.maven.plugins
maven-javadoc-plugin
- 3.3.0
+ 3.3.1
html
From 978d73ccf166df716a07fc401a1ecb3a73fad889 Mon Sep 17 00:00:00 2001
From: minherz
Date: Tue, 14 Sep 2021 00:14:41 +0300
Subject: [PATCH 14/19] chore(fix): fix nightly test of samples
remove profiles section from samples pom.xml to fix the problem with nightly tests for the errorpreporting samples
---
samples/pom.xml | 9 ---------
1 file changed, 9 deletions(-)
diff --git a/samples/pom.xml b/samples/pom.xml
index d02a6b70..c4f880a5 100644
--- a/samples/pom.xml
+++ b/samples/pom.xml
@@ -33,15 +33,6 @@
snippets
-
-
- enable-samples
-
- sample
-
-
-
-
From 804a35bfa4719683520be16f64ba3baa2c46f0a2 Mon Sep 17 00:00:00 2001
From: WhiteSource Renovate
Date: Tue, 14 Sep 2021 03:58:31 +0200
Subject: [PATCH 15/19] build(deps): update dependency
com.google.cloud:google-cloud-shared-config to v1.0.2 (#677)
MIME-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 8bit
[](https://renovatebot.com)
This PR contains the following updates:
| Package | Change | Age | Adoption | Passing | Confidence |
|---|---|---|---|---|---|
| [com.google.cloud:google-cloud-shared-config](https://togithub.com/googleapis/java-shared-config) | `1.0.1` -> `1.0.2` | [](https://docs.renovatebot.com/merge-confidence/) | [](https://docs.renovatebot.com/merge-confidence/) | [](https://docs.renovatebot.com/merge-confidence/) | [](https://docs.renovatebot.com/merge-confidence/) |
---
### Release Notes
googleapis/java-shared-config
### [`v1.0.2`](https://togithub.com/googleapis/java-shared-config/blob/master/CHANGELOG.md#102-httpswwwgithubcomgoogleapisjava-shared-configcomparev101v102-2021-09-13)
[Compare Source](https://togithub.com/googleapis/java-shared-config/compare/v1.0.1...v1.0.2)
---
### 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-errorreporting).
---
google-cloud-errorreporting-bom/pom.xml | 2 +-
pom.xml | 2 +-
2 files changed, 2 insertions(+), 2 deletions(-)
diff --git a/google-cloud-errorreporting-bom/pom.xml b/google-cloud-errorreporting-bom/pom.xml
index 1792c202..60df3356 100644
--- a/google-cloud-errorreporting-bom/pom.xml
+++ b/google-cloud-errorreporting-bom/pom.xml
@@ -8,7 +8,7 @@
com.google.cloud
google-cloud-shared-config
- 1.0.1
+ 1.0.2
Google Cloud errorreporting BOM
diff --git a/pom.xml b/pom.xml
index 9b833943..e12046b5 100644
--- a/pom.xml
+++ b/pom.xml
@@ -14,7 +14,7 @@
com.google.cloud
google-cloud-shared-config
- 1.0.1
+ 1.0.2
From d646032ebb89b56c5464fb44533529962089cd0a Mon Sep 17 00:00:00 2001
From: WhiteSource Renovate
Date: Tue, 14 Sep 2021 04:20:36 +0200
Subject: [PATCH 16/19] deps: update dependency
com.google.cloud:google-cloud-shared-dependencies to v2.2.1 (#676)
MIME-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 8bit
[](https://renovatebot.com)
This PR contains the following updates:
| Package | Change | Age | Adoption | Passing | Confidence |
|---|---|---|---|---|---|
| [com.google.cloud:google-cloud-shared-dependencies](https://togithub.com/googleapis/java-shared-dependencies) | `2.2.0` -> `2.2.1` | [](https://docs.renovatebot.com/merge-confidence/) | [](https://docs.renovatebot.com/merge-confidence/) | [](https://docs.renovatebot.com/merge-confidence/) | [](https://docs.renovatebot.com/merge-confidence/) |
---
### Release Notes
googleapis/java-shared-dependencies
### [`v2.2.1`](https://togithub.com/googleapis/java-shared-dependencies/blob/master/CHANGELOG.md#221-httpswwwgithubcomgoogleapisjava-shared-dependenciescompare220v221-2021-09-13)
[Compare Source](https://togithub.com/googleapis/java-shared-dependencies/compare/v2.2.0...v2.2.1)
---
### 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-errorreporting).
---
pom.xml | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/pom.xml b/pom.xml
index e12046b5..3b7b7d56 100644
--- a/pom.xml
+++ b/pom.xml
@@ -78,7 +78,7 @@
com.google.cloud
google-cloud-shared-dependencies
- 2.2.0
+ 2.2.1
pom
import
From 36c2ab4529955fa8c44fb89c259bc89b6d946ae2 Mon Sep 17 00:00:00 2001
From: WhiteSource Renovate
Date: Tue, 14 Sep 2021 18:42:20 +0200
Subject: [PATCH 17/19] deps: update dependency
com.google.cloud:google-cloud-core to v2.1.3 (#675)
MIME-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 8bit
[](https://renovatebot.com)
This PR contains the following updates:
| Package | Change | Age | Adoption | Passing | Confidence |
|---|---|---|---|---|---|
| [com.google.cloud:google-cloud-core](https://togithub.com/googleapis/java-core) | `2.1.2` -> `2.1.3` | [](https://docs.renovatebot.com/merge-confidence/) | [](https://docs.renovatebot.com/merge-confidence/) | [](https://docs.renovatebot.com/merge-confidence/) | [](https://docs.renovatebot.com/merge-confidence/) |
---
### Release Notes
googleapis/java-core
### [`v2.1.3`](https://togithub.com/googleapis/java-core/blob/master/CHANGELOG.md#213-httpswwwgithubcomgoogleapisjava-corecomparev212v213-2021-09-10)
[Compare Source](https://togithub.com/googleapis/java-core/compare/v2.1.2...v2.1.3)
---
### 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-errorreporting).
---
samples/install-without-bom/pom.xml | 2 +-
samples/snapshot/pom.xml | 2 +-
2 files changed, 2 insertions(+), 2 deletions(-)
diff --git a/samples/install-without-bom/pom.xml b/samples/install-without-bom/pom.xml
index 6ed2641e..30fbd902 100644
--- a/samples/install-without-bom/pom.xml
+++ b/samples/install-without-bom/pom.xml
@@ -36,7 +36,7 @@
com.google.cloud
google-cloud-core
- 2.1.2
+ 2.1.3
junit
diff --git a/samples/snapshot/pom.xml b/samples/snapshot/pom.xml
index e12ff886..f7f48fda 100644
--- a/samples/snapshot/pom.xml
+++ b/samples/snapshot/pom.xml
@@ -35,7 +35,7 @@
com.google.cloud
google-cloud-core
- 2.1.2
+ 2.1.3
junit
From 6b37f9d6013c801ae63cb26005ccebadce2f3ec0 Mon Sep 17 00:00:00 2001
From: WhiteSource Renovate
Date: Thu, 16 Sep 2021 20:42:12 +0200
Subject: [PATCH 18/19] deps: update dependency
com.google.cloud:google-cloud-core to v2.1.4 (#679)
MIME-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 8bit
[](https://renovatebot.com)
This PR contains the following updates:
| Package | Change | Age | Adoption | Passing | Confidence |
|---|---|---|---|---|---|
| [com.google.cloud:google-cloud-core](https://togithub.com/googleapis/java-core) | `2.1.3` -> `2.1.4` | [](https://docs.renovatebot.com/merge-confidence/) | [](https://docs.renovatebot.com/merge-confidence/) | [](https://docs.renovatebot.com/merge-confidence/) | [](https://docs.renovatebot.com/merge-confidence/) |
---
### Release Notes
googleapis/java-core
### [`v2.1.4`](https://togithub.com/googleapis/java-core/blob/master/CHANGELOG.md#214-httpswwwgithubcomgoogleapisjava-corecomparev213v214-2021-09-15)
[Compare Source](https://togithub.com/googleapis/java-core/compare/v2.1.3...v2.1.4)
---
### 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-errorreporting).
---
samples/install-without-bom/pom.xml | 2 +-
samples/snapshot/pom.xml | 2 +-
2 files changed, 2 insertions(+), 2 deletions(-)
diff --git a/samples/install-without-bom/pom.xml b/samples/install-without-bom/pom.xml
index 30fbd902..34058d71 100644
--- a/samples/install-without-bom/pom.xml
+++ b/samples/install-without-bom/pom.xml
@@ -36,7 +36,7 @@
com.google.cloud
google-cloud-core
- 2.1.3
+ 2.1.4
junit
diff --git a/samples/snapshot/pom.xml b/samples/snapshot/pom.xml
index f7f48fda..59fdc130 100644
--- a/samples/snapshot/pom.xml
+++ b/samples/snapshot/pom.xml
@@ -35,7 +35,7 @@
com.google.cloud
google-cloud-core
- 2.1.3
+ 2.1.4
junit
From fa56b7d5b5f0f1a53bcf6c90652974904eb9d4c0 Mon Sep 17 00:00:00 2001
From: "release-please[bot]"
<55107282+release-please[bot]@users.noreply.github.com>
Date: Fri, 17 Sep 2021 01:14:13 +0000
Subject: [PATCH 19/19] chore: release 0.122.5 (#678)
:robot: I have created a release \*beep\* \*boop\*
---
### [0.122.5](https://www.github.com/googleapis/java-errorreporting/compare/v0.122.4...v0.122.5) (2021-09-16)
### Dependencies
* update dependency com.google.cloud:google-cloud-core to v2.1.3 ([#675](https://www.github.com/googleapis/java-errorreporting/issues/675)) ([36c2ab4](https://www.github.com/googleapis/java-errorreporting/commit/36c2ab4529955fa8c44fb89c259bc89b6d946ae2))
* update dependency com.google.cloud:google-cloud-core to v2.1.4 ([#679](https://www.github.com/googleapis/java-errorreporting/issues/679)) ([6b37f9d](https://www.github.com/googleapis/java-errorreporting/commit/6b37f9d6013c801ae63cb26005ccebadce2f3ec0))
* update dependency com.google.cloud:google-cloud-shared-dependencies to v2.2.1 ([#676](https://www.github.com/googleapis/java-errorreporting/issues/676)) ([d646032](https://www.github.com/googleapis/java-errorreporting/commit/d646032ebb89b56c5464fb44533529962089cd0a))
---
This PR was generated with [Release Please](https://github.com/googleapis/release-please). See [documentation](https://github.com/googleapis/release-please#release-please).
---
.github/.OwlBot.lock.yaml | 2 +-
.github/readme/synth.py | 19 +++++++
.github/trusted-contribution.yml | 3 +-
.kokoro/continuous/readme.cfg | 55 +++++++++++++++++++
.kokoro/release/common.sh | 2 +-
.kokoro/release/drop.sh | 2 +-
.kokoro/release/promote.sh | 2 +-
.kokoro/release/publish_javadoc.sh | 2 +-
.kokoro/release/publish_javadoc11.sh | 2 +-
.kokoro/release/stage.sh | 2 +-
.kokoro/trampoline.sh | 2 +-
CHANGELOG.md | 9 +++
README.md | 4 +-
google-cloud-errorreporting-bom/pom.xml | 8 +--
google-cloud-errorreporting/pom.xml | 4 +-
.../pom.xml | 4 +-
pom.xml | 8 +--
.../pom.xml | 4 +-
samples/snapshot/pom.xml | 2 +-
versions.txt | 6 +-
20 files changed, 113 insertions(+), 29 deletions(-)
create mode 100644 .github/readme/synth.py
create mode 100644 .kokoro/continuous/readme.cfg
diff --git a/.github/.OwlBot.lock.yaml b/.github/.OwlBot.lock.yaml
index 843e882b..225b3669 100644
--- a/.github/.OwlBot.lock.yaml
+++ b/.github/.OwlBot.lock.yaml
@@ -1,3 +1,3 @@
docker:
- digest: sha256:2595f321d9a9acf34c2d02e4dc5ec214ce07eecdb43978382d8a88476dec0c16
+ digest: sha256:b328758e5113c392d3eccad613c2b18097eaebcb4d8bf77fab0326a6cad90bc7
image: gcr.io/repo-automation-bots/owlbot-java:latest
diff --git a/.github/readme/synth.py b/.github/readme/synth.py
new file mode 100644
index 00000000..7b48cc28
--- /dev/null
+++ b/.github/readme/synth.py
@@ -0,0 +1,19 @@
+# Copyright 2020 Google LLC
+#
+# Licensed under the Apache License, Version 2.0 (the "License");
+# you may not use this file except in compliance with the License.
+# You may obtain a copy of the License at
+#
+# http://www.apache.org/licenses/LICENSE-2.0
+#
+# Unless required by applicable law or agreed to in writing, software
+# distributed under the License is distributed on an "AS IS" BASIS,
+# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+# See the License for the specific language governing permissions and
+# limitations under the License.
+
+"""This script is used to synthesize generated the README for this library."""
+
+from synthtool.languages import java
+
+java.custom_templates(["java_library/README.md"])
diff --git a/.github/trusted-contribution.yml b/.github/trusted-contribution.yml
index f247d5c7..a0ba1f7d 100644
--- a/.github/trusted-contribution.yml
+++ b/.github/trusted-contribution.yml
@@ -1,2 +1,3 @@
trustedContributors:
-- renovate-bot
\ No newline at end of file
+- renovate-bot
+- gcf-owl-bot[bot]
diff --git a/.kokoro/continuous/readme.cfg b/.kokoro/continuous/readme.cfg
new file mode 100644
index 00000000..2cafb969
--- /dev/null
+++ b/.kokoro/continuous/readme.cfg
@@ -0,0 +1,55 @@
+# Copyright 2020 Google LLC
+#
+# Licensed under the Apache License, Version 2.0 (the "License");
+# you may not use this file except in compliance with the License.
+# You may obtain a copy of the License at
+#
+# http://www.apache.org/licenses/LICENSE-2.0
+#
+# Unless required by applicable law or agreed to in writing, software
+# distributed under the License is distributed on an "AS IS" BASIS,
+# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+# See the License for the specific language governing permissions and
+# limitations under the License.
+
+# Format: //devtools/kokoro/config/proto/build.proto
+
+env_vars: {
+ key: "TRAMPOLINE_IMAGE"
+ value: "gcr.io/cloud-devrel-kokoro-resources/python-multi"
+}
+
+env_vars: {
+ key: "TRAMPOLINE_BUILD_FILE"
+ value: "github/java-errorreporting/.kokoro/readme.sh"
+}
+
+# Build logs will be here
+action {
+ define_artifacts {
+ regex: "**/*sponge_log.xml"
+ regex: "**/*sponge_log.log"
+ }
+}
+
+# The github token is stored here.
+before_action {
+ fetch_keystore {
+ keystore_resource {
+ keystore_config_id: 73713
+ keyname: "yoshi-automation-github-key"
+ # TODO(theacodes): remove this after secrets have globally propagated
+ backend_type: FASTCONFIGPUSH
+ }
+ }
+}
+
+# Common env vars for all repositories and builds.
+env_vars: {
+ key: "GITHUB_USER"
+ value: "yoshi-automation"
+}
+env_vars: {
+ key: "GITHUB_EMAIL"
+ value: "yoshi-automation@google.com"
+}
diff --git a/.kokoro/release/common.sh b/.kokoro/release/common.sh
index 6e3f6599..7f78ee41 100755
--- a/.kokoro/release/common.sh
+++ b/.kokoro/release/common.sh
@@ -1,5 +1,5 @@
#!/bin/bash
-# Copyright 2018 Google Inc.
+# Copyright 2018 Google LLC
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
diff --git a/.kokoro/release/drop.sh b/.kokoro/release/drop.sh
index 5c4551ef..742ec1a8 100755
--- a/.kokoro/release/drop.sh
+++ b/.kokoro/release/drop.sh
@@ -1,5 +1,5 @@
#!/bin/bash
-# Copyright 2018 Google Inc.
+# Copyright 2018 Google LLC
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
diff --git a/.kokoro/release/promote.sh b/.kokoro/release/promote.sh
index 1fa95fa5..3cac3d8a 100755
--- a/.kokoro/release/promote.sh
+++ b/.kokoro/release/promote.sh
@@ -1,5 +1,5 @@
#!/bin/bash
-# Copyright 2018 Google Inc.
+# Copyright 2018 Google LLC
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
diff --git a/.kokoro/release/publish_javadoc.sh b/.kokoro/release/publish_javadoc.sh
index ba12e9bf..a03e9756 100755
--- a/.kokoro/release/publish_javadoc.sh
+++ b/.kokoro/release/publish_javadoc.sh
@@ -1,5 +1,5 @@
#!/bin/bash
-# Copyright 2019 Google Inc.
+# 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.
diff --git a/.kokoro/release/publish_javadoc11.sh b/.kokoro/release/publish_javadoc11.sh
index 7e959a7e..bcc42c53 100755
--- a/.kokoro/release/publish_javadoc11.sh
+++ b/.kokoro/release/publish_javadoc11.sh
@@ -1,5 +1,5 @@
#!/bin/bash
-# Copyright 2021 Google Inc.
+# Copyright 2021 Google LLC
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
diff --git a/.kokoro/release/stage.sh b/.kokoro/release/stage.sh
index 8a103384..77dc4e8f 100755
--- a/.kokoro/release/stage.sh
+++ b/.kokoro/release/stage.sh
@@ -1,5 +1,5 @@
#!/bin/bash
-# Copyright 2018 Google Inc.
+# Copyright 2018 Google LLC
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
diff --git a/.kokoro/trampoline.sh b/.kokoro/trampoline.sh
index 9da0f839..8b69b793 100644
--- a/.kokoro/trampoline.sh
+++ b/.kokoro/trampoline.sh
@@ -1,5 +1,5 @@
#!/bin/bash
-# Copyright 2018 Google Inc.
+# Copyright 2018 Google LLC
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
diff --git a/CHANGELOG.md b/CHANGELOG.md
index 1665bf3f..72d8fc15 100644
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -1,5 +1,14 @@
# Changelog
+### [0.122.5](https://www.github.com/googleapis/java-errorreporting/compare/v0.122.4...v0.122.5) (2021-09-16)
+
+
+### Dependencies
+
+* update dependency com.google.cloud:google-cloud-core to v2.1.3 ([#675](https://www.github.com/googleapis/java-errorreporting/issues/675)) ([36c2ab4](https://www.github.com/googleapis/java-errorreporting/commit/36c2ab4529955fa8c44fb89c259bc89b6d946ae2))
+* update dependency com.google.cloud:google-cloud-core to v2.1.4 ([#679](https://www.github.com/googleapis/java-errorreporting/issues/679)) ([6b37f9d](https://www.github.com/googleapis/java-errorreporting/commit/6b37f9d6013c801ae63cb26005ccebadce2f3ec0))
+* update dependency com.google.cloud:google-cloud-shared-dependencies to v2.2.1 ([#676](https://www.github.com/googleapis/java-errorreporting/issues/676)) ([d646032](https://www.github.com/googleapis/java-errorreporting/commit/d646032ebb89b56c5464fb44533529962089cd0a))
+
### [0.122.4](https://www.github.com/googleapis/java-errorreporting/compare/v0.122.3...v0.122.4) (2021-08-31)
diff --git a/README.md b/README.md
index 5dfd2c9e..0887a5d4 100644
--- a/README.md
+++ b/README.md
@@ -22,7 +22,7 @@ If you are using Maven with [BOM][libraries-bom], add this to your pom.xml file
com.google.cloud
libraries-bom
- 22.0.0
+ 23.0.0
pom
import
@@ -63,7 +63,7 @@ If you are using Maven without BOM, add this to your dependencies:
com.google.cloud
google-cloud-errorreporting
- 0.122.3-beta
+ 0.122.4-beta
```
diff --git a/google-cloud-errorreporting-bom/pom.xml b/google-cloud-errorreporting-bom/pom.xml
index 60df3356..85d72d05 100644
--- a/google-cloud-errorreporting-bom/pom.xml
+++ b/google-cloud-errorreporting-bom/pom.xml
@@ -3,7 +3,7 @@
4.0.0
com.google.cloud
google-cloud-errorreporting-bom
- 0.122.5-beta-SNAPSHOT
+ 0.122.5-beta
pom
com.google.cloud
@@ -52,17 +52,17 @@
com.google.cloud
google-cloud-errorreporting
- 0.122.5-beta-SNAPSHOT
+ 0.122.5-beta
com.google.api.grpc
grpc-google-cloud-error-reporting-v1beta1
- 0.88.5-SNAPSHOT
+ 0.88.5
com.google.api.grpc
proto-google-cloud-error-reporting-v1beta1
- 0.88.5-SNAPSHOT
+ 0.88.5