Skip to content

Commit

Permalink
deps: update dependency com.google.cloud:google-cloud-shared-dependen…
Browse files Browse the repository at this point in the history
…cies to v3.11.0 (#2050)

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

---

### Configuration

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

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

♻ **Rebasing**: 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, check this box

---

This PR has been generated by [Mend Renovate](https://www.mend.io/free-developer-tools/renovate/). View repository job log [here](https://app.renovatebot.com/dashboard#github/googleapis/java-storage).
<!--renovate-debug:eyJjcmVhdGVkSW5WZXIiOiIzNS4xMTAuMCIsInVwZGF0ZWRJblZlciI6IjM1LjExMC4wIiwidGFyZ2V0QnJhbmNoIjoibWFpbiJ9-->
  • Loading branch information
renovate-bot committed Jun 7, 2023
1 parent 93be977 commit 88fffbd
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
Expand Up @@ -86,7 +86,8 @@ public void grpcStorageOptions_allowSpecifyingInterceptor() throws Exception {
System.out.println("requestParams = " + requestParams);

String expected = String.format("project=projects/%s", options.getProjectId());
assertThat(requestParams).contains(expected);
String expectedEncoded = String.format("project=projects%%2F%s", options.getProjectId());
assertThat(requestParams).containsAnyOf(expected, expectedEncoded);
}

private static final class Interceptor implements ClientInterceptor {
Expand Down
2 changes: 1 addition & 1 deletion pom.xml
Expand Up @@ -54,7 +54,7 @@
<project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding>
<github.global.server>github</github.global.server>
<site.installationModule>google-cloud-storage-parent</site.installationModule>
<google.cloud.shared-dependencies.version>3.10.1</google.cloud.shared-dependencies.version>
<google.cloud.shared-dependencies.version>3.11.0</google.cloud.shared-dependencies.version>
</properties>

<dependencyManagement>
Expand Down

0 comments on commit 88fffbd

Please sign in to comment.