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

storage: "Failed to parse Content-Range header" when chunk-size upload is used #720

Closed
sudison opened this issue Mar 7, 2016 · 12 comments
Closed
Assignees
Labels
api: storage Issues related to the Cloud Storage API. type: bug Error or flaw in code with unintended results or allowing sub-optimal usage patterns.

Comments

@sudison
Copy link

sudison commented Mar 7, 2016

Here is the log:

Caused by: com.google.gcloud.storage.StorageException: 400 Bad Request
Failed to parse Content-Range header.
at com.google.gcloud.spi.DefaultStorageRpc.translate(DefaultStorageRpc.java:94)
at com.google.gcloud.spi.DefaultStorageRpc.write(DefaultStorageRpc.java:499)
at com.google.gcloud.storage.BlobWriteChannel$1.run(BlobWriteChannel.java:49)
at java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:511)
at com.google.gcloud.RetryHelper.doRetry(RetryHelper.java:181)
at com.google.gcloud.RetryHelper.runWithRetries(RetryHelper.java:247)
at com.google.gcloud.RetryHelper.runWithRetries(RetryHelper.java:237)
at com.google.gcloud.storage.BlobWriteChannel.flushBuffer(BlobWriteChannel.java:46)
at com.google.gcloud.BaseWriteChannel.close(BaseWriteChannel.java:147)

If I uploaded a file with size is exactly 2 x 1024 x 1024, and 1024 x 1024 as the chunk size, then I'll get above exception. However, if I changed the file size to 2 x 1024 x 1024 + 1, then the problem will go away.

Apparently, there is a bug in BlobWriteChannel->flushbuffer, if there is no data available, then there is no need to call options().rpc().write.

@mziccard
Copy link
Contributor

mziccard commented Mar 7, 2016

Hi @sudison thanks for the report. I managed to reproduce you issue, I will look into this and provide a fix as soon as possible.

@aozarov aozarov added type: bug Error or flaw in code with unintended results or allowing sub-optimal usage patterns. api: storage Issues related to the Cloud Storage API. labels Mar 7, 2016
@jean-philippe-martin
Copy link

PR #714 has a potential fix for that, making a note to try the repro after that request is merged.

@sudison
Copy link
Author

sudison commented Mar 7, 2016

I tried the fix in jean-philippe-martin@73b9ef6, I got

com.google.api.client.http.HttpResponseException: 400 Bad Request
{
"error": {
"errors": [
{
"domain": "global",
"reason": "badRequest",
"message": "Invalid Upload Request"
}
],
"code": 400,
"message": "Invalid Upload Request"
}
}

if length is zero, sending a upload request to cloud storage, will get above exception.

@aozarov
Copy link
Contributor

aozarov commented Mar 7, 2016

Yes, @sudison thank you. We realized that but unfortunately only added a comment in the PR and not here. We are waiting to see if there is a good way to fix that other than applying a workaround to fix it.

@sudison
Copy link
Author

sudison commented Mar 7, 2016

My fix for this issue is to add a method:
void totalLength(long length);
on WriteChannel.
The assumption is that, caller knows the length of the file before uploading to GCS.

@aozarov
Copy link
Contributor

aozarov commented Mar 7, 2016

Indeed that is a way, but I don't think we should make knowing the total lengths a requirement (and GCS should be able to support it). There are various cases where one would not know the length and we would like to support them to.

@jean-philippe-martin
Copy link

Agreed. Having to specify the length would make Java NIO integration really hard as NIO users don't give the length before starting their writes via e.g. newOutputStream.

@sudison
Copy link
Author

sudison commented Mar 7, 2016

As a user, if I want to use this library now, what should I do? This is the basic requirement for a library which can upload/download a file.

@aozarov
Copy link
Contributor

aozarov commented Mar 7, 2016

We will fix it soon. How big is your Blob? Can you apply one of the create methods that takes the blob content in the meantime?

@sudison
Copy link
Author

sudison commented Mar 7, 2016

Ok, thanks. Blob is around 1 - 20 MB. Is create method ok for such blob?

@aozarov
Copy link
Contributor

aozarov commented Mar 7, 2016

20MB is on the bigger side but Yes, and you can use the create that accepts InputStream if you don't have the content in memory.

@sudison
Copy link
Author

sudison commented Mar 7, 2016

ok, thanks. then I'll use create for now.

github-actions bot pushed a commit that referenced this issue Jun 23, 2022
🤖 I have created a release *beep* *boop*
---


## [2.2.1](googleapis/java-billingbudgets@v2.2.0...v2.2.1) (2022-06-23)


### Dependencies

* update dependency com.google.cloud:google-cloud-shared-dependencies to v2.13.0 ([#718](googleapis/java-billingbudgets#718)) ([de81c39](googleapis/java-billingbudgets@de81c39))

---
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 suztomo/google-cloud-java that referenced this issue Jun 29, 2022
…en-plugin to v1.6.10 (googleapis#720)

[![WhiteSource Renovate](https://app.renovatebot.com/images/banner.svg)](https://renovatebot.com)

This PR contains the following updates:

| Package | Change | Age | Adoption | Passing | Confidence |
|---|---|---|---|---|---|
| [org.sonatype.plugins:nexus-staging-maven-plugin](http://www.sonatype.com/) ([source](https://togithub.com/sonatype/nexus-maven-plugins)) | `1.6.9` -> `1.6.10` | [![age](https://badges.renovateapi.com/packages/maven/org.sonatype.plugins:nexus-staging-maven-plugin/1.6.10/age-slim)](https://docs.renovatebot.com/merge-confidence/) | [![adoption](https://badges.renovateapi.com/packages/maven/org.sonatype.plugins:nexus-staging-maven-plugin/1.6.10/adoption-slim)](https://docs.renovatebot.com/merge-confidence/) | [![passing](https://badges.renovateapi.com/packages/maven/org.sonatype.plugins:nexus-staging-maven-plugin/1.6.10/compatibility-slim/1.6.9)](https://docs.renovatebot.com/merge-confidence/) | [![confidence](https://badges.renovateapi.com/packages/maven/org.sonatype.plugins:nexus-staging-maven-plugin/1.6.10/confidence-slim/1.6.9)](https://docs.renovatebot.com/merge-confidence/) |

---

### Release Notes

<details>
<summary>sonatype/nexus-maven-plugins</summary>

### [`v1.6.10`](https://togithub.com/sonatype/nexus-maven-plugins/compare/release-1.6.9...release-1.6.10)

[Compare Source](https://togithub.com/sonatype/nexus-maven-plugins/compare/release-1.6.9...release-1.6.10)

</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 this update again.

---

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

---

This PR has been generated by [WhiteSource Renovate](https://renovate.whitesourcesoftware.com). View repository job log [here](https://app.renovatebot.com/dashboard#github/googleapis/java-resourcemanager).
github-actions bot pushed a commit that referenced this issue Jul 18, 2022
…-info-reports-plugin to v3.4.0 (#720)

[![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.apache.maven.plugins:maven-project-info-reports-plugin](https://maven.apache.org/plugins/) | `3.3.0` -> `3.4.0` | [![age](https://badges.renovateapi.com/packages/maven/org.apache.maven.plugins:maven-project-info-reports-plugin/3.4.0/age-slim)](https://docs.renovatebot.com/merge-confidence/) | [![adoption](https://badges.renovateapi.com/packages/maven/org.apache.maven.plugins:maven-project-info-reports-plugin/3.4.0/adoption-slim)](https://docs.renovatebot.com/merge-confidence/) | [![passing](https://badges.renovateapi.com/packages/maven/org.apache.maven.plugins:maven-project-info-reports-plugin/3.4.0/compatibility-slim/3.3.0)](https://docs.renovatebot.com/merge-confidence/) | [![confidence](https://badges.renovateapi.com/packages/maven/org.apache.maven.plugins:maven-project-info-reports-plugin/3.4.0/confidence-slim/3.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**: 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-bigqueryconnection).
<!--renovate-debug:eyJjcmVhdGVkSW5WZXIiOiIzMi4xMTcuNCIsInVwZGF0ZWRJblZlciI6IjMyLjExNy40In0=-->
github-actions bot pushed a commit that referenced this issue Jul 20, 2022
…plugin to v3 (#720)

[![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.apache.maven.plugins:maven-deploy-plugin](https://maven.apache.org/plugins/) | `2.8.2` -> `3.0.0` | [![age](https://badges.renovateapi.com/packages/maven/org.apache.maven.plugins:maven-deploy-plugin/3.0.0/age-slim)](https://docs.renovatebot.com/merge-confidence/) | [![adoption](https://badges.renovateapi.com/packages/maven/org.apache.maven.plugins:maven-deploy-plugin/3.0.0/adoption-slim)](https://docs.renovatebot.com/merge-confidence/) | [![passing](https://badges.renovateapi.com/packages/maven/org.apache.maven.plugins:maven-deploy-plugin/3.0.0/compatibility-slim/2.8.2)](https://docs.renovatebot.com/merge-confidence/) | [![confidence](https://badges.renovateapi.com/packages/maven/org.apache.maven.plugins:maven-deploy-plugin/3.0.0/confidence-slim/2.8.2)](https://docs.renovatebot.com/merge-confidence/) |

---

### Configuration

📅 **Schedule**: Branch creation - At any time (no schedule defined), Automerge - At any time (no schedule defined).

🚦 **Automerge**: Disabled by config. Please merge this manually once you are satisfied.

♻ **Rebasing**: 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-websecurityscanner).
<!--renovate-debug:eyJjcmVhdGVkSW5WZXIiOiIzMi4xMTcuNCIsInVwZGF0ZWRJblZlciI6IjMyLjExNy40In0=-->
github-actions bot pushed a commit that referenced this issue Jul 27, 2022
Source-Link: googleapis/synthtool@48f8857
Post-Processor: gcr.io/cloud-devrel-public-resources/owlbot-java:latest@sha256:b47e411068ffc6e6990cb4e0802fbac9a4488dec7f5f424553518ba21abea208
github-actions bot pushed a commit that referenced this issue Aug 9, 2022
🤖 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).
github-actions bot pushed a commit that referenced this issue Aug 16, 2022
…-info-reports-plugin to v3.4.1 (#720)

[![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.apache.maven.plugins:maven-project-info-reports-plugin](https://maven.apache.org/plugins/) | `3.4.0` -> `3.4.1` | [![age](https://badges.renovateapi.com/packages/maven/org.apache.maven.plugins:maven-project-info-reports-plugin/3.4.1/age-slim)](https://docs.renovatebot.com/merge-confidence/) | [![adoption](https://badges.renovateapi.com/packages/maven/org.apache.maven.plugins:maven-project-info-reports-plugin/3.4.1/adoption-slim)](https://docs.renovatebot.com/merge-confidence/) | [![passing](https://badges.renovateapi.com/packages/maven/org.apache.maven.plugins:maven-project-info-reports-plugin/3.4.1/compatibility-slim/3.4.0)](https://docs.renovatebot.com/merge-confidence/) | [![confidence](https://badges.renovateapi.com/packages/maven/org.apache.maven.plugins:maven-project-info-reports-plugin/3.4.1/confidence-slim/3.4.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-os-login).
<!--renovate-debug:eyJjcmVhdGVkSW5WZXIiOiIzMi4xNTguMCIsInVwZGF0ZWRJblZlciI6IjMyLjE1OC4wIn0=-->
github-actions bot pushed a commit that referenced this issue Sep 15, 2022
…cies to v3.0.2 (#720)

[![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#&#8203;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 ([#&#8203;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 ([#&#8203;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 ([#&#8203;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 ([#&#8203;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 ([#&#8203;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 ([#&#8203;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 ([#&#8203;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 ([#&#8203;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 ([#&#8203;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 ([#&#8203;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 ([#&#8203;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 ([#&#8203;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 ([#&#8203;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 ([#&#8203;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 ([#&#8203;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 ([#&#8203;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-iamcredentials).
<!--renovate-debug:eyJjcmVhdGVkSW5WZXIiOiIzMi4xOTQuMiIsInVwZGF0ZWRJblZlciI6IjMyLjE5NC4yIn0=-->
github-actions bot pushed a commit that referenced this issue Sep 15, 2022
🤖 I have created a release *beep* *boop*
---


## [2.3.3](googleapis/java-iamcredentials@v2.3.2...v2.3.3) (2022-09-09)


### Dependencies

* Update dependency com.google.cloud:google-cloud-shared-dependencies to v3.0.2 ([#720](googleapis/java-iamcredentials#720)) ([dc64f87](googleapis/java-iamcredentials@dc64f87))

---
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 issue Sep 15, 2022
🤖 I have created a release *beep* *boop*
---


## [0.34.4](googleapis/java-phishingprotection@v0.34.3...v0.34.4) (2022-09-15)


### Dependencies

* Update dependency com.google.cloud:google-cloud-shared-dependencies to v3.0.3 ([#719](googleapis/java-phishingprotection#719)) ([434fa62](googleapis/java-phishingprotection@434fa62))

---
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 issue Sep 30, 2022
[![Mend Renovate](https://app.renovatebot.com/images/banner.svg)](https://renovatebot.com)

This PR contains the following updates:

| Package | Change | Age | Adoption | Passing | Confidence |
|---|---|---|---|---|---|
| [zipp](https://togithub.com/jaraco/zipp) | `==3.6.0` -> `==3.8.1` | [![age](https://badges.renovateapi.com/packages/pypi/zipp/3.8.1/age-slim)](https://docs.renovatebot.com/merge-confidence/) | [![adoption](https://badges.renovateapi.com/packages/pypi/zipp/3.8.1/adoption-slim)](https://docs.renovatebot.com/merge-confidence/) | [![passing](https://badges.renovateapi.com/packages/pypi/zipp/3.8.1/compatibility-slim/3.6.0)](https://docs.renovatebot.com/merge-confidence/) | [![confidence](https://badges.renovateapi.com/packages/pypi/zipp/3.8.1/confidence-slim/3.6.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-redis).
<!--renovate-debug:eyJjcmVhdGVkSW5WZXIiOiIzMi4yMDguMiIsInVwZGF0ZWRJblZlciI6IjMyLjIwOC4yIn0=-->
github-actions bot pushed a commit that referenced this issue Oct 4, 2022
🤖 I have created a release *beep* *boop*
---


## [2.4.5](https://togithub.com/googleapis/java-bigqueryreservation/compare/v2.4.4...v2.4.5) (2022-10-03)


### Dependencies

* Update dependency cachetools to v5 ([#741](https://togithub.com/googleapis/java-bigqueryreservation/issues/741)) ([1debf99](https://togithub.com/googleapis/java-bigqueryreservation/commit/1debf993bba11a6cddb2e8d40d9df6b8551ec1f1))
* Update dependency certifi to v2022.9.24 ([#720](https://togithub.com/googleapis/java-bigqueryreservation/issues/720)) ([4d071ce](https://togithub.com/googleapis/java-bigqueryreservation/commit/4d071ced03689df379ff02c7d3f4a31715670268))
* Update dependency charset-normalizer to v2.1.1 ([#724](https://togithub.com/googleapis/java-bigqueryreservation/issues/724)) ([6d25d08](https://togithub.com/googleapis/java-bigqueryreservation/commit/6d25d085ba4c7a602492d3db1d967db6e35c2f65))
* Update dependency click to v8.1.3 ([#725](https://togithub.com/googleapis/java-bigqueryreservation/issues/725)) ([737be00](https://togithub.com/googleapis/java-bigqueryreservation/commit/737be00b716b190ce3df7a255751ae9ea47744dd))
* Update dependency com.google.cloud:google-cloud-shared-dependencies to v3.0.4 ([#745](https://togithub.com/googleapis/java-bigqueryreservation/issues/745)) ([6abed9f](https://togithub.com/googleapis/java-bigqueryreservation/commit/6abed9f128902a6e0011db6a9adf436d143549e5))
* Update dependency gcp-releasetool to v1.8.8 ([#721](https://togithub.com/googleapis/java-bigqueryreservation/issues/721)) ([d1bceed](https://togithub.com/googleapis/java-bigqueryreservation/commit/d1bceedcd66230f5024a28aefeb7a5a726e2ca7c))
* Update dependency google-api-core to v2.10.1 ([#726](https://togithub.com/googleapis/java-bigqueryreservation/issues/726)) ([ffdb83f](https://togithub.com/googleapis/java-bigqueryreservation/commit/ffdb83f9bd65a06f081e4d286aabeaeb6ae91657))
* Update dependency google-auth to v2.12.0 ([#727](https://togithub.com/googleapis/java-bigqueryreservation/issues/727)) ([14938e7](https://togithub.com/googleapis/java-bigqueryreservation/commit/14938e7719d877b6bb510b73380f2d5781948fe6))
* Update dependency google-cloud-core to v2.3.2 ([#722](https://togithub.com/googleapis/java-bigqueryreservation/issues/722)) ([f2b8e24](https://togithub.com/googleapis/java-bigqueryreservation/commit/f2b8e24a8d852df15df8d51898070aa1fcca7351))
* Update dependency google-cloud-storage to v2.5.0 ([#728](https://togithub.com/googleapis/java-bigqueryreservation/issues/728)) ([2929a3a](https://togithub.com/googleapis/java-bigqueryreservation/commit/2929a3a8cee4957f548750eae8d6d7b45e3eb525))
* Update dependency google-crc32c to v1.5.0 ([#729](https://togithub.com/googleapis/java-bigqueryreservation/issues/729)) ([ba4ea5b](https://togithub.com/googleapis/java-bigqueryreservation/commit/ba4ea5b6823ff041bf9d35e6c70f1eb689bd61ad))
* Update dependency googleapis-common-protos to v1.56.4 ([#723](https://togithub.com/googleapis/java-bigqueryreservation/issues/723)) ([08f6a0e](https://togithub.com/googleapis/java-bigqueryreservation/commit/08f6a0e366d8b9f4eecc70343373faae679bc790))
* Update dependency importlib-metadata to v4.12.0 ([#730](https://togithub.com/googleapis/java-bigqueryreservation/issues/730)) ([8c76d37](https://togithub.com/googleapis/java-bigqueryreservation/commit/8c76d3769de6b6f50101685836db08e32b08357d))
* Update dependency jeepney to v0.8.0 ([#731](https://togithub.com/googleapis/java-bigqueryreservation/issues/731)) ([c44516d](https://togithub.com/googleapis/java-bigqueryreservation/commit/c44516d27b5cdf7199cb3c69068689bf7f98f1de))
* Update dependency jinja2 to v3.1.2 ([#732](https://togithub.com/googleapis/java-bigqueryreservation/issues/732)) ([3723078](https://togithub.com/googleapis/java-bigqueryreservation/commit/37230783b12e600cee90372bbae9ba00d382eb98))
* Update dependency keyring to v23.9.3 ([#733](https://togithub.com/googleapis/java-bigqueryreservation/issues/733)) ([70333a6](https://togithub.com/googleapis/java-bigqueryreservation/commit/70333a663a5112662bbaa63618ad97c3f4561f9c))
* Update dependency markupsafe to v2.1.1 ([#735](https://togithub.com/googleapis/java-bigqueryreservation/issues/735)) ([0b70a40](https://togithub.com/googleapis/java-bigqueryreservation/commit/0b70a401c5a5144713fee932719aa4622d3703ac))
* Update dependency requests to v2.28.1 ([#738](https://togithub.com/googleapis/java-bigqueryreservation/issues/738)) ([708af55](https://togithub.com/googleapis/java-bigqueryreservation/commit/708af5554ca9d9432f7f268ef35bfdf82e5ef2b5))
* Update dependency zipp to v3.8.1 ([#740](https://togithub.com/googleapis/java-bigqueryreservation/issues/740)) ([a6b4dcc](https://togithub.com/googleapis/java-bigqueryreservation/commit/a6b4dcc8205d4488e70fc0deded16f0ca704e81a))

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


## [2.2.5](https://togithub.com/googleapis/java-webrisk/compare/v2.2.4...v2.2.5) (2022-10-03)


### Dependencies

* Update dependency charset-normalizer to v2.1.1 ([#713](https://togithub.com/googleapis/java-webrisk/issues/713)) ([dbd6027](https://togithub.com/googleapis/java-webrisk/commit/dbd6027dbcd51d8cb92f4520048cba07059aa181))
* Update dependency click to v8.1.3 ([#714](https://togithub.com/googleapis/java-webrisk/issues/714)) ([e851c80](https://togithub.com/googleapis/java-webrisk/commit/e851c809b27e605287a86dadc9dded747d7f5dd1))
* Update dependency com.google.cloud:google-cloud-shared-dependencies to v3.0.4 ([#727](https://togithub.com/googleapis/java-webrisk/issues/727)) ([e833701](https://togithub.com/googleapis/java-webrisk/commit/e8337016d20a7f2f07a559b43c4ef2f729845f88))
* Update dependency google-api-core to v2.10.1 ([#715](https://togithub.com/googleapis/java-webrisk/issues/715)) ([a71e181](https://togithub.com/googleapis/java-webrisk/commit/a71e181e13eaad4ec71cb79ee6a27f8e53293698))
* Update dependency google-cloud-core to v2.3.2 ([#711](https://togithub.com/googleapis/java-webrisk/issues/711)) ([dbe3499](https://togithub.com/googleapis/java-webrisk/commit/dbe34995edbb01768d2ed2b2778bef03954116e0))
* Update dependency google-cloud-storage to v2.5.0 ([#716](https://togithub.com/googleapis/java-webrisk/issues/716)) ([3ea92a2](https://togithub.com/googleapis/java-webrisk/commit/3ea92a27806081afde22e32cd1f30d0376c02b23))
* Update dependency google-crc32c to v1.5.0 ([#717](https://togithub.com/googleapis/java-webrisk/issues/717)) ([409f22d](https://togithub.com/googleapis/java-webrisk/commit/409f22dc8042f3728e0cb11dd9501634f7f98321))
* Update dependency googleapis-common-protos to v1.56.4 ([#712](https://togithub.com/googleapis/java-webrisk/issues/712)) ([c134501](https://togithub.com/googleapis/java-webrisk/commit/c1345010ca6db9b9cbc57cd706dbd8f47c902f20))
* Update dependency markupsafe to v2.1.1 ([#718](https://togithub.com/googleapis/java-webrisk/issues/718)) ([52ed09e](https://togithub.com/googleapis/java-webrisk/commit/52ed09eb7627a43a748157ef8d24de885980f49b))
* Update dependency protobuf to v3.20.2 ([#719](https://togithub.com/googleapis/java-webrisk/issues/719)) ([d900636](https://togithub.com/googleapis/java-webrisk/commit/d90063634d52b12090b57f98cc0b2ac4ac995c35))

---
This PR was generated with [Release Please](https://togithub.com/googleapis/release-please). See [documentation](https://togithub.com/googleapis/release-please#release-please).
github-actions bot pushed a commit that referenced this issue Oct 4, 2022
🤖 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).
github-actions bot pushed a commit that referenced this issue Oct 4, 2022
🤖 I have created a release *beep* *boop*
---


## [2.4.4](https://togithub.com/googleapis/java-servicedirectory/compare/v2.4.3...v2.4.4) (2022-10-03)


### Dependencies

* Update dependency cachetools to v5 ([#738](https://togithub.com/googleapis/java-servicedirectory/issues/738)) ([d6c4a88](https://togithub.com/googleapis/java-servicedirectory/commit/d6c4a8870be315f7c6c3c96d04143d0d25e5c0e6))
* Update dependency certifi to v2022.9.24 ([#718](https://togithub.com/googleapis/java-servicedirectory/issues/718)) ([3e47d49](https://togithub.com/googleapis/java-servicedirectory/commit/3e47d49a389d18327864d495668ac489a06df96e))
* Update dependency charset-normalizer to v2.1.1 ([#723](https://togithub.com/googleapis/java-servicedirectory/issues/723)) ([6c1c26e](https://togithub.com/googleapis/java-servicedirectory/commit/6c1c26ea42865c94005b88613a66d02b081f49ca))
* Update dependency click to v8.1.3 ([#724](https://togithub.com/googleapis/java-servicedirectory/issues/724)) ([fefbaf5](https://togithub.com/googleapis/java-servicedirectory/commit/fefbaf55a59f0b5416943b0f1b959c7b8281a3a5))
* Update dependency com.google.cloud:google-cloud-shared-dependencies to v3.0.4 ([#742](https://togithub.com/googleapis/java-servicedirectory/issues/742)) ([8b5f03d](https://togithub.com/googleapis/java-servicedirectory/commit/8b5f03d7e9c6db6027aacfbccb0f65bf5813c8c8))
* Update dependency gcp-releasetool to v1.8.8 ([#719](https://togithub.com/googleapis/java-servicedirectory/issues/719)) ([52608e9](https://togithub.com/googleapis/java-servicedirectory/commit/52608e9c542792f3e22f5a9854b7ac98ecbb7798))
* Update dependency google-api-core to v2.10.1 ([#725](https://togithub.com/googleapis/java-servicedirectory/issues/725)) ([3c5ee3e](https://togithub.com/googleapis/java-servicedirectory/commit/3c5ee3e25645a2bbbf566a89eb7dd64427db8502))
* Update dependency google-auth to v2.11.1 ([#720](https://togithub.com/googleapis/java-servicedirectory/issues/720)) ([673d374](https://togithub.com/googleapis/java-servicedirectory/commit/673d3745a91ca999f36680b46a23f92da40cf9a3))
* Update dependency google-cloud-core to v2.3.2 ([#721](https://togithub.com/googleapis/java-servicedirectory/issues/721)) ([3c718c1](https://togithub.com/googleapis/java-servicedirectory/commit/3c718c13bd7487c28dd09d99310a64f5d9459722))
* Update dependency google-cloud-storage to v2.5.0 ([#726](https://togithub.com/googleapis/java-servicedirectory/issues/726)) ([0d7edf7](https://togithub.com/googleapis/java-servicedirectory/commit/0d7edf76c00aab38e3bdccc4026e7e397842e959))
* Update dependency google-crc32c to v1.5.0 ([#727](https://togithub.com/googleapis/java-servicedirectory/issues/727)) ([675dc3c](https://togithub.com/googleapis/java-servicedirectory/commit/675dc3cd7f9ff6be734db483f7b744c5d6049ec0))
* Update dependency googleapis-common-protos to v1.56.4 ([#722](https://togithub.com/googleapis/java-servicedirectory/issues/722)) ([d8c0bdc](https://togithub.com/googleapis/java-servicedirectory/commit/d8c0bdc8989a0fbbee8f388c30e5ef898c59e8a6))
* Update dependency importlib-metadata to v4.12.0 ([#728](https://togithub.com/googleapis/java-servicedirectory/issues/728)) ([d81d2de](https://togithub.com/googleapis/java-servicedirectory/commit/d81d2decc22e642021ee31b204e465e5eb02eace))
* Update dependency jeepney to v0.8.0 ([#729](https://togithub.com/googleapis/java-servicedirectory/issues/729)) ([b04690d](https://togithub.com/googleapis/java-servicedirectory/commit/b04690d5bcc7e004f8e5b181a7401b69655d8bb7))
* Update dependency jinja2 to v3.1.2 ([#730](https://togithub.com/googleapis/java-servicedirectory/issues/730)) ([45c144c](https://togithub.com/googleapis/java-servicedirectory/commit/45c144c4ce2a6e42c37cfe6f75fb08d3981689f4))
* Update dependency protobuf to v4 ([#739](https://togithub.com/googleapis/java-servicedirectory/issues/739)) ([5221a72](https://togithub.com/googleapis/java-servicedirectory/commit/5221a72824e91a79a7965f23ec66808d2054ca48))
* Update dependency pyjwt to v2.5.0 ([#734](https://togithub.com/googleapis/java-servicedirectory/issues/734)) ([e8a6b7b](https://togithub.com/googleapis/java-servicedirectory/commit/e8a6b7b906ee30a7fbb265d23814102c008cc477))
* Update dependency requests to v2.28.1 ([#735](https://togithub.com/googleapis/java-servicedirectory/issues/735)) ([b999257](https://togithub.com/googleapis/java-servicedirectory/commit/b9992577866963a6a30c801520615ab72dd7ee7b))
* Update dependency zipp to v3.8.1 ([#737](https://togithub.com/googleapis/java-servicedirectory/issues/737)) ([a523100](https://togithub.com/googleapis/java-servicedirectory/commit/a5231005ab2d4df58bb1192a31c790814047eabd))

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

PiperOrigin-RevId: 477955264

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

Source-Link: https://togithub.com/googleapis/googleapis-gen/commit/4abcbcaec855e74a0b22a4988cf9e0eb61a83094
Copy-Tag: eyJwIjoiLmdpdGh1Yi8uT3dsQm90LnlhbWwiLCJoIjoiNGFiY2JjYWVjODU1ZTc0YTBiMjJhNDk4OGNmOWUwZWI2MWE4MzA5NCJ9
github-actions bot pushed a commit that referenced this issue Oct 5, 2022
🤖 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).
github-actions bot pushed a commit to yoshi-code-bot/google-cloud-java that referenced this issue Oct 6, 2022
…tion to v0.123.16-beta (googleapis#720)

[![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-notification](https://togithub.com/googleapis/java-notification) | `0.123.15-beta` -> `0.123.16-beta` | [![age](https://badges.renovateapi.com/packages/maven/com.google.cloud:google-cloud-notification/0.123.16-beta/age-slim)](https://docs.renovatebot.com/merge-confidence/) | [![adoption](https://badges.renovateapi.com/packages/maven/com.google.cloud:google-cloud-notification/0.123.16-beta/adoption-slim)](https://docs.renovatebot.com/merge-confidence/) | [![passing](https://badges.renovateapi.com/packages/maven/com.google.cloud:google-cloud-notification/0.123.16-beta/compatibility-slim/0.123.15-beta)](https://docs.renovatebot.com/merge-confidence/) | [![confidence](https://badges.renovateapi.com/packages/maven/com.google.cloud:google-cloud-notification/0.123.16-beta/confidence-slim/0.123.15-beta)](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**: 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-notification).
<!--renovate-debug:eyJjcmVhdGVkSW5WZXIiOiIzMi4yMTMuMCIsInVwZGF0ZWRJblZlciI6IjMyLjIxMy4wIn0=-->
github-actions bot pushed a commit that referenced this issue Oct 6, 2022
suztomo pushed a commit that referenced this issue Feb 1, 2023
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
api: storage Issues related to the Cloud Storage API. type: bug Error or flaw in code with unintended results or allowing sub-optimal usage patterns.
Projects
None yet
Development

No branches or pull requests

4 participants