Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Forward errors from gcd.sh #250

Merged
merged 11 commits into from
Oct 16, 2015
Merged

Conversation

ajkannan
Copy link

Fixes #38

@ajkannan ajkannan added the api: datastore Issues related to the Datastore API. label Oct 13, 2015
@googlebot googlebot added the cla: yes This human has signed the Contributor License Agreement. label Oct 13, 2015
@ajkannan
Copy link
Author

Note: this will forward errors from gcd.sh even if the operation is retried and it succeeds. For example, when I run DatastoreTests using these changes, I get some "SEVERE" level errors from gcd.sh ("too much contention on entities" errors that are probably caused by repeatedly adding/removing the same entities in a very short amount of time) that are then retried and fine. Do we think it's alright to forward this kind of message along to the user?

@aozarov
Copy link
Contributor

aozarov commented Oct 13, 2015

I get some "SEVERE" level errors from gcd.sh ("too much contention on entities" errors that are probably caused by repeatedly adding/removing the same entities in a very short amount of time) that are then retried and fine

@eddavisson any reason for this messages? When we start gcd.sh in our tests we would like to re-direct
any real errors but rather avoid such noise if possible.

@eddavisson
Copy link

The local v1 service recently added some internal retry logic for non-transactional commits. The logging code (somewhere in ApiProxy?) doesn't know if the error will be propagated to the user or caught and retried. In the latter case, the user doesn't need to worry about the errors; in the former, they do (though of course, it'll be sent back to the client in that case).

@aozarov
Copy link
Contributor

aozarov commented Oct 13, 2015

@eddavisson I am not sure why we ever log it. If we retry and it is not a real-issue then we shouldn't log (especially not as SEVERE) and if we propagate the user will know about the error (and may log it too).

Any plans to change that? If not, any advice on what we should "filter" in our code. When we start the gcd.sh using our utility we would like to capture and log "real" errors.

@eddavisson
Copy link

I looked at this again, and I think it's actually the app we run inside of gcd.sh that's doing the logging. That's happens a few layers above our internal retries, so I would expect any error logged to be returned to the client. @ajkannan, were you seeing errors logged that weren't returned to the client?

@pcostell is working on a new version of gcd that doesn't use an internal app, so it'll be a lot easier to make the logging do exactly what we want. Until then, we can remove the SEVERE log, but we will still log any error at INFO level.

@ajkannan
Copy link
Author

@eddavisson I did indeed see some errors logged that weren't returned to the client, for example some of those SEVERE errors complaining about "too much contention on entities." I could just ignore SEVERE logs, but I sometimes get the "too much contention on entities" error at the INFO level as well. Maybe the INFO-level errors show up when datastore gives up and our library retries? (I can do some investigating here)

@eddavisson
Copy link

We have some duplicate INFO/SEVERE logging; I will send you a CL shortly to resolve that. When you say "weren't returned to the client", is that because gcloud-java retries or because gcd is doing an internal retry? Are you seeing logging from classes other than com.google.apphosting.client.serviceapp.BaseApiServlet?

@ajkannan
Copy link
Author

All the logs I see are indeed from com.google.apphosting.client.serviceapp.BaseApiServlet. Just to clarify what I meant by "weren't returned to the client," I was seeing some severe-level log messages without an accompanying error/stack trace being output. (If that isn't what you weren't talking about, let me know). Now that I look at them again, those log messages do indeed look like duplicates of INFO-level logs.

After digging a bit deeper, in all my test runs thus far, I'm only getting the "too much contention on entities" error when the request is aborted by the datastore and subsequently retried by gcloud-java. So it looks like the extra errors problem is something we'll have to handle on the gcloud-java end.

Thanks for your help!

@ajkannan
Copy link
Author

@aozarov Since the only error I've come across that we don't want to forward to the user is the "too much contention" error, I can check for that and not print to stderr if so. I can imagine edge cases where the user may want to know about contention (maybe for performance reasons), but I imagine they can figure that information out from setting the retry parameters and watching for/handling exceptions using the gcloud-java libraries. What's your opinion?

Also (somewhat unrelated), in DatastoreTests, we purposely incite exceptions (i.e. adding an entity that already exists in the datastore). Those show up as in the stderr output when running DatastoreTests using LocalGcdHelper. We don't release our unit tests via Maven artifact, but if users happen to download and use the Github project, they would see those errors if they were to run the unit tests. I don't necessarily think it's a problem to fix, but what's your opinion on this?

In terms of the actual output, I plan on printing the "INFO: ..." error lines from gcd.sh, followed by the first line of the stack trace (which contains the more helpful information, for example "entity already exists"). The rest of the stack trace is long and doesn't really provide much information, so I think we should leave that out. Does that sound okay?

@aozarov
Copy link
Contributor

aozarov commented Oct 13, 2015

After @eddavisson fix will we still see the contention warnings as CRITICAL?

Did you consider trying to parse the lines and, when you can detect redirect to the logger using the same level that was detected (and would be nice if you remove the level, so it would not be printed twice and maybe prefix the message with GCD or something like that).

That way a user would be able to filter any undesired messages by using the desired log level to this class.

@ajkannan
Copy link
Author

I think @eddavisson's fix logs contention errors at INFO level, like all other errors logged by gcd (correct me if I'm wrong).

Also the logging idea sgtm, I'll implement that.

@aozarov
Copy link
Contributor

aozarov commented Oct 13, 2015

Ok, re-edited my comment to say "we we still see"...
Good, then I think with that fix and with log redirecting we are good.
let me know if you see any more [potential] issues...

@ajkannan
Copy link
Author

Oh, I see what your question was asking originally. I think we will still see SEVERE level duplicate logs until the next gcd version is released.

@ajkannan
Copy link
Author

@aozarov logging is implemented and ready for review.

}
return "GCD ";
} else if (currentLine.startsWith("SEVERE: ")) {
return null; // Don't show duplicate error messages from gcd.sh

This comment was marked as spam.

@ajkannan
Copy link
Author

@aozarov Comments addressed, ready for another round of review.

}

void terminate() throws IOException {
reader.close();

This comment was marked as spam.

aozarov added a commit that referenced this pull request Oct 16, 2015
@aozarov aozarov merged commit 03dbc8c into googleapis:master Oct 16, 2015
@ajkannan ajkannan deleted the forward-errors branch October 22, 2015 17:27
github-actions bot pushed a commit that referenced this pull request Jun 23, 2022
…cies to v2.13.0 (#250)

[![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:google-cloud-shared-dependencies](https://github.com/googleapis/java-shared-dependencies) | `2.12.0` -> `2.13.0` | [![age](https://badges.renovateapi.com/packages/maven/com.google.cloud:google-cloud-shared-dependencies/2.13.0/age-slim)](https://docs.renovatebot.com/merge-confidence/) | [![adoption](https://badges.renovateapi.com/packages/maven/com.google.cloud:google-cloud-shared-dependencies/2.13.0/adoption-slim)](https://docs.renovatebot.com/merge-confidence/) | [![passing](https://badges.renovateapi.com/packages/maven/com.google.cloud:google-cloud-shared-dependencies/2.13.0/compatibility-slim/2.12.0)](https://docs.renovatebot.com/merge-confidence/) | [![confidence](https://badges.renovateapi.com/packages/maven/com.google.cloud:google-cloud-shared-dependencies/2.13.0/confidence-slim/2.12.0)](https://docs.renovatebot.com/merge-confidence/) |

---

### Release Notes

<details>
<summary>googleapis/java-shared-dependencies</summary>

### [`v2.13.0`](https://github.com/googleapis/java-shared-dependencies/blob/HEAD/CHANGELOG.md#&#8203;2130-httpsgithubcomgoogleapisjava-shared-dependenciescomparev2120v2130-2022-06-22)

[Compare Source](https://github.com/googleapis/java-shared-dependencies/compare/v2.12.0...v2.13.0)

##### Dependencies

-   update dependency com.google.api-client:google-api-client-bom to v1.35.0 ([#&#8203;709](https://github.com/googleapis/java-shared-dependencies/issues/709)) ([239f8c3](https://github.com/googleapis/java-shared-dependencies/commit/239f8c33a11e233e6af79aee8c7e68cd156a0554))
-   update dependency com.google.api-client:google-api-client-bom to v1.35.1 ([#&#8203;713](https://github.com/googleapis/java-shared-dependencies/issues/713)) ([6559b45](https://github.com/googleapis/java-shared-dependencies/commit/6559b45b027dba783a9525d35e32183d78773cbe))
-   update dependency com.google.api:api-common to v2.2.1 ([#&#8203;710](https://github.com/googleapis/java-shared-dependencies/issues/710)) ([650d4c5](https://github.com/googleapis/java-shared-dependencies/commit/650d4c5f8c3cfce711257d47280ad773cd2e2414))
-   update dependency com.google.errorprone:error_prone_annotations to v2.14.0 ([#&#8203;701](https://github.com/googleapis/java-shared-dependencies/issues/701)) ([d24730f](https://github.com/googleapis/java-shared-dependencies/commit/d24730f78669f80b109e590b903446e5552e3e36))
-   update dependency com.google.http-client:google-http-client-bom to v1.42.0 ([#&#8203;711](https://github.com/googleapis/java-shared-dependencies/issues/711)) ([5168a18](https://github.com/googleapis/java-shared-dependencies/commit/5168a181722128d434a0d0d2ab5cc485686bbc78))
-   update dependency com.google.oauth-client:google-oauth-client-bom to v1.34.0 ([#&#8203;708](https://github.com/googleapis/java-shared-dependencies/issues/708)) ([620336e](https://github.com/googleapis/java-shared-dependencies/commit/620336e6733e2017116e5e8a7b403b183a728bc1))
-   update dependency com.google.oauth-client:google-oauth-client-bom to v1.34.1 ([#&#8203;712](https://github.com/googleapis/java-shared-dependencies/issues/712)) ([a2c18a5](https://github.com/googleapis/java-shared-dependencies/commit/a2c18a5bc4152cc9034cec691a29f54a35c38a51))
-   update dependency com.google.protobuf:protobuf-bom to v3.21.0 ([#&#8203;703](https://github.com/googleapis/java-shared-dependencies/issues/703)) ([5f9fe12](https://github.com/googleapis/java-shared-dependencies/commit/5f9fe1200b4bdf4c54bf947c21bd3ed02f26f990))
-   update dependency com.google.protobuf:protobuf-bom to v3.21.1 ([#&#8203;705](https://github.com/googleapis/java-shared-dependencies/issues/705)) ([c68edfb](https://github.com/googleapis/java-shared-dependencies/commit/c68edfbe7e1993e1112640b867b29aa2fbcf7579))
-   update dependency io.grpc:grpc-bom to v1.47.0 ([#&#8203;707](https://github.com/googleapis/java-shared-dependencies/issues/707)) ([d02918a](https://github.com/googleapis/java-shared-dependencies/commit/d02918a0418cd65d1d247f27afb0637f1f8f5666))
-   update dependency org.checkerframework:checker-qual to v3.22.1 ([#&#8203;706](https://github.com/googleapis/java-shared-dependencies/issues/706)) ([545843b](https://github.com/googleapis/java-shared-dependencies/commit/545843b492cead230b8cc72a1dae7d4922f33b39))
-   update dependency org.checkerframework:checker-qual to v3.22.2 ([#&#8203;717](https://github.com/googleapis/java-shared-dependencies/issues/717)) ([142852a](https://github.com/googleapis/java-shared-dependencies/commit/142852a37140f221197f5c71aed451def353b1e0))
-   update gax.version to v2.18.2 ([#&#8203;718](https://github.com/googleapis/java-shared-dependencies/issues/718)) ([5f8156e](https://github.com/googleapis/java-shared-dependencies/commit/5f8156e55c6a07b018a8c5efafa68be781b4288b))
-   update google.common-protos.version to v2.9.0 ([#&#8203;714](https://github.com/googleapis/java-shared-dependencies/issues/714)) ([9e5591e](https://github.com/googleapis/java-shared-dependencies/commit/9e5591ec3035350450ecbfebd00e08216433b06c))
-   update google.core.version to v2.8.0 ([#&#8203;719](https://github.com/googleapis/java-shared-dependencies/issues/719)) ([4023c60](https://github.com/googleapis/java-shared-dependencies/commit/4023c6063a2c5b5308da531df1a08c90c491965d))
-   update iam.version to v1.4.0 ([#&#8203;700](https://github.com/googleapis/java-shared-dependencies/issues/700)) ([c1097a4](https://github.com/googleapis/java-shared-dependencies/commit/c1097a46ab0739b0b7234bc510e4c3d9ce2c2861))
-   update iam.version to v1.4.1 ([#&#8203;716](https://github.com/googleapis/java-shared-dependencies/issues/716)) ([e2dc7c2](https://github.com/googleapis/java-shared-dependencies/commit/e2dc7c21c39e007878841e2664d548ec44a72d54))

</details>

---

### 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**: 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.

---

 - [ ] <!-- rebase-check -->If you want to rebase/retry this PR, click this checkbox.

---

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-service-management).
github-actions bot pushed a commit that referenced this pull request Jun 23, 2022
🤖 I have created a release *beep* *boop*
---


## [3.1.1](googleapis/java-service-management@v3.1.0...v3.1.1) (2022-06-23)


### Dependencies

* update dependency com.google.cloud:google-cloud-shared-dependencies to v2.13.0 ([#250](googleapis/java-service-management#250)) ([97bdb7d](googleapis/java-service-management@97bdb7d))

---
This PR was generated with [Release Please](https://github.com/googleapis/release-please). See [documentation](https://github.com/googleapis/release-please#release-please).
github-actions bot pushed a commit that referenced this pull request Jun 23, 2022
- [ ] Regenerate this pull request now.

PiperOrigin-RevId: 456641589

Source-Link: googleapis/googleapis@8a251f5

Source-Link: googleapis/googleapis-gen@4ca52a5
Copy-Tag: eyJwIjoiLmdpdGh1Yi8uT3dsQm90LnlhbWwiLCJoIjoiNGNhNTJhNTI5Y2YwMTMwOGQ5NzE0OTUwZWRmZmJlYTM1NjBjZmJkYiJ9
github-actions bot pushed a commit to suztomo/google-cloud-java that referenced this pull request Jun 29, 2022
…e-admin to v2.3.1 (googleapis#250)

[![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:google-cloud-appengine-admin](https://github.com/googleapis/java-appengine-admin) | `2.3.0` -> `2.3.1` | [![age](https://badges.renovateapi.com/packages/maven/com.google.cloud:google-cloud-appengine-admin/2.3.1/age-slim)](https://docs.renovatebot.com/merge-confidence/) | [![adoption](https://badges.renovateapi.com/packages/maven/com.google.cloud:google-cloud-appengine-admin/2.3.1/adoption-slim)](https://docs.renovatebot.com/merge-confidence/) | [![passing](https://badges.renovateapi.com/packages/maven/com.google.cloud:google-cloud-appengine-admin/2.3.1/compatibility-slim/2.3.0)](https://docs.renovatebot.com/merge-confidence/) | [![confidence](https://badges.renovateapi.com/packages/maven/com.google.cloud:google-cloud-appengine-admin/2.3.1/confidence-slim/2.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 these updates again.

---

 - [ ] <!-- rebase-check -->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-appengine-admin).
github-actions bot pushed a commit that referenced this pull request Jul 1, 2022
gcr.io/repo-automation-bots/owlbot-java:latest@sha256:42de7b29a5bc381bef6a718722beb3eb641a4c26ad0e269d72c5328a0a63e520
github-actions bot pushed a commit that referenced this pull request Jul 1, 2022
Making CLIRR not required. The version bumps are now controlled by the Release Please and OwlBot. The CL authors create appropriate change description to control major version bumps.
github-actions bot pushed a commit to suztomo/google-cloud-java that referenced this pull request Jul 1, 2022
🤖 I have created a release *beep* *boop*
---


## [2.4.0](googleapis/java-dataproc-metastore@v2.3.1...v2.4.0) (2022-07-01)


### Features

* Enable REST transport for most of Java and Go clients ([googleapis#250](googleapis/java-dataproc-metastore#250)) ([9055882](googleapis/java-dataproc-metastore@9055882))


### Bug Fixes

* update gapic-generator-java with mock service generation fixes ([googleapis#256](googleapis/java-dataproc-metastore#256)) ([cfee04c](googleapis/java-dataproc-metastore@cfee04c))

---
This PR was generated with [Release Please](https://github.com/googleapis/release-please). See [documentation](https://github.com/googleapis/release-please#release-please).
github-actions bot pushed a commit that referenced this pull request Jul 14, 2022
…usage to v2.3.1 (#250)

* chore(deps): update dependency com.google.cloud:google-cloud-service-usage to v2.3.1

* 🦉 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 <gcf-owl-bot[bot]@users.noreply.github.com>
github-actions bot pushed a commit that referenced this pull request Jul 14, 2022
Source-Link: googleapis/synthtool@7336562
Post-Processor: gcr.io/cloud-devrel-public-resources/owlbot-java:latest@sha256:d4b80feffe1579818cdc39466152e9de95789a193408506cd4a1ffbe8804dc00
github-actions bot pushed a commit that referenced this pull request Jul 14, 2022
Source-Link: googleapis/synthtool@7336562
Post-Processor: gcr.io/cloud-devrel-public-resources/owlbot-java:latest@sha256:d4b80feffe1579818cdc39466152e9de95789a193408506cd4a1ffbe8804dc00
github-actions bot pushed a commit that referenced this pull request Aug 9, 2022
…cies to v3 (#250)

[![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:google-cloud-shared-dependencies](https://github.com/googleapis/java-shared-dependencies) | `2.13.0` -> `3.0.1` | [![age](https://badges.renovateapi.com/packages/maven/com.google.cloud:google-cloud-shared-dependencies/3.0.1/age-slim)](https://docs.renovatebot.com/merge-confidence/) | [![adoption](https://badges.renovateapi.com/packages/maven/com.google.cloud:google-cloud-shared-dependencies/3.0.1/adoption-slim)](https://docs.renovatebot.com/merge-confidence/) | [![passing](https://badges.renovateapi.com/packages/maven/com.google.cloud:google-cloud-shared-dependencies/3.0.1/compatibility-slim/2.13.0)](https://docs.renovatebot.com/merge-confidence/) | [![confidence](https://badges.renovateapi.com/packages/maven/com.google.cloud:google-cloud-shared-dependencies/3.0.1/confidence-slim/2.13.0)](https://docs.renovatebot.com/merge-confidence/) |

---

### Release Notes

<details>
<summary>googleapis/java-shared-dependencies</summary>

### [`v3.0.1`](https://github.com/googleapis/java-shared-dependencies/blob/HEAD/CHANGELOG.md#&#8203;301-httpsgithubcomgoogleapisjava-shared-dependenciescomparev300v301-2022-08-02)

[Compare Source](https://github.com/googleapis/java-shared-dependencies/compare/v3.0.0...v3.0.1)

##### Dependencies

-   update dependency com.google.code.gson:gson to v2.9.1 ([#&#8203;766](https://github.com/googleapis/java-shared-dependencies/issues/766)) ([f7b2b06](https://github.com/googleapis/java-shared-dependencies/commit/f7b2b06b80e3e95ff8ab9b1d6a2638ef3069298a))
-   update gax.version to v2.18.7 ([#&#8203;767](https://github.com/googleapis/java-shared-dependencies/issues/767)) ([9650368](https://github.com/googleapis/java-shared-dependencies/commit/96503682e98cdf348ea2c1365a03a60f4322c712))
-   update google.core.version to v2.8.6 ([#&#8203;770](https://github.com/googleapis/java-shared-dependencies/issues/770)) ([cfd4377](https://github.com/googleapis/java-shared-dependencies/commit/cfd4377dc178cebb4724065d55d185ce03988d55))

### [`v3.0.0`](https://github.com/googleapis/java-shared-dependencies/blob/HEAD/CHANGELOG.md#&#8203;300-httpsgithubcomgoogleapisjava-shared-dependenciescomparev2130v300-2022-07-29)

[Compare Source](https://github.com/googleapis/java-shared-dependencies/compare/v2.13.0...v3.0.0)

##### Bug Fixes

-   enable longpaths support for windows test ([#&#8203;1485](https://github.com/googleapis/java-shared-dependencies/issues/1485)) ([#&#8203;738](https://github.com/googleapis/java-shared-dependencies/issues/738)) ([11bc8f8](https://github.com/googleapis/java-shared-dependencies/commit/11bc8f81f28be88a97fdeafca21724e33638770c))

##### Dependencies

-   update dependency com.google.api-client:google-api-client-bom to v1.35.2 ([#&#8203;729](https://github.com/googleapis/java-shared-dependencies/issues/729)) ([1fa59af](https://github.com/googleapis/java-shared-dependencies/commit/1fa59af80abb9f278f57658c10158567e825fec6))
-   update dependency com.google.api-client:google-api-client-bom to v2 ([#&#8203;746](https://github.com/googleapis/java-shared-dependencies/issues/746)) ([2dcb2e0](https://github.com/googleapis/java-shared-dependencies/commit/2dcb2e071e0ba0eea21bb575bd13cd559d4a1ca6))
-   update dependency com.google.api.grpc:grpc-google-common-protos to v2.9.2 ([#&#8203;741](https://github.com/googleapis/java-shared-dependencies/issues/741)) ([3352d6c](https://github.com/googleapis/java-shared-dependencies/commit/3352d6c36111c04e3f6f3e6360470fa3efb10d8f))
-   update dependency com.google.auth:google-auth-library-bom to v1.8.0 ([#&#8203;726](https://github.com/googleapis/java-shared-dependencies/issues/726)) ([2c5d64c](https://github.com/googleapis/java-shared-dependencies/commit/2c5d64c127db8384e49113acfeac6928716a2d7f))
-   update dependency com.google.auth:google-auth-library-bom to v1.8.1 ([#&#8203;742](https://github.com/googleapis/java-shared-dependencies/issues/742)) ([4f53527](https://github.com/googleapis/java-shared-dependencies/commit/4f53527bda7f40896711b7c1d1c02453321ffbc8))
-   update dependency com.google.cloud:first-party-dependencies to v2 ([#&#8203;747](https://github.com/googleapis/java-shared-dependencies/issues/747)) ([e970ac0](https://github.com/googleapis/java-shared-dependencies/commit/e970ac0599941c825dc2516146a7c6673e68a9b9))
-   update dependency com.google.cloud:grpc-gcp to v1.2.1 ([#&#8203;751](https://github.com/googleapis/java-shared-dependencies/issues/751)) ([b3284b6](https://github.com/googleapis/java-shared-dependencies/commit/b3284b6ee52a96a6ea8696a05a94443df9ee5b9f))
-   update dependency com.google.cloud:third-party-dependencies to v2 ([#&#8203;748](https://github.com/googleapis/java-shared-dependencies/issues/748)) ([573b41a](https://github.com/googleapis/java-shared-dependencies/commit/573b41a69504372741cbeb01dd200e7c71967186))
-   update dependency com.google.http-client:google-http-client-bom to v1.42.1 ([#&#8203;730](https://github.com/googleapis/java-shared-dependencies/issues/730)) ([6b47126](https://github.com/googleapis/java-shared-dependencies/commit/6b47126686b603a5d112e097ce6aa3a1880daf6f))
-   update dependency com.google.http-client:google-http-client-bom to v1.42.2 ([#&#8203;749](https://github.com/googleapis/java-shared-dependencies/issues/749)) ([299d7b0](https://github.com/googleapis/java-shared-dependencies/commit/299d7b0d4920644e2c3070d12dd1d97da17a5e88))
-   update dependency com.google.protobuf:protobuf-bom to v3.21.2 ([#&#8203;722](https://github.com/googleapis/java-shared-dependencies/issues/722)) ([7a96b12](https://github.com/googleapis/java-shared-dependencies/commit/7a96b1259a526b63e9376fd6cc18b27cddeb5f0f))
-   update dependency com.google.protobuf:protobuf-bom to v3.21.3 ([#&#8203;756](https://github.com/googleapis/java-shared-dependencies/issues/756)) ([3d0bac2](https://github.com/googleapis/java-shared-dependencies/commit/3d0bac23487aebb94267c0708f41ff6c02a028a4))
-   update dependency com.google.protobuf:protobuf-bom to v3.21.4 ([#&#8203;759](https://github.com/googleapis/java-shared-dependencies/issues/759)) ([5a54ef1](https://github.com/googleapis/java-shared-dependencies/commit/5a54ef1a2d56244166d4fcc46041d62c0dc4b411))
-   update dependency io.grpc:grpc-bom to v1.48.0 ([#&#8203;752](https://github.com/googleapis/java-shared-dependencies/issues/752)) ([20ac908](https://github.com/googleapis/java-shared-dependencies/commit/20ac908932a5e7c8e581bdfcd68579d7e1cedd5f))
-   update dependency org.checkerframework:checker-qual to v3.23.0 ([#&#8203;736](https://github.com/googleapis/java-shared-dependencies/issues/736)) ([fc01d8f](https://github.com/googleapis/java-shared-dependencies/commit/fc01d8f93f391f12fdb800d5006f0b4505832eeb))
-   update gax.version to v2.18.3 ([#&#8203;731](https://github.com/googleapis/java-shared-dependencies/issues/731)) ([e8ee554](https://github.com/googleapis/java-shared-dependencies/commit/e8ee554707acb2f71c739d08e2ff02fbe43ffa52))
-   update gax.version to v2.18.4 ([#&#8203;735](https://github.com/googleapis/java-shared-dependencies/issues/735)) ([11c7415](https://github.com/googleapis/java-shared-dependencies/commit/11c74152a84697924de3a0e838b05f606c3098f7))
-   update gax.version to v2.18.5 ([#&#8203;758](https://github.com/googleapis/java-shared-dependencies/issues/758)) ([7469fc1](https://github.com/googleapis/java-shared-dependencies/commit/7469fc1cc5095b39a5738e60156711a268f6e052))
-   update gax.version to v2.18.6 ([#&#8203;763](https://github.com/googleapis/java-shared-dependencies/issues/763)) ([b5ca2f7](https://github.com/googleapis/java-shared-dependencies/commit/b5ca2f7b4d81c705823253f4f03363a32d2be48b))
-   update google.common-protos.version to v2.9.1 ([#&#8203;724](https://github.com/googleapis/java-shared-dependencies/issues/724)) ([5213dbb](https://github.com/googleapis/java-shared-dependencies/commit/5213dbbfa9c9b73d2420ec2be7782f16c9c4955f))
-   update google.core.version to v2.8.1 ([#&#8203;725](https://github.com/googleapis/java-shared-dependencies/issues/725)) ([575858a](https://github.com/googleapis/java-shared-dependencies/commit/575858a60f76e46bbc2a2435c2b6c01c8f4ab681))
-   update google.core.version to v2.8.3 ([#&#8203;760](https://github.com/googleapis/java-shared-dependencies/issues/760)) ([cb10ae4](https://github.com/googleapis/java-shared-dependencies/commit/cb10ae4b76939215ea465af74163b3d4ad65a548))
-   update google.core.version to v2.8.4 ([#&#8203;762](https://github.com/googleapis/java-shared-dependencies/issues/762)) ([821daaf](https://github.com/googleapis/java-shared-dependencies/commit/821daafefdbcfdfe6e363e580747538096a562ef))
-   update google.core.version to v2.8.5 ([#&#8203;764](https://github.com/googleapis/java-shared-dependencies/issues/764)) ([a1f8f50](https://github.com/googleapis/java-shared-dependencies/commit/a1f8f501b54143a2cec8e72efd4ceb3ce47f13ae))
-   update iam.version to v1.5.0 ([#&#8203;732](https://github.com/googleapis/java-shared-dependencies/issues/732)) ([9dce0e5](https://github.com/googleapis/java-shared-dependencies/commit/9dce0e5199c1e425119adc804304958f58003a27))
-   update iam.version to v1.5.1 ([#&#8203;737](https://github.com/googleapis/java-shared-dependencies/issues/737)) ([df39168](https://github.com/googleapis/java-shared-dependencies/commit/df391685d42fcb1b04f03ab1380a594893bdce37))
-   update iam.version to v1.5.2 ([#&#8203;743](https://github.com/googleapis/java-shared-dependencies/issues/743)) ([cdde697](https://github.com/googleapis/java-shared-dependencies/commit/cdde697f25a89fc8c2ec7eae6b7c54f69977bb1c))

</details>

---

### 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**: 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.

---

 - [ ] <!-- rebase-check -->If you want to rebase/retry this PR, click this checkbox.

---

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-dms).
<!--renovate-debug:eyJjcmVhdGVkSW5WZXIiOiIzMi4xMjcuNCIsInVwZGF0ZWRJblZlciI6IjMyLjEzNS4xIn0=-->
github-actions bot pushed a commit that referenced this pull request Aug 9, 2022
…cies to v3 (#250)

[![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:google-cloud-shared-dependencies](https://github.com/googleapis/java-shared-dependencies) | `2.13.0` -> `3.0.1` | [![age](https://badges.renovateapi.com/packages/maven/com.google.cloud:google-cloud-shared-dependencies/3.0.1/age-slim)](https://docs.renovatebot.com/merge-confidence/) | [![adoption](https://badges.renovateapi.com/packages/maven/com.google.cloud:google-cloud-shared-dependencies/3.0.1/adoption-slim)](https://docs.renovatebot.com/merge-confidence/) | [![passing](https://badges.renovateapi.com/packages/maven/com.google.cloud:google-cloud-shared-dependencies/3.0.1/compatibility-slim/2.13.0)](https://docs.renovatebot.com/merge-confidence/) | [![confidence](https://badges.renovateapi.com/packages/maven/com.google.cloud:google-cloud-shared-dependencies/3.0.1/confidence-slim/2.13.0)](https://docs.renovatebot.com/merge-confidence/) |

---

### Release Notes

<details>
<summary>googleapis/java-shared-dependencies</summary>

### [`v3.0.1`](https://github.com/googleapis/java-shared-dependencies/blob/HEAD/CHANGELOG.md#&#8203;301-httpsgithubcomgoogleapisjava-shared-dependenciescomparev300v301-2022-08-02)

[Compare Source](https://github.com/googleapis/java-shared-dependencies/compare/v3.0.0...v3.0.1)

##### Dependencies

-   update dependency com.google.code.gson:gson to v2.9.1 ([#&#8203;766](https://github.com/googleapis/java-shared-dependencies/issues/766)) ([f7b2b06](https://github.com/googleapis/java-shared-dependencies/commit/f7b2b06b80e3e95ff8ab9b1d6a2638ef3069298a))
-   update gax.version to v2.18.7 ([#&#8203;767](https://github.com/googleapis/java-shared-dependencies/issues/767)) ([9650368](https://github.com/googleapis/java-shared-dependencies/commit/96503682e98cdf348ea2c1365a03a60f4322c712))
-   update google.core.version to v2.8.6 ([#&#8203;770](https://github.com/googleapis/java-shared-dependencies/issues/770)) ([cfd4377](https://github.com/googleapis/java-shared-dependencies/commit/cfd4377dc178cebb4724065d55d185ce03988d55))

### [`v3.0.0`](https://github.com/googleapis/java-shared-dependencies/blob/HEAD/CHANGELOG.md#&#8203;300-httpsgithubcomgoogleapisjava-shared-dependenciescomparev2130v300-2022-07-29)

[Compare Source](https://github.com/googleapis/java-shared-dependencies/compare/v2.13.0...v3.0.0)

##### Bug Fixes

-   enable longpaths support for windows test ([#&#8203;1485](https://github.com/googleapis/java-shared-dependencies/issues/1485)) ([#&#8203;738](https://github.com/googleapis/java-shared-dependencies/issues/738)) ([11bc8f8](https://github.com/googleapis/java-shared-dependencies/commit/11bc8f81f28be88a97fdeafca21724e33638770c))

##### Dependencies

-   update dependency com.google.api-client:google-api-client-bom to v1.35.2 ([#&#8203;729](https://github.com/googleapis/java-shared-dependencies/issues/729)) ([1fa59af](https://github.com/googleapis/java-shared-dependencies/commit/1fa59af80abb9f278f57658c10158567e825fec6))
-   update dependency com.google.api-client:google-api-client-bom to v2 ([#&#8203;746](https://github.com/googleapis/java-shared-dependencies/issues/746)) ([2dcb2e0](https://github.com/googleapis/java-shared-dependencies/commit/2dcb2e071e0ba0eea21bb575bd13cd559d4a1ca6))
-   update dependency com.google.api.grpc:grpc-google-common-protos to v2.9.2 ([#&#8203;741](https://github.com/googleapis/java-shared-dependencies/issues/741)) ([3352d6c](https://github.com/googleapis/java-shared-dependencies/commit/3352d6c36111c04e3f6f3e6360470fa3efb10d8f))
-   update dependency com.google.auth:google-auth-library-bom to v1.8.0 ([#&#8203;726](https://github.com/googleapis/java-shared-dependencies/issues/726)) ([2c5d64c](https://github.com/googleapis/java-shared-dependencies/commit/2c5d64c127db8384e49113acfeac6928716a2d7f))
-   update dependency com.google.auth:google-auth-library-bom to v1.8.1 ([#&#8203;742](https://github.com/googleapis/java-shared-dependencies/issues/742)) ([4f53527](https://github.com/googleapis/java-shared-dependencies/commit/4f53527bda7f40896711b7c1d1c02453321ffbc8))
-   update dependency com.google.cloud:first-party-dependencies to v2 ([#&#8203;747](https://github.com/googleapis/java-shared-dependencies/issues/747)) ([e970ac0](https://github.com/googleapis/java-shared-dependencies/commit/e970ac0599941c825dc2516146a7c6673e68a9b9))
-   update dependency com.google.cloud:grpc-gcp to v1.2.1 ([#&#8203;751](https://github.com/googleapis/java-shared-dependencies/issues/751)) ([b3284b6](https://github.com/googleapis/java-shared-dependencies/commit/b3284b6ee52a96a6ea8696a05a94443df9ee5b9f))
-   update dependency com.google.cloud:third-party-dependencies to v2 ([#&#8203;748](https://github.com/googleapis/java-shared-dependencies/issues/748)) ([573b41a](https://github.com/googleapis/java-shared-dependencies/commit/573b41a69504372741cbeb01dd200e7c71967186))
-   update dependency com.google.http-client:google-http-client-bom to v1.42.1 ([#&#8203;730](https://github.com/googleapis/java-shared-dependencies/issues/730)) ([6b47126](https://github.com/googleapis/java-shared-dependencies/commit/6b47126686b603a5d112e097ce6aa3a1880daf6f))
-   update dependency com.google.http-client:google-http-client-bom to v1.42.2 ([#&#8203;749](https://github.com/googleapis/java-shared-dependencies/issues/749)) ([299d7b0](https://github.com/googleapis/java-shared-dependencies/commit/299d7b0d4920644e2c3070d12dd1d97da17a5e88))
-   update dependency com.google.protobuf:protobuf-bom to v3.21.2 ([#&#8203;722](https://github.com/googleapis/java-shared-dependencies/issues/722)) ([7a96b12](https://github.com/googleapis/java-shared-dependencies/commit/7a96b1259a526b63e9376fd6cc18b27cddeb5f0f))
-   update dependency com.google.protobuf:protobuf-bom to v3.21.3 ([#&#8203;756](https://github.com/googleapis/java-shared-dependencies/issues/756)) ([3d0bac2](https://github.com/googleapis/java-shared-dependencies/commit/3d0bac23487aebb94267c0708f41ff6c02a028a4))
-   update dependency com.google.protobuf:protobuf-bom to v3.21.4 ([#&#8203;759](https://github.com/googleapis/java-shared-dependencies/issues/759)) ([5a54ef1](https://github.com/googleapis/java-shared-dependencies/commit/5a54ef1a2d56244166d4fcc46041d62c0dc4b411))
-   update dependency io.grpc:grpc-bom to v1.48.0 ([#&#8203;752](https://github.com/googleapis/java-shared-dependencies/issues/752)) ([20ac908](https://github.com/googleapis/java-shared-dependencies/commit/20ac908932a5e7c8e581bdfcd68579d7e1cedd5f))
-   update dependency org.checkerframework:checker-qual to v3.23.0 ([#&#8203;736](https://github.com/googleapis/java-shared-dependencies/issues/736)) ([fc01d8f](https://github.com/googleapis/java-shared-dependencies/commit/fc01d8f93f391f12fdb800d5006f0b4505832eeb))
-   update gax.version to v2.18.3 ([#&#8203;731](https://github.com/googleapis/java-shared-dependencies/issues/731)) ([e8ee554](https://github.com/googleapis/java-shared-dependencies/commit/e8ee554707acb2f71c739d08e2ff02fbe43ffa52))
-   update gax.version to v2.18.4 ([#&#8203;735](https://github.com/googleapis/java-shared-dependencies/issues/735)) ([11c7415](https://github.com/googleapis/java-shared-dependencies/commit/11c74152a84697924de3a0e838b05f606c3098f7))
-   update gax.version to v2.18.5 ([#&#8203;758](https://github.com/googleapis/java-shared-dependencies/issues/758)) ([7469fc1](https://github.com/googleapis/java-shared-dependencies/commit/7469fc1cc5095b39a5738e60156711a268f6e052))
-   update gax.version to v2.18.6 ([#&#8203;763](https://github.com/googleapis/java-shared-dependencies/issues/763)) ([b5ca2f7](https://github.com/googleapis/java-shared-dependencies/commit/b5ca2f7b4d81c705823253f4f03363a32d2be48b))
-   update google.common-protos.version to v2.9.1 ([#&#8203;724](https://github.com/googleapis/java-shared-dependencies/issues/724)) ([5213dbb](https://github.com/googleapis/java-shared-dependencies/commit/5213dbbfa9c9b73d2420ec2be7782f16c9c4955f))
-   update google.core.version to v2.8.1 ([#&#8203;725](https://github.com/googleapis/java-shared-dependencies/issues/725)) ([575858a](https://github.com/googleapis/java-shared-dependencies/commit/575858a60f76e46bbc2a2435c2b6c01c8f4ab681))
-   update google.core.version to v2.8.3 ([#&#8203;760](https://github.com/googleapis/java-shared-dependencies/issues/760)) ([cb10ae4](https://github.com/googleapis/java-shared-dependencies/commit/cb10ae4b76939215ea465af74163b3d4ad65a548))
-   update google.core.version to v2.8.4 ([#&#8203;762](https://github.com/googleapis/java-shared-dependencies/issues/762)) ([821daaf](https://github.com/googleapis/java-shared-dependencies/commit/821daafefdbcfdfe6e363e580747538096a562ef))
-   update google.core.version to v2.8.5 ([#&#8203;764](https://github.com/googleapis/java-shared-dependencies/issues/764)) ([a1f8f50](https://github.com/googleapis/java-shared-dependencies/commit/a1f8f501b54143a2cec8e72efd4ceb3ce47f13ae))
-   update iam.version to v1.5.0 ([#&#8203;732](https://github.com/googleapis/java-shared-dependencies/issues/732)) ([9dce0e5](https://github.com/googleapis/java-shared-dependencies/commit/9dce0e5199c1e425119adc804304958f58003a27))
-   update iam.version to v1.5.1 ([#&#8203;737](https://github.com/googleapis/java-shared-dependencies/issues/737)) ([df39168](https://github.com/googleapis/java-shared-dependencies/commit/df391685d42fcb1b04f03ab1380a594893bdce37))
-   update iam.version to v1.5.2 ([#&#8203;743](https://github.com/googleapis/java-shared-dependencies/issues/743)) ([cdde697](https://github.com/googleapis/java-shared-dependencies/commit/cdde697f25a89fc8c2ec7eae6b7c54f69977bb1c))

</details>

---

### 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**: 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.

---

 - [ ] <!-- rebase-check -->If you want to rebase/retry this PR, click this checkbox.

---

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-essential-contacts).
<!--renovate-debug:eyJjcmVhdGVkSW5WZXIiOiIzMi4xMjcuNCIsInVwZGF0ZWRJblZlciI6IjMyLjEzNS4xIn0=-->
github-actions bot pushed a commit that referenced this pull request Aug 9, 2022
🤖 I have created a release *beep* *boop*
---


## [2.2.3](googleapis/java-dms@v2.2.2...v2.2.3) (2022-08-09)


### Dependencies

* update dependency com.google.cloud:google-cloud-shared-dependencies to v3 ([#250](googleapis/java-dms#250)) ([c270265](googleapis/java-dms@c270265))

---
This PR was generated with [Release Please](https://github.com/googleapis/release-please). See [documentation](https://github.com/googleapis/release-please#release-please).
github-actions bot pushed a commit that referenced this pull request Aug 9, 2022
🤖 I have created a release *beep* *boop*
---


## [2.3.2](googleapis/java-essential-contacts@v2.3.1...v2.3.2) (2022-08-09)


### Dependencies

* update dependency com.google.cloud:google-cloud-shared-dependencies to v3 ([#250](googleapis/java-essential-contacts#250)) ([62f1180](googleapis/java-essential-contacts@62f1180))

---
This PR was generated with [Release Please](https://github.com/googleapis/release-please). See [documentation](https://github.com/googleapis/release-please#release-please).
github-actions bot pushed a commit that referenced this pull request Aug 9, 2022
🤖 I have created a release *beep* *boop*
---


## [1.2.2](googleapis/java-policy-troubleshooter@v1.2.1...v1.2.2) (2022-08-09)


### Dependencies

* update dependency com.google.cloud:google-cloud-shared-dependencies to v3 ([#248](googleapis/java-policy-troubleshooter#248)) ([99d9df1](googleapis/java-policy-troubleshooter@99d9df1))

---
This PR was generated with [Release Please](https://github.com/googleapis/release-please). See [documentation](https://github.com/googleapis/release-please#release-please).
github-actions bot pushed a commit that referenced this pull request Aug 9, 2022
🤖 I have created a release *beep* *boop*
---


## [1.1.2](googleapis/java-managed-identities@v1.1.1...v1.1.2) (2022-08-02)


### Bug Fixes

* enable longpaths support for windows test ([#1485](https://github.com/googleapis/java-managed-identities/issues/1485)) ([#250](googleapis/java-managed-identities#250)) ([a8178ce](googleapis/java-managed-identities@a8178ce))


### Dependencies

* update dependency com.google.cloud:google-cloud-shared-dependencies to v3 ([#256](googleapis/java-managed-identities#256)) ([e344d94](googleapis/java-managed-identities@e344d94))

---
This PR was generated with [Release Please](https://github.com/googleapis/release-please). See [documentation](https://github.com/googleapis/release-please#release-please).
github-actions bot pushed a commit that referenced this pull request Aug 11, 2022
Co-authored-by: release-please[bot] <55107282+release-please[bot]@users.noreply.github.com>
github-actions bot pushed a commit that referenced this pull request Sep 15, 2022
🤖 I have created a release *beep* *boop*
---


## [2.2.6](googleapis/java-shell@v2.2.5...v2.2.6) (2022-09-15)


### Dependencies

* Update dependency com.google.cloud:google-cloud-shared-dependencies to v3.0.3 ([#249](googleapis/java-shell#249)) ([b6394de](googleapis/java-shell@b6394de))

---
This PR was generated with [Release Please](https://github.com/googleapis/release-please). See [documentation](https://github.com/googleapis/release-please#release-please).
github-actions bot pushed a commit that referenced this pull request Oct 4, 2022
🤖 I have created a release *beep* *boop*
---


## [1.3.7](https://github.com/googleapis/java-eventarc/compare/v1.3.6...v1.3.7) (2022-10-03)


### Dependencies

* Update dependency cachetools to v5 ([#255](https://github.com/googleapis/java-eventarc/issues/255)) ([58c3fc3](https://github.com/googleapis/java-eventarc/commit/58c3fc3df647a7e46950872419ca47f5574a7ffb))
* Update dependency certifi to v2022.9.24 ([#235](https://github.com/googleapis/java-eventarc/issues/235)) ([d3bd89b](https://github.com/googleapis/java-eventarc/commit/d3bd89b211163c07120399f8dd18ed61bbda1720))
* Update dependency charset-normalizer to v2.1.1 ([#239](https://github.com/googleapis/java-eventarc/issues/239)) ([b4f3c24](https://github.com/googleapis/java-eventarc/commit/b4f3c245176541eda51ca5e01630189b34db2e00))
* Update dependency click to v8.1.3 ([#240](https://github.com/googleapis/java-eventarc/issues/240)) ([72c92e1](https://github.com/googleapis/java-eventarc/commit/72c92e1e6dd613b78819e1ae0b00a41b58b60808))
* Update dependency com.google.cloud:google-cloud-shared-dependencies to v3.0.4 ([#260](https://github.com/googleapis/java-eventarc/issues/260)) ([a8ec65e](https://github.com/googleapis/java-eventarc/commit/a8ec65ee199a4696970ea89a77ae4d8ee7698352))
* Update dependency gcp-releasetool to v1.8.8 ([#236](https://github.com/googleapis/java-eventarc/issues/236)) ([5a72be2](https://github.com/googleapis/java-eventarc/commit/5a72be2b9fba295784d359435828db7093047346))
* Update dependency google-api-core to v2.10.1 ([#241](https://github.com/googleapis/java-eventarc/issues/241)) ([a9c5c08](https://github.com/googleapis/java-eventarc/commit/a9c5c08a9742cea5f8b76581c1e8e9bf99c2fef3))
* Update dependency google-auth to v2.12.0 ([#242](https://github.com/googleapis/java-eventarc/issues/242)) ([88203c3](https://github.com/googleapis/java-eventarc/commit/88203c30ca84f93e8800ffefcc2c1934dbec3d1b))
* Update dependency google-cloud-storage to v2.5.0 ([#243](https://github.com/googleapis/java-eventarc/issues/243)) ([2c483e5](https://github.com/googleapis/java-eventarc/commit/2c483e5f8446ba2e49bf02f0d61f80a6e5f8ca94))
* Update dependency google-crc32c to v1.5.0 ([#244](https://github.com/googleapis/java-eventarc/issues/244)) ([8481019](https://github.com/googleapis/java-eventarc/commit/8481019c52cdbae17dac5874175570bfbc3ccb7e))
* Update dependency googleapis-common-protos to v1.56.4 ([#238](https://github.com/googleapis/java-eventarc/issues/238)) ([9cffa48](https://github.com/googleapis/java-eventarc/commit/9cffa4867f665303c05e8b3dcf3b2cb7ea779757))
* Update dependency importlib-metadata to v4.12.0 ([#247](https://github.com/googleapis/java-eventarc/issues/247)) ([ddfa72e](https://github.com/googleapis/java-eventarc/commit/ddfa72ef2a90606f3bf675f14af820c7b9040862))
* Update dependency jeepney to v0.8.0 ([#248](https://github.com/googleapis/java-eventarc/issues/248)) ([7b8105c](https://github.com/googleapis/java-eventarc/commit/7b8105cc30442615cc55ab54c9f0b115c7d3da47))
* Update dependency jinja2 to v3.1.2 ([#249](https://github.com/googleapis/java-eventarc/issues/249)) ([13fc414](https://github.com/googleapis/java-eventarc/commit/13fc414cd663bc0e6854be3a817a58a4b3f42e42))
* Update dependency keyring to v23.9.3 ([#250](https://github.com/googleapis/java-eventarc/issues/250)) ([f217294](https://github.com/googleapis/java-eventarc/commit/f217294a40b08ae4b81774c2252c70dd1a868965))
* Update dependency markupsafe to v2.1.1 ([#245](https://github.com/googleapis/java-eventarc/issues/245)) ([528c832](https://github.com/googleapis/java-eventarc/commit/528c832bcf7f2683e7f7888c18e6642fa66a3477))
* Update dependency protobuf to v4 ([#256](https://github.com/googleapis/java-eventarc/issues/256)) ([c34fc81](https://github.com/googleapis/java-eventarc/commit/c34fc81e3b78342bedf2e9d310693c2d6d8ff6a0))
* Update dependency pyjwt to v2.5.0 ([#251](https://github.com/googleapis/java-eventarc/issues/251)) ([e560449](https://github.com/googleapis/java-eventarc/commit/e5604495b7de3001169bcd04859c6112cc74b9d3))
* Update dependency requests to v2.28.1 ([#252](https://github.com/googleapis/java-eventarc/issues/252)) ([5c9df21](https://github.com/googleapis/java-eventarc/commit/5c9df21feabe58b84a9fdc813c2c91f3c2c99d52))
* Update dependency typing-extensions to v4.3.0 ([#253](https://github.com/googleapis/java-eventarc/issues/253)) ([09059a4](https://github.com/googleapis/java-eventarc/commit/09059a4d0ba7bc3c1a18eefdd1ec19769e46127c))
* Update dependency zipp to v3.8.1 ([#254](https://github.com/googleapis/java-eventarc/issues/254)) ([1b5bcbb](https://github.com/googleapis/java-eventarc/commit/1b5bcbbcf7e06941c661599e04c6d3c114469ed0))

---
This PR was generated with [Release Please](https://github.com/googleapis/release-please). See [documentation](https://github.com/googleapis/release-please#release-please).
github-actions bot pushed a commit that referenced this pull request Oct 4, 2022
- [ ] Regenerate this pull request now.

PiperOrigin-RevId: 477955264

Source-Link: https://github.com/googleapis/googleapis/commit/a724450af76d0001f23602684c49cd6a4b3a5654

Source-Link: https://github.com/googleapis/googleapis-gen/commit/4abcbcaec855e74a0b22a4988cf9e0eb61a83094
Copy-Tag: eyJwIjoiLmdpdGh1Yi8uT3dsQm90LnlhbWwiLCJoIjoiNGFiY2JjYWVjODU1ZTc0YTBiMjJhNDk4OGNmOWUwZWI2MWE4MzA5NCJ9
github-actions bot pushed a commit that referenced this pull request Oct 5, 2022
Co-authored-by: release-please[bot] <55107282+release-please[bot]@users.noreply.github.com>
github-actions bot pushed a commit that referenced this pull request Oct 5, 2022
🤖 I have created a release *beep* *boop*
---


## [2.4.2](https://github.com/googleapis/java-vpcaccess/compare/v2.4.1...v2.4.2) (2022-10-04)


### Dependencies

* Update dependency certifi to v2022.9.24 ([#248](https://github.com/googleapis/java-vpcaccess/issues/248)) ([5b2b929](https://github.com/googleapis/java-vpcaccess/commit/5b2b929b0e9c66d66a3eae0e0cc358dc600a7263))
* Update dependency click to v8.1.3 ([#251](https://github.com/googleapis/java-vpcaccess/issues/251)) ([c1237a1](https://github.com/googleapis/java-vpcaccess/commit/c1237a1785b1024af3f149803dd0b723b52cc492))
* Update dependency com.google.cloud:google-cloud-shared-dependencies to v3.0.4 ([#265](https://github.com/googleapis/java-vpcaccess/issues/265)) ([e02a743](https://github.com/googleapis/java-vpcaccess/commit/e02a743c1ba36a946092d819eae7ee79be769cc8))
* Update dependency google-api-core to v2.10.1 ([#252](https://github.com/googleapis/java-vpcaccess/issues/252)) ([7af82b1](https://github.com/googleapis/java-vpcaccess/commit/7af82b1f9f5acb52d006aed7b5403f1605d12516))
* Update dependency google-auth to v2.11.1 ([#249](https://github.com/googleapis/java-vpcaccess/issues/249)) ([0676437](https://github.com/googleapis/java-vpcaccess/commit/067643731bf77a9e68446b78c9a591149acf2f06))
* Update dependency google-cloud-storage to v2.5.0 ([#253](https://github.com/googleapis/java-vpcaccess/issues/253)) ([751ed61](https://github.com/googleapis/java-vpcaccess/commit/751ed61a1a5911a7ee9551fc3f4da7cc50b70bd2))
* Update dependency google-crc32c to v1.5.0 ([#254](https://github.com/googleapis/java-vpcaccess/issues/254)) ([68579c2](https://github.com/googleapis/java-vpcaccess/commit/68579c2b367fbf8cc9f31e90bdbd6f6e07c6ac60))
* Update dependency googleapis-common-protos to v1.56.4 ([#250](https://github.com/googleapis/java-vpcaccess/issues/250)) ([5e35764](https://github.com/googleapis/java-vpcaccess/commit/5e35764584cb713523012e6c220c7932b8f85e38))
* Update dependency importlib-metadata to v4.12.0 ([#255](https://github.com/googleapis/java-vpcaccess/issues/255)) ([40c7466](https://github.com/googleapis/java-vpcaccess/commit/40c7466b198837c88fe044af49d53fe2274dd0d4))
* Update dependency jeepney to v0.8.0 ([#256](https://github.com/googleapis/java-vpcaccess/issues/256)) ([0f89b33](https://github.com/googleapis/java-vpcaccess/commit/0f89b33cff859bc2586443529a2fa85eb4fa597b))
* Update dependency jinja2 to v3.1.2 ([#263](https://github.com/googleapis/java-vpcaccess/issues/263)) ([75b456f](https://github.com/googleapis/java-vpcaccess/commit/75b456fd38c6767a8ea3148f977c98041ae8bc41))
* Update dependency markupsafe to v2.1.1 ([#257](https://github.com/googleapis/java-vpcaccess/issues/257)) ([3ee1cd9](https://github.com/googleapis/java-vpcaccess/commit/3ee1cd91048b54225b50ca328407f1aa5bb0cf64))
* Update dependency protobuf to v3.20.2 ([#258](https://github.com/googleapis/java-vpcaccess/issues/258)) ([8ae2677](https://github.com/googleapis/java-vpcaccess/commit/8ae267757536a60a682e4abdeb3972123926e2e3))
* Update dependency pyjwt to v2.5.0 ([#259](https://github.com/googleapis/java-vpcaccess/issues/259)) ([671c181](https://github.com/googleapis/java-vpcaccess/commit/671c181a9c549e932ae5c840e65bb291c755dc8b))
* Update dependency requests to v2.28.1 ([#260](https://github.com/googleapis/java-vpcaccess/issues/260)) ([3479841](https://github.com/googleapis/java-vpcaccess/commit/34798413c2c11cbfe14e1ce06c27c6efa48f85a5))
* Update dependency typing-extensions to v4.3.0 ([#261](https://github.com/googleapis/java-vpcaccess/issues/261)) ([506b7f1](https://github.com/googleapis/java-vpcaccess/commit/506b7f115b914c6ad3b5b2a006cab93dbf6eaa36))
* Update dependency zipp to v3.8.1 ([#262](https://github.com/googleapis/java-vpcaccess/issues/262)) ([f04cc47](https://github.com/googleapis/java-vpcaccess/commit/f04cc478d5f8ee23e09dd2c992453bf85a4d396d))

---
This PR was generated with [Release Please](https://github.com/googleapis/release-please). See [documentation](https://github.com/googleapis/release-please#release-please).
github-actions bot pushed a commit to renovate-bot/google-cloud-java that referenced this pull request Oct 5, 2022
github-actions bot pushed a commit that referenced this pull request Nov 9, 2022
…to v2.5.0 (#250)

* deps: update dependency com.google.api.grpc:grpc-google-cloud-tpu-v1 to v2.5.0

* 🦉 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 <gcf-owl-bot[bot]@users.noreply.github.com>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
api: datastore Issues related to the Datastore API. cla: yes This human has signed the Contributor License Agreement.
Projects
None yet
Development

Successfully merging this pull request may close these issues.

4 participants