-
Notifications
You must be signed in to change notification settings - Fork 1.1k
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
Added retryable errors. #700
Conversation
|
||
/** | ||
* DNS service exception. | ||
*/ | ||
public class DnsException extends BaseServiceException { | ||
|
||
// see: https://cloud.google.com/dns/troubleshooting | ||
private static final Set<Error> RETRYABLE_ERRORS = ImmutableSet.of( | ||
new Error(404, null), |
This comment was marked as spam.
This comment was marked as spam.
Sorry, something went wrong.
f022fcb
to
e8620a3
Compare
Looks good. Please get some feedback from the DNS team before merge. |
Can we get some input here? Are there any retryable errors that you know of and we are forgetting? We actually found none except for the 500s. |
The only guidance we've gotten for retries is a 500 or 503 response, and an error message reason for exceeding rate limits. |
Thanks @blowmage, I added the exceeding limits. |
Here are the codes that we use: https://github.com/GoogleCloudPlatform/gcloud-node/blob/058d7623ea3d54c0efc7db4757510fd53eabc492/lib/common/util.js#L271 |
@stephenplusplus 429 is the error code for rateLimitExceeded and userRateLimitExceeded, right? Is there any reason why you are double checking first via code and then via error message? |
This code has been around for a while, so I'm a little rusty on why we went with the specific codes and ways of checking. But, the code check is when a response has the HTTP status code of 429, 500, 502, or 503. The other check isn't actually checking the HTTP status message, but a message that is contained in JSON response body |
Retrying on 500 seems valuable; as this error could indicate a problem On Wed, Mar 2, 2016 at 7:33 PM, Martin Derka notifications@github.com
|
… v0.9.12 (#700) [![Mend Renovate](https://app.renovatebot.com/images/banner.svg)](https://renovatebot.com) This PR contains the following updates: | Package | Change | Age | Adoption | Passing | Confidence | |---|---|---|---|---|---| | [org.graalvm.buildtools:native-maven-plugin](https://togithub.com/graalvm/native-build-tools) | `0.9.11` -> `0.9.12` | [![age](https://badges.renovateapi.com/packages/maven/org.graalvm.buildtools:native-maven-plugin/0.9.12/age-slim)](https://docs.renovatebot.com/merge-confidence/) | [![adoption](https://badges.renovateapi.com/packages/maven/org.graalvm.buildtools:native-maven-plugin/0.9.12/adoption-slim)](https://docs.renovatebot.com/merge-confidence/) | [![passing](https://badges.renovateapi.com/packages/maven/org.graalvm.buildtools:native-maven-plugin/0.9.12/compatibility-slim/0.9.11)](https://docs.renovatebot.com/merge-confidence/) | [![confidence](https://badges.renovateapi.com/packages/maven/org.graalvm.buildtools:native-maven-plugin/0.9.12/confidence-slim/0.9.11)](https://docs.renovatebot.com/merge-confidence/) | --- ### Release Notes <details> <summary>graalvm/native-build-tools</summary> ### [`v0.9.12`](https://togithub.com/graalvm/native-build-tools/releases/tag/0.9.12) [Compare Source](https://togithub.com/graalvm/native-build-tools/compare/0.9.11...0.9.12) #### What's Changed Read what's new in the [documentation](https://graalvm.github.io/native-build-tools/latest/index.html#changelog). - Add Mockito / Byte Buddy support documentation by [@​lazar-mitrovic](https://togithub.com/lazar-mitrovic) in [https://github.com/graalvm/native-build-tools/pull/236](https://togithub.com/graalvm/native-build-tools/pull/236) - Prevent builds from failing if no test list is present by [@​lazar-mitrovic](https://togithub.com/lazar-mitrovic) in [https://github.com/graalvm/native-build-tools/pull/239](https://togithub.com/graalvm/native-build-tools/pull/239) - Support different agent modes in the native-image Gradle plugin by [@​gradinac](https://togithub.com/gradinac) in [https://github.com/graalvm/native-build-tools/pull/230](https://togithub.com/graalvm/native-build-tools/pull/230) - JVM Reachability Metadata support for Maven by [@​alvarosanchez](https://togithub.com/alvarosanchez) in [https://github.com/graalvm/native-build-tools/pull/240](https://togithub.com/graalvm/native-build-tools/pull/240) - Warn about deprecated agent DSL by [@​gradinac](https://togithub.com/gradinac) in [https://github.com/graalvm/native-build-tools/pull/242](https://togithub.com/graalvm/native-build-tools/pull/242) - Rework Maven plugin by [@​lazar-mitrovic](https://togithub.com/lazar-mitrovic) in [https://github.com/graalvm/native-build-tools/pull/247](https://togithub.com/graalvm/native-build-tools/pull/247) - Add Gradle rich output support, configure default metadata URL on Maven by [@​lazar-mitrovic](https://togithub.com/lazar-mitrovic) in [https://github.com/graalvm/native-build-tools/pull/249](https://togithub.com/graalvm/native-build-tools/pull/249) - Fix wrong scope for test dependencies by [@​melix](https://togithub.com/melix) in [https://github.com/graalvm/native-build-tools/pull/251](https://togithub.com/graalvm/native-build-tools/pull/251) - Add documentation for alternative build systems. by [@​gradinac](https://togithub.com/gradinac) in [https://github.com/graalvm/native-build-tools/pull/248](https://togithub.com/graalvm/native-build-tools/pull/248) **Full Changelog**: graalvm/native-build-tools@0.9.11...0.9.12 </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-tasks).
🤖 I have created a release *beep* *boop* --- ## [2.3.0](googleapis/java-tasks@v2.2.0...v2.3.0) (2022-07-01) ### Features * Enable REST transport for most of Java and Go clients ([#690](googleapis/java-tasks#690)) ([32f6d5c](googleapis/java-tasks@32f6d5c)) ### Documentation * **sample:** clean up README for native image sample ([#697](googleapis/java-tasks#697)) ([c6fa224](googleapis/java-tasks@c6fa224)) ### Dependencies * update dependency com.google.cloud:google-cloud-shared-dependencies to v2.13.0 ([#701](googleapis/java-tasks#701)) ([c5b5405](googleapis/java-tasks@c5b5405)) * update dependency org.graalvm.buildtools:junit-platform-native to v0.9.12 ([#699](googleapis/java-tasks#699)) ([d2c32c2](googleapis/java-tasks@d2c32c2)) * update dependency org.graalvm.buildtools:native-maven-plugin to v0.9.12 ([#700](googleapis/java-tasks#700)) ([8d383d6](googleapis/java-tasks@8d383d6)) --- This PR was generated with [Release Please](https://github.com/googleapis/release-please). See [documentation](https://github.com/googleapis/release-please#release-please).
…4.0 (#700) * chore(deps): update dependency com.google.cloud:libraries-bom to v25.4.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> Co-authored-by: Alice <65933803+alicejli@users.noreply.github.com>
…onfig to v1.5.1 (#700) * build(deps): update dependency com.google.cloud:google-cloud-shared-config to v1.5.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>
…onfig to v1.5.1 (#700)
Ignore ITSystemTest because the backend removed the implementation and the whole client library will be removed soon.
🤖 I have created a release *beep* *boop* --- ### Updating meta-information for bleeding-edge SNAPSHOT release. --- This PR was generated with [Release Please](https://github.com/googleapis/release-please). See [documentation](https://github.com/googleapis/release-please#release-please).
🤖 I have created a release *beep* *boop* --- ## [2.3.2](googleapis/java-game-servers@v2.3.1...v2.3.2) (2022-08-09) ### Bug Fixes * Ignore ITSystemTest ([#700](googleapis/java-game-servers#700)) ([ca6fc58](googleapis/java-game-servers@ca6fc58)) ### Dependencies * update dependency com.google.cloud:google-cloud-shared-dependencies to v3 ([#697](googleapis/java-game-servers#697)) ([6dd8622](googleapis/java-game-servers@6dd8622)) * update dependency com.google.code.gson:gson to v2.9.1 ([#698](googleapis/java-game-servers#698)) ([6d6624c](googleapis/java-game-servers@6d6624c)) --- This PR was generated with [Release Please](https://github.com/googleapis/release-please). See [documentation](https://github.com/googleapis/release-please#release-please).
Co-authored-by: release-please[bot] <55107282+release-please[bot]@users.noreply.github.com>
…1.0 (#700) [![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. --- - [ ] <!-- 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-servicedirectory). <!--renovate-debug:eyJjcmVhdGVkSW5WZXIiOiIzMi4xNTguMCIsInVwZGF0ZWRJblZlciI6IjMyLjE1OC4wIn0=-->
🤖 I have created a release *beep* *boop* --- ## [2.1.5](googleapis/java-dns@v2.1.4...v2.1.5) (2022-09-08) ### Dependencies * Update dependency com.google.cloud:google-cloud-shared-dependencies to v3.0.2 ([#699](googleapis/java-dns#699)) ([0ae4803](googleapis/java-dns@0ae4803)) --- This PR was generated with [Release Please](https://github.com/googleapis/release-please). See [documentation](https://github.com/googleapis/release-please#release-please).
…cies to v3.0.2 (#700) [![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://togithub.com/googleapis/java-shared-dependencies) | `3.0.1` -> `3.0.2` | [![age](https://badges.renovateapi.com/packages/maven/com.google.cloud:google-cloud-shared-dependencies/3.0.2/age-slim)](https://docs.renovatebot.com/merge-confidence/) | [![adoption](https://badges.renovateapi.com/packages/maven/com.google.cloud:google-cloud-shared-dependencies/3.0.2/adoption-slim)](https://docs.renovatebot.com/merge-confidence/) | [![passing](https://badges.renovateapi.com/packages/maven/com.google.cloud:google-cloud-shared-dependencies/3.0.2/compatibility-slim/3.0.1)](https://docs.renovatebot.com/merge-confidence/) | [![confidence](https://badges.renovateapi.com/packages/maven/com.google.cloud:google-cloud-shared-dependencies/3.0.2/confidence-slim/3.0.1)](https://docs.renovatebot.com/merge-confidence/) | --- ### Release Notes <details> <summary>googleapis/java-shared-dependencies</summary> ### [`v3.0.2`](https://togithub.com/googleapis/java-shared-dependencies/blob/HEAD/CHANGELOG.md#​302-httpsgithubcomgoogleapisjava-shared-dependenciescomparev301v302-2022-09-08) [Compare Source](https://togithub.com/googleapis/java-shared-dependencies/compare/v3.0.1...v3.0.2) ##### Dependencies - Update dependency com.fasterxml.jackson:jackson-bom to v2.13.4 ([#​789](https://togithub.com/googleapis/java-shared-dependencies/issues/789)) ([6cf91a9](https://togithub.com/googleapis/java-shared-dependencies/commit/6cf91a96b9ea6af0fb845b50582dac7aa2892cab)) - Update dependency com.google.auth:google-auth-library-bom to v1.10.0 ([#​781](https://togithub.com/googleapis/java-shared-dependencies/issues/781)) ([8859e61](https://togithub.com/googleapis/java-shared-dependencies/commit/8859e61808bfc5cd9546e27e945fc855b36d2554)) - Update dependency com.google.auth:google-auth-library-bom to v1.11.0 ([#​790](https://togithub.com/googleapis/java-shared-dependencies/issues/790)) ([3431a47](https://togithub.com/googleapis/java-shared-dependencies/commit/3431a471cbf874a67a4f1a42e31f0ed891dedc92)) - Update dependency com.google.auth:google-auth-library-bom to v1.9.0 ([#​773](https://togithub.com/googleapis/java-shared-dependencies/issues/773)) ([27fc79f](https://togithub.com/googleapis/java-shared-dependencies/commit/27fc79f00ee70011df6a368bb8fcfad7f0ce41f0)) - Update dependency com.google.errorprone:error_prone_annotations to v2.15.0 ([#​776](https://togithub.com/googleapis/java-shared-dependencies/issues/776)) ([bf333b8](https://togithub.com/googleapis/java-shared-dependencies/commit/bf333b8c88072d21cb959db4d3328bbb55d9ef5c)) - Update dependency com.google.protobuf:protobuf-bom to v3.21.5 ([#​780](https://togithub.com/googleapis/java-shared-dependencies/issues/780)) ([da7f44d](https://togithub.com/googleapis/java-shared-dependencies/commit/da7f44d71d6d7f372b5313dab68ce220308614d4)) - Update dependency io.grpc:grpc-bom to v1.48.1 ([#​768](https://togithub.com/googleapis/java-shared-dependencies/issues/768)) ([5c7768d](https://togithub.com/googleapis/java-shared-dependencies/commit/5c7768d3c9665dd356de6c39c0a6a5fa6e992f2e)) - Update dependency io.grpc:grpc-bom to v1.49.0 ([#​786](https://togithub.com/googleapis/java-shared-dependencies/issues/786)) ([8734812](https://togithub.com/googleapis/java-shared-dependencies/commit/8734812f1b4e2faaa48caf41eff59a85892ae344)) - Update dependency org.checkerframework:checker-qual to v3.24.0 ([#​775](https://togithub.com/googleapis/java-shared-dependencies/issues/775)) ([df74b7b](https://togithub.com/googleapis/java-shared-dependencies/commit/df74b7b0dd5dd592523f302d9fb36adb5991cb0b)) - Update dependency org.checkerframework:checker-qual to v3.25.0 ([#​788](https://togithub.com/googleapis/java-shared-dependencies/issues/788)) ([207035b](https://togithub.com/googleapis/java-shared-dependencies/commit/207035bd04c9305899eea540acbefaf06a7b1ec9)) - Update dependency org.threeten:threetenbp to v1.6.1 ([#​782](https://togithub.com/googleapis/java-shared-dependencies/issues/782)) ([0f218ae](https://togithub.com/googleapis/java-shared-dependencies/commit/0f218aeb6aa33cf1da4a8b1d6c82bbf87946dab9)) - Update gax.version to v2.19.0 ([#​785](https://togithub.com/googleapis/java-shared-dependencies/issues/785)) ([4448331](https://togithub.com/googleapis/java-shared-dependencies/commit/4448331c4c6d88ea8076260776d1d47d24aa19fa)) - Update google.core.version to v2.8.10 ([#​787](https://togithub.com/googleapis/java-shared-dependencies/issues/787)) ([3c344d5](https://togithub.com/googleapis/java-shared-dependencies/commit/3c344d515e3b9215db5a1f8ef550d800d974e558)) - Update google.core.version to v2.8.7 ([#​774](https://togithub.com/googleapis/java-shared-dependencies/issues/774)) ([d0cd5e8](https://togithub.com/googleapis/java-shared-dependencies/commit/d0cd5e8f6ca88787fe0dbf7f30c849cb4c4fae5e)) - Update google.core.version to v2.8.8 ([#​777](https://togithub.com/googleapis/java-shared-dependencies/issues/777)) ([f00571c](https://togithub.com/googleapis/java-shared-dependencies/commit/f00571cd1e9f1c4e011fba4a1e1674c1d8d60200)) - Update google.core.version to v2.8.9 ([#​784](https://togithub.com/googleapis/java-shared-dependencies/issues/784)) ([aa8e505](https://togithub.com/googleapis/java-shared-dependencies/commit/aa8e505dbb1214b2239e55d5ac83b00c167d77e4)) </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-webrisk). <!--renovate-debug:eyJjcmVhdGVkSW5WZXIiOiIzMi4xOTQuMiIsInVwZGF0ZWRJblZlciI6IjMyLjE5NC4yIn0=-->
🤖 I have created a release *beep* *boop* --- ## [2.2.3](googleapis/java-webrisk@v2.2.2...v2.2.3) (2022-09-09) ### Dependencies * Update dependency com.google.cloud:google-cloud-shared-dependencies to v3.0.2 ([#700](googleapis/java-webrisk#700)) ([93f495c](googleapis/java-webrisk@93f495c)) --- This PR was generated with [Release Please](https://github.com/googleapis/release-please). See [documentation](https://github.com/googleapis/release-please#release-please).
…1575) (#700) Source-Link: googleapis/synthtool@2e9ac19 Post-Processor: gcr.io/cloud-devrel-public-resources/owlbot-java:latest@sha256:8175681a918181d306d9c370d3262f16b4c724cc73d74111b7d42fc985ca7f93
[![Mend Renovate](https://app.renovatebot.com/images/banner.svg)](https://renovatebot.com) This PR contains the following updates: | Package | Change | Age | Adoption | Passing | Confidence | |---|---|---|---|---|---| | [googleapis-common-protos](https://togithub.com/googleapis/python-api-common-protos) | `==1.56.3` -> `==1.56.4` | [![age](https://badges.renovateapi.com/packages/pypi/googleapis-common-protos/1.56.4/age-slim)](https://docs.renovatebot.com/merge-confidence/) | [![adoption](https://badges.renovateapi.com/packages/pypi/googleapis-common-protos/1.56.4/adoption-slim)](https://docs.renovatebot.com/merge-confidence/) | [![passing](https://badges.renovateapi.com/packages/pypi/googleapis-common-protos/1.56.4/compatibility-slim/1.56.3)](https://docs.renovatebot.com/merge-confidence/) | [![confidence](https://badges.renovateapi.com/packages/pypi/googleapis-common-protos/1.56.4/confidence-slim/1.56.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. --- - [ ] <!-- 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-mediatranslation). <!--renovate-debug:eyJjcmVhdGVkSW5WZXIiOiIzMi4yMDguMiIsInVwZGF0ZWRJblZlciI6IjMyLjIwOC4yIn0=-->
🤖 I have created a release *beep* *boop* --- ## [0.123.16](https://togithub.com/googleapis/java-notification/compare/v0.123.15...v0.123.16) (2022-10-02) ### Dependencies * Update dependency cachetools to v5 ([#710](https://togithub.com/googleapis/java-notification/issues/710)) ([31aa092](https://togithub.com/googleapis/java-notification/commit/31aa092db94e7e6ed2341dc2566c30f5d845b212)) * Update dependency certifi to v2022.9.24 ([#690](https://togithub.com/googleapis/java-notification/issues/690)) ([ed4a6ea](https://togithub.com/googleapis/java-notification/commit/ed4a6eaa78b3722c65a666787aec83c409db0976)) * Update dependency charset-normalizer to v2.1.1 ([#695](https://togithub.com/googleapis/java-notification/issues/695)) ([cdac448](https://togithub.com/googleapis/java-notification/commit/cdac4481bc2a3da94b9efa5eaa9f578fea4093d6)) * Update dependency click to v8.1.3 ([#696](https://togithub.com/googleapis/java-notification/issues/696)) ([bde844c](https://togithub.com/googleapis/java-notification/commit/bde844cacd41e0aa9d0661b63e8477ce07c14cb0)) * Update dependency gcp-releasetool to v1.8.8 ([#691](https://togithub.com/googleapis/java-notification/issues/691)) ([5d01c3c](https://togithub.com/googleapis/java-notification/commit/5d01c3c76499b8c1bd50954f6b9e504cbb52e3f0)) * Update dependency gcp-releasetool to v1.8.9 ([#718](https://togithub.com/googleapis/java-notification/issues/718)) ([63d3f22](https://togithub.com/googleapis/java-notification/commit/63d3f2233556f70cfaea5cea87aad8cde8f7d9e7)) * Update dependency google-api-core to v2.10.1 ([#697](https://togithub.com/googleapis/java-notification/issues/697)) ([e6751a2](https://togithub.com/googleapis/java-notification/commit/e6751a2a2567742abd451b4a8722942effbc5e84)) * Update dependency google-auth to v2.11.1 ([#692](https://togithub.com/googleapis/java-notification/issues/692)) ([f70af38](https://togithub.com/googleapis/java-notification/commit/f70af38d05d2a6da5aeca093d8dc97b797fc3bc9)) * Update dependency google-auth to v2.12.0 ([#713](https://togithub.com/googleapis/java-notification/issues/713)) ([40b7ac5](https://togithub.com/googleapis/java-notification/commit/40b7ac576f14c28f3f74ebaf641f7e23eaa435e5)) * Update dependency google-cloud-core to v2.3.2 ([#693](https://togithub.com/googleapis/java-notification/issues/693)) ([5624d7c](https://togithub.com/googleapis/java-notification/commit/5624d7ce52b2167dad2b1b511338d16809abcb5a)) * Update dependency google-cloud-storage to v2.5.0 ([#698](https://togithub.com/googleapis/java-notification/issues/698)) ([84a21a4](https://togithub.com/googleapis/java-notification/commit/84a21a446fff83ae1a715db76a2bbccd792724c8)) * Update dependency google-crc32c to v1.5.0 ([#699](https://togithub.com/googleapis/java-notification/issues/699)) ([ff95524](https://togithub.com/googleapis/java-notification/commit/ff95524970dd03ef00aea3cacbf358c37a542bfe)) * Update dependency google-resumable-media to v2.4.0 ([#714](https://togithub.com/googleapis/java-notification/issues/714)) ([a3d47b1](https://togithub.com/googleapis/java-notification/commit/a3d47b1dd90a1630967b85b1021784830419ec4c)) * Update dependency googleapis-common-protos to v1.56.4 ([#694](https://togithub.com/googleapis/java-notification/issues/694)) ([7895ac8](https://togithub.com/googleapis/java-notification/commit/7895ac8a1d82d202236131717c96a6541d2da31f)) * Update dependency importlib-metadata to v4.12.0 ([#700](https://togithub.com/googleapis/java-notification/issues/700)) ([41f614d](https://togithub.com/googleapis/java-notification/commit/41f614d07f1abf27ea1634201d4fde8bb8e2524e)) * Update dependency importlib-metadata to v4.13.0 ([#716](https://togithub.com/googleapis/java-notification/issues/716)) ([394ff31](https://togithub.com/googleapis/java-notification/commit/394ff318aa3284bba3a879063488e0a7ecb0a985)) * Update dependency importlib-metadata to v5 ([#717](https://togithub.com/googleapis/java-notification/issues/717)) ([05cb144](https://togithub.com/googleapis/java-notification/commit/05cb144ce0ad3031ea0034e152764c581709917f)) * Update dependency jeepney to v0.8.0 ([#701](https://togithub.com/googleapis/java-notification/issues/701)) ([ac9eace](https://togithub.com/googleapis/java-notification/commit/ac9eacecb3a4ae41461924ff64c5e9f24c7a4121)) * Update dependency jinja2 to v3.1.2 ([#702](https://togithub.com/googleapis/java-notification/issues/702)) ([345310b](https://togithub.com/googleapis/java-notification/commit/345310b7d7cda99b3891fad5be175cbccd65c1fc)) * Update dependency keyring to v23.9.3 ([#703](https://togithub.com/googleapis/java-notification/issues/703)) ([3201712](https://togithub.com/googleapis/java-notification/commit/32017121f16f4640b508a6409eeab4a54805d896)) * Update dependency protobuf to v3.20.2 ([#705](https://togithub.com/googleapis/java-notification/issues/705)) ([6b21e5f](https://togithub.com/googleapis/java-notification/commit/6b21e5f583e4825f4e77c3b6ee61ae94aa388be6)) * Update dependency protobuf to v3.20.3 ([#715](https://togithub.com/googleapis/java-notification/issues/715)) ([04cb62e](https://togithub.com/googleapis/java-notification/commit/04cb62e55340ca6f8fe54ea676eb664127d155b2)) * Update dependency protobuf to v4 ([#711](https://togithub.com/googleapis/java-notification/issues/711)) ([1cba250](https://togithub.com/googleapis/java-notification/commit/1cba250c4bff9c451aa5ce905295e0287b7e0a26)) * Update dependency pyjwt to v2.5.0 ([#706](https://togithub.com/googleapis/java-notification/issues/706)) ([cee2aed](https://togithub.com/googleapis/java-notification/commit/cee2aedc0fd7f5f273e2ab4a87476b453732caa1)) * Update dependency requests to v2.28.1 ([#707](https://togithub.com/googleapis/java-notification/issues/707)) ([faff885](https://togithub.com/googleapis/java-notification/commit/faff8852d4978e3e7c2c3d2ae7af8f2f3ec07e7e)) * Update dependency typing-extensions to v4.3.0 ([#708](https://togithub.com/googleapis/java-notification/issues/708)) ([fd41d12](https://togithub.com/googleapis/java-notification/commit/fd41d122d27a85a429182f79de18a1fff9b9581a)) * Update dependency zipp to v3.8.1 ([#709](https://togithub.com/googleapis/java-notification/issues/709)) ([98b5318](https://togithub.com/googleapis/java-notification/commit/98b5318636c0d2450a3e61fa1c8e369c13a95937)) --- This PR was generated with [Release Please](https://togithub.com/googleapis/release-please). See [documentation](https://togithub.com/googleapis/release-please#release-please).
🤖 I have created a release *beep* *boop* --- ## [0.9.5](https://togithub.com/googleapis/java-mediatranslation/compare/v0.9.4...v0.9.5) (2022-10-03) ### Dependencies * Update dependency cachetools to v5 ([#717](https://togithub.com/googleapis/java-mediatranslation/issues/717)) ([c160d17](https://togithub.com/googleapis/java-mediatranslation/commit/c160d171d3f8bfc1c2b5c7cf000a7dac7cdd1a0d)) * Update dependency certifi to v2022.9.24 ([#697](https://togithub.com/googleapis/java-mediatranslation/issues/697)) ([d0205d9](https://togithub.com/googleapis/java-mediatranslation/commit/d0205d905d6150b46312ef6e621220b11faf6df6)) * Update dependency charset-normalizer to v2.1.1 ([#701](https://togithub.com/googleapis/java-mediatranslation/issues/701)) ([15e390d](https://togithub.com/googleapis/java-mediatranslation/commit/15e390d771cd1996931bcfd937f76053c7d26cd1)) * Update dependency click to v8.1.3 ([#702](https://togithub.com/googleapis/java-mediatranslation/issues/702)) ([4d2bf78](https://togithub.com/googleapis/java-mediatranslation/commit/4d2bf781d6a584c11b2473750f3e623ffe21fcba)) * Update dependency com.google.cloud:google-cloud-shared-dependencies to v3.0.4 ([#722](https://togithub.com/googleapis/java-mediatranslation/issues/722)) ([7a63046](https://togithub.com/googleapis/java-mediatranslation/commit/7a630469cf9d2493b22614e7f7a549ed16592e08)) * Update dependency gcp-releasetool to v1.8.8 ([#698](https://togithub.com/googleapis/java-mediatranslation/issues/698)) ([089ac2c](https://togithub.com/googleapis/java-mediatranslation/commit/089ac2c8472051ffa1147ee84dc8b8abf98522ac)) * Update dependency google-api-core to v2.10.1 ([#703](https://togithub.com/googleapis/java-mediatranslation/issues/703)) ([9bd891c](https://togithub.com/googleapis/java-mediatranslation/commit/9bd891ca6026efec214cc2c8d55da0e8c872870c)) * Update dependency google-auth to v2.12.0 ([#704](https://togithub.com/googleapis/java-mediatranslation/issues/704)) ([ca424db](https://togithub.com/googleapis/java-mediatranslation/commit/ca424dbc1f522e230560cecf517976c48b3ca4e1)) * Update dependency google-cloud-core to v2.3.2 ([#699](https://togithub.com/googleapis/java-mediatranslation/issues/699)) ([cddba25](https://togithub.com/googleapis/java-mediatranslation/commit/cddba25731a480caa085bf6d15a709f3978c3fa4)) * Update dependency google-cloud-storage to v2.5.0 ([#705](https://togithub.com/googleapis/java-mediatranslation/issues/705)) ([28f607e](https://togithub.com/googleapis/java-mediatranslation/commit/28f607e53aebddad6c542e094646b3ebd935cc5c)) * Update dependency google-crc32c to v1.5.0 ([#706](https://togithub.com/googleapis/java-mediatranslation/issues/706)) ([4a52762](https://togithub.com/googleapis/java-mediatranslation/commit/4a527627b28ddedb2dbbf36585f0338dae01363f)) * Update dependency googleapis-common-protos to v1.56.4 ([#700](https://togithub.com/googleapis/java-mediatranslation/issues/700)) ([0ce8794](https://togithub.com/googleapis/java-mediatranslation/commit/0ce87944a92d56a2487ced89419b950d9bfb7e98)) * Update dependency importlib-metadata to v4.12.0 ([#707](https://togithub.com/googleapis/java-mediatranslation/issues/707)) ([6300ee0](https://togithub.com/googleapis/java-mediatranslation/commit/6300ee0cdc6a9e423a3c9d82a030f18ba9a6d825)) * Update dependency jeepney to v0.8.0 ([#708](https://togithub.com/googleapis/java-mediatranslation/issues/708)) ([1431a1f](https://togithub.com/googleapis/java-mediatranslation/commit/1431a1f1e42afdead26c08fb339e92a6ad0edef7)) * Update dependency jinja2 to v3.1.2 ([#709](https://togithub.com/googleapis/java-mediatranslation/issues/709)) ([c0c23c2](https://togithub.com/googleapis/java-mediatranslation/commit/c0c23c2f2a97d3806616e371f5da1ae1972c7216)) * Update dependency markupsafe to v2.1.1 ([#711](https://togithub.com/googleapis/java-mediatranslation/issues/711)) ([67f811a](https://togithub.com/googleapis/java-mediatranslation/commit/67f811a2b3e814028173905603a0a8acbff7e650)) * Update dependency protobuf to v3.20.2 ([#712](https://togithub.com/googleapis/java-mediatranslation/issues/712)) ([7a2e6cd](https://togithub.com/googleapis/java-mediatranslation/commit/7a2e6cd8f189559d5ea36da342004b14a5efbebe)) * Update dependency protobuf to v4 ([#718](https://togithub.com/googleapis/java-mediatranslation/issues/718)) ([9d15f2c](https://togithub.com/googleapis/java-mediatranslation/commit/9d15f2c5d199841636e1c5330b930ca06561e589)) * Update dependency pyjwt to v2.5.0 ([#713](https://togithub.com/googleapis/java-mediatranslation/issues/713)) ([81ae277](https://togithub.com/googleapis/java-mediatranslation/commit/81ae277998639be0496cded9c962a2d5973f735f)) * Update dependency requests to v2.28.1 ([#714](https://togithub.com/googleapis/java-mediatranslation/issues/714)) ([7a5fd27](https://togithub.com/googleapis/java-mediatranslation/commit/7a5fd27ba3620f15178b31dbb733faa0bb0cbba0)) * Update dependency typing-extensions to v4.3.0 ([#716](https://togithub.com/googleapis/java-mediatranslation/issues/716)) ([c653284](https://togithub.com/googleapis/java-mediatranslation/commit/c653284a72c51730e18cebd95199b43aa7d594fc)) * Update dependency zipp to v3.8.1 ([#715](https://togithub.com/googleapis/java-mediatranslation/issues/715)) ([52d96d0](https://togithub.com/googleapis/java-mediatranslation/commit/52d96d08074acf296c9ce80260b02e529dd8821f)) --- This PR was generated with [Release Please](https://togithub.com/googleapis/release-please). See [documentation](https://togithub.com/googleapis/release-please#release-please).
🤖 I have created a release *beep* *boop* --- ## [2.6.5](https://togithub.com/googleapis/java-redis/compare/v2.6.4...v2.6.5) (2022-10-03) ### Dependencies * Update dependency cachetools to v5 ([#721](https://togithub.com/googleapis/java-redis/issues/721)) ([6b7938c](https://togithub.com/googleapis/java-redis/commit/6b7938c9da67a700c41325ed9425aa81128c1c99)) * Update dependency certifi to v2022.9.24 ([#700](https://togithub.com/googleapis/java-redis/issues/700)) ([934cd09](https://togithub.com/googleapis/java-redis/commit/934cd09ab6de2706b563683201027db70861199a)) * Update dependency charset-normalizer to v2.1.1 ([#704](https://togithub.com/googleapis/java-redis/issues/704)) ([3d4fcf3](https://togithub.com/googleapis/java-redis/commit/3d4fcf3fa18d17f23cc29f415d3aecd9231e201c)) * Update dependency click to v8.1.3 ([#705](https://togithub.com/googleapis/java-redis/issues/705)) ([137ab75](https://togithub.com/googleapis/java-redis/commit/137ab75a22b26030aeac30f3b2676b0c33344c80)) * Update dependency com.google.cloud:google-cloud-shared-dependencies to v3.0.4 ([#724](https://togithub.com/googleapis/java-redis/issues/724)) ([9c195fc](https://togithub.com/googleapis/java-redis/commit/9c195fc09269c79dbaf70f96550094923205d2e6)) * Update dependency gcp-releasetool to v1.8.8 ([#701](https://togithub.com/googleapis/java-redis/issues/701)) ([745a6dd](https://togithub.com/googleapis/java-redis/commit/745a6dd2c347528aa0fdc8ee7abf4525ad96f389)) * Update dependency google-api-core to v2.10.1 ([#706](https://togithub.com/googleapis/java-redis/issues/706)) ([400801b](https://togithub.com/googleapis/java-redis/commit/400801b98e32a432e6419a9d376a950b07450b82)) * Update dependency google-auth to v2.12.0 ([#707](https://togithub.com/googleapis/java-redis/issues/707)) ([b990f24](https://togithub.com/googleapis/java-redis/commit/b990f24c5b7146904b1f07314caefd1315061614)) * Update dependency google-cloud-core to v2.3.2 ([#702](https://togithub.com/googleapis/java-redis/issues/702)) ([9d38dcb](https://togithub.com/googleapis/java-redis/commit/9d38dcbef939dbef8e1d2b287e74a894834872c8)) * Update dependency google-cloud-storage to v2.5.0 ([#708](https://togithub.com/googleapis/java-redis/issues/708)) ([c31eb60](https://togithub.com/googleapis/java-redis/commit/c31eb60b5d93bfe1b2ddb96478d45931cfbb37bf)) * Update dependency google-crc32c to v1.5.0 ([#709](https://togithub.com/googleapis/java-redis/issues/709)) ([0552747](https://togithub.com/googleapis/java-redis/commit/0552747e00f1a43180f13bc5b95adb335fd29301)) * Update dependency googleapis-common-protos to v1.56.4 ([#703](https://togithub.com/googleapis/java-redis/issues/703)) ([d2ce8ec](https://togithub.com/googleapis/java-redis/commit/d2ce8ec64b43d532d664d932d3611e85b13353c7)) * Update dependency importlib-metadata to v4.12.0 ([#710](https://togithub.com/googleapis/java-redis/issues/710)) ([4041426](https://togithub.com/googleapis/java-redis/commit/40414264d8738c8dd3a533a0b7740831db6cc750)) * Update dependency jeepney to v0.8.0 ([#711](https://togithub.com/googleapis/java-redis/issues/711)) ([4113a94](https://togithub.com/googleapis/java-redis/commit/4113a94e3d379c73c80344c507256b5df9d724f5)) * Update dependency jinja2 to v3.1.2 ([#713](https://togithub.com/googleapis/java-redis/issues/713)) ([d335f7b](https://togithub.com/googleapis/java-redis/commit/d335f7b425da4a035337c28fc928f715e1c05020)) * Update dependency keyring to v23.9.3 ([#714](https://togithub.com/googleapis/java-redis/issues/714)) ([3ed3574](https://togithub.com/googleapis/java-redis/commit/3ed35741c0fe0be03af99439d91f87e881039bba)) * Update dependency protobuf to v3.20.2 ([#716](https://togithub.com/googleapis/java-redis/issues/716)) ([9050ce1](https://togithub.com/googleapis/java-redis/commit/9050ce1a4ff9579974144d579a3f9abf5fd0667e)) * Update dependency protobuf to v4 ([#722](https://togithub.com/googleapis/java-redis/issues/722)) ([4e599fa](https://togithub.com/googleapis/java-redis/commit/4e599fa54a66e61bac769556cf3e6ae0c2743a7b)) * Update dependency pyjwt to v2.5.0 ([#717](https://togithub.com/googleapis/java-redis/issues/717)) ([399a6a6](https://togithub.com/googleapis/java-redis/commit/399a6a6acf4d3af92c1523d2ce2f1b6534e886ab)) * Update dependency requests to v2.28.1 ([#718](https://togithub.com/googleapis/java-redis/issues/718)) ([16ae5ea](https://togithub.com/googleapis/java-redis/commit/16ae5eafc58fbf593761f2f1535f72d61200e7d4)) * Update dependency typing-extensions to v4.3.0 ([#719](https://togithub.com/googleapis/java-redis/issues/719)) ([db8e05b](https://togithub.com/googleapis/java-redis/commit/db8e05b0f491e30818e102d3886a8ba9a423cc22)) * Update dependency zipp to v3.8.1 ([#720](https://togithub.com/googleapis/java-redis/issues/720)) ([723706b](https://togithub.com/googleapis/java-redis/commit/723706bc76463909ffb75deb8b4a6e86e582a010)) --- This PR was generated with [Release Please](https://togithub.com/googleapis/release-please). See [documentation](https://togithub.com/googleapis/release-please#release-please).
[![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.api.grpc:grpc-google-iam-v1](https://togithub.com/googleapis/java-iam) | `1.3.4` -> `1.4.0` | [![age](https://badges.renovateapi.com/packages/maven/com.google.api.grpc:grpc-google-iam-v1/1.4.0/age-slim)](https://docs.renovatebot.com/merge-confidence/) | [![adoption](https://badges.renovateapi.com/packages/maven/com.google.api.grpc:grpc-google-iam-v1/1.4.0/adoption-slim)](https://docs.renovatebot.com/merge-confidence/) | [![passing](https://badges.renovateapi.com/packages/maven/com.google.api.grpc:grpc-google-iam-v1/1.4.0/compatibility-slim/1.3.4)](https://docs.renovatebot.com/merge-confidence/) | [![confidence](https://badges.renovateapi.com/packages/maven/com.google.api.grpc:grpc-google-iam-v1/1.4.0/confidence-slim/1.3.4)](https://docs.renovatebot.com/merge-confidence/) | | [com.google.api.grpc:proto-google-iam-v1](https://togithub.com/googleapis/java-iam) | `1.3.4` -> `1.4.0` | [![age](https://badges.renovateapi.com/packages/maven/com.google.api.grpc:proto-google-iam-v1/1.4.0/age-slim)](https://docs.renovatebot.com/merge-confidence/) | [![adoption](https://badges.renovateapi.com/packages/maven/com.google.api.grpc:proto-google-iam-v1/1.4.0/adoption-slim)](https://docs.renovatebot.com/merge-confidence/) | [![passing](https://badges.renovateapi.com/packages/maven/com.google.api.grpc:proto-google-iam-v1/1.4.0/compatibility-slim/1.3.4)](https://docs.renovatebot.com/merge-confidence/) | [![confidence](https://badges.renovateapi.com/packages/maven/com.google.api.grpc:proto-google-iam-v1/1.4.0/confidence-slim/1.3.4)](https://docs.renovatebot.com/merge-confidence/) | --- ### Release Notes <details> <summary>googleapis/java-iam</summary> ### [`v1.4.0`](https://togithub.com/googleapis/java-iam/blob/HEAD/CHANGELOG.md#​140-httpsgithubcomgoogleapisjava-iamcomparev134v140-2022-05-19) [Compare Source](https://togithub.com/googleapis/java-iam/compare/v1.3.4...v1.4.0) ##### Features - add build scripts for native image testing in Java 17 ([#​1440](https://togithub.com/googleapis/java-iam/issues/1440)) ([#​350](https://togithub.com/googleapis/java-iam/issues/350)) ([e83f148](https://togithub.com/googleapis/java-iam/commit/e83f148350c6e208f0290bf100f5b35461024073)) ##### Dependencies - update dependency com.google.api:api-common to v2.2.0 ([#​348](https://togithub.com/googleapis/java-iam/issues/348)) ([2013a52](https://togithub.com/googleapis/java-iam/commit/2013a526838de4d21694d59d256f48bf5976b109)) - update dependency com.google.cloud:google-cloud-shared-dependencies to v2.12.0 ([#​349](https://togithub.com/googleapis/java-iam/issues/349)) ([e458fbe](https://togithub.com/googleapis/java-iam/commit/e458fbe851f27fd2a3c0ea487f71ddccc88173f7)) ##### [1.3.4](https://togithub.com/googleapis/java-iam/compare/v1.3.3...v1.3.4) (2022-05-10) ##### Dependencies - update dependency io.grpc:grpc-protobuf to v1.46.0 ([#​340](https://togithub.com/googleapis/java-iam/issues/340)) ([8ed87ef](https://togithub.com/googleapis/java-iam/commit/8ed87ef24ba184a1b1b386554aca94ae1fbbf9e6)) - update dependency io.grpc:grpc-stub to v1.46.0 ([#​341](https://togithub.com/googleapis/java-iam/issues/341)) ([92c7276](https://togithub.com/googleapis/java-iam/commit/92c72768d6ea7715da121c5504b95e598de770a0)) ##### [1.3.3](https://togithub.com/googleapis/java-iam/compare/v1.3.2...v1.3.3) (2022-04-22) ##### Dependencies - update dependency com.google.protobuf:protobuf-java to v3.20.1 ([#​337](https://togithub.com/googleapis/java-iam/issues/337)) ([83302e1](https://togithub.com/googleapis/java-iam/commit/83302e12860ca82234bd3f74234c373164e27ffb)) ##### [1.3.2](https://togithub.com/googleapis/java-iam/compare/v1.3.1...v1.3.2) (2022-04-15) ##### Dependencies - update dependency com.google.cloud:google-cloud-shared-dependencies to v2.10.0 ([#​332](https://togithub.com/googleapis/java-iam/issues/332)) ([78e6341](https://togithub.com/googleapis/java-iam/commit/78e6341388c63e6eabeb5fbb3ab21bbdc965ddef)) ##### [1.3.1](https://togithub.com/googleapis/java-iam/compare/v1.3.0...v1.3.1) (2022-04-11) ##### Dependencies - revert dependency com.google.protobuf:protobuf-java to v3.19.4 ([#​329](https://togithub.com/googleapis/java-iam/issues/329)) ([0e679c5](https://togithub.com/googleapis/java-iam/commit/0e679c5b63ac438f3f3f53b5a920c876450e0a94)) </details> --- ### 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 these updates 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-shared-dependencies).
No description provided.