-
Notifications
You must be signed in to change notification settings - Fork 313
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
deps: bump com.google.cloud:libraries-bom from 26.30.0 to 26.31.0 #2565
deps: bump com.google.cloud:libraries-bom from 26.30.0 to 26.31.0 #2565
Conversation
Bumps [com.google.cloud:libraries-bom](https://github.com/googleapis/java-cloud-bom) from 26.30.0 to 26.31.0. - [Release notes](https://github.com/googleapis/java-cloud-bom/releases) - [Changelog](https://github.com/googleapis/java-cloud-bom/blob/main/release-please-config.json) - [Commits](googleapis/java-cloud-bom@v26.30.0...v26.31.0) --- updated-dependencies: - dependency-name: com.google.cloud:libraries-bom dependency-type: direct:production update-type: version-update:semver-minor ... Signed-off-by: dependabot[bot] <support@github.com>
I'm having some authentication issues at the moment. The change LGTM, but only after I created a test to verify to myself that it would work: In import com.google.iam.v1.AuditLogConfig;
import com.google.iam.v1.Policy;
@Test
void writeProtocolMessageEnumTest() {
Policy abstractMessage = Policy.newBuilder().build();
AuditLogConfig protocolMessageEnum = AuditLogConfig.newBuilder().build();
TestEntities.TestEntityProtobuf testEntity = new TestEntities.TestEntityProtobuf(
"id42",
abstractMessage,
protocolMessageEnum);
WriteBuilder writeBuilder = mock(WriteBuilder.class);
ValueBinder<WriteBuilder> valueBinder = mock(ValueBinder.class);
when(writeBuilder.set("id")).thenReturn(valueBinder);
when(writeBuilder.set("abstractMessage")).thenReturn(valueBinder);
when(writeBuilder.set("protocolMessageEnum")).thenReturn(valueBinder);
this.spannerEntityWriter.write(testEntity, writeBuilder::set);
verify(valueBinder).to(testEntity.id);
verify(valueBinder).to(abstractMessage);
verify(valueBinder).to(protocolMessageEnum);
} Then in
Then in the pom.xml for this module: <dependency>
<groupId>com.google.api.grpc</groupId>
<artifactId>proto-google-iam-v1</artifactId>
<scope>test</scope>
</dependency> Without your update to the |
Thank you @burkedavison! I've added that test case in and will re-run the CI. Hopefully the tests should be fixed now. |
Error:
|
This reverts commit 9c861bf.
Error:
This seems to be a known issue from spring-data-commons: spring-projects/spring-data-commons#3025 Seems like it will be released in v3.2.3 |
Quality Gate passedIssues Measures |
Bumps com.google.cloud:libraries-bom from 26.30.0 to 26.31.0.
Release notes
Sourced from com.google.cloud:libraries-bom's releases.
... (truncated)
Commits
ba97ac2
chore: release main (#6377)085bb3a
deps: update dependency com.google.cloud:google-cloud-spanner-bom to v6.57.0 ...a111325
deps: update dependency com.google.cloud:google-cloud-spanner-jdbc to v2.15.2...466896d
deps: update dependency com.google.cloud:google-cloud-spanner-bom to v6.57.0 ...965f2b9
deps: update dependency com.google.cloud:google-cloud-pubsublite-bom to v1.12...88ab161
deps: update dependency com.google.cloud:google-cloud-pubsub-bom to v1.126.2 ...5c7b9e1
deps: update dependency com.google.cloud:google-cloud-logging-logback to v0.1...c48a76a
deps: update dependency com.google.cloud:google-cloud-logging-logback to v0.1...60d9c13
deps: update dependency com.google.cloud:google-cloud-bigquery to v2.37.0 (#6...660df5e
deps: update dependency com.google.cloud:google-cloud-firestore-bom to v3.16....Dependabot will resolve any conflicts with this PR as long as you don't alter it yourself. You can also trigger a rebase manually by commenting
@dependabot rebase
.Dependabot commands and options
You can trigger Dependabot actions by commenting on this PR:
@dependabot rebase
will rebase this PR@dependabot recreate
will recreate this PR, overwriting any edits that have been made to it@dependabot merge
will merge this PR after your CI passes on it@dependabot squash and merge
will squash and merge this PR after your CI passes on it@dependabot cancel merge
will cancel a previously requested merge and block automerging@dependabot reopen
will reopen this PR if it is closed@dependabot close
will close this PR and stop Dependabot recreating it. You can achieve the same result by closing it manually@dependabot show <dependency name> ignore conditions
will show all of the ignore conditions of the specified dependency@dependabot ignore this major version
will close this PR and stop Dependabot creating any more for this major version (unless you reopen the PR or upgrade to it yourself)@dependabot ignore this minor version
will close this PR and stop Dependabot creating any more for this minor version (unless you reopen the PR or upgrade to it yourself)@dependabot ignore this dependency
will close this PR and stop Dependabot creating any more for this dependency (unless you reopen the PR or upgrade to it yourself)