Skip to content

Commit 88fffbd

Browse files
authored
deps: update dependency com.google.cloud:google-cloud-shared-dependencies 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-->
1 parent 93be977 commit 88fffbd

File tree

2 files changed

+3
-2
lines changed

2 files changed

+3
-2
lines changed

google-cloud-storage/src/test/java/com/google/cloud/storage/it/ITGrpcInterceptorTest.java

+2-1
Original file line numberDiff line numberDiff line change
@@ -86,7 +86,8 @@ public void grpcStorageOptions_allowSpecifyingInterceptor() throws Exception {
8686
System.out.println("requestParams = " + requestParams);
8787

8888
String expected = String.format("project=projects/%s", options.getProjectId());
89-
assertThat(requestParams).contains(expected);
89+
String expectedEncoded = String.format("project=projects%%2F%s", options.getProjectId());
90+
assertThat(requestParams).containsAnyOf(expected, expectedEncoded);
9091
}
9192

9293
private static final class Interceptor implements ClientInterceptor {

pom.xml

+1-1
Original file line numberDiff line numberDiff line change
@@ -54,7 +54,7 @@
5454
<project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding>
5555
<github.global.server>github</github.global.server>
5656
<site.installationModule>google-cloud-storage-parent</site.installationModule>
57-
<google.cloud.shared-dependencies.version>3.10.1</google.cloud.shared-dependencies.version>
57+
<google.cloud.shared-dependencies.version>3.11.0</google.cloud.shared-dependencies.version>
5858
</properties>
5959

6060
<dependencyManagement>

0 commit comments

Comments
 (0)