Skip to content

Bump com.clickhouse:clickhouse-r2dbc from 0.7.0 to 0.7.1-patch1 in /modules/clickhouse #9508

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

Closed
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions modules/clickhouse/build.gradle
Original file line number Diff line number Diff line change
@@ -5,11 +5,11 @@ dependencies {
api project(':jdbc')

compileOnly project(':r2dbc')
compileOnly(group: 'com.clickhouse', name: 'clickhouse-r2dbc', version: '0.7.0', classifier: 'http')
compileOnly(group: 'com.clickhouse', name: 'clickhouse-r2dbc', version: '0.7.1-patch1', classifier: 'http')

testImplementation project(':jdbc-test')
testRuntimeOnly(group: 'com.clickhouse', name: 'clickhouse-jdbc', version: '0.7.0', classifier: 'http')
testImplementation 'org.assertj:assertj-core:3.26.3'
testImplementation testFixtures(project(':r2dbc'))
testRuntimeOnly(group: 'com.clickhouse', name: 'clickhouse-r2dbc', version: '0.7.0', classifier: 'http')
testRuntimeOnly(group: 'com.clickhouse', name: 'clickhouse-r2dbc', version: '0.7.1-patch1', classifier: 'http')
}

Unchanged files with check annotations Beta

)
.withExposedService("app", 8080)
) {
environment.start();

Check failure on line 24 in core/src/test/java/org/testcontainers/junit/ComposeContainerWithCopyFilesTest.java

GitHub Actions / core

ComposeContainerWithCopyFilesTest.testShouldCopyAllFilesByDefault

org.testcontainers.containers.ContainerLaunchException: Container startup failed for image docker:24.0.2
String response = readStringFromURL(environment);
assertThat(response).isEqualTo("MY_ENV_VARIABLE: override");
.withExposedService("app", 8080)
.withCopyFilesInContainer("Dockerfile", "EnvVariableRestEndpoint.java", ".env")
) {
environment.start();

Check failure on line 40 in core/src/test/java/org/testcontainers/junit/ComposeContainerWithCopyFilesTest.java

GitHub Actions / core

ComposeContainerWithCopyFilesTest.testWithFileCopyInclusionUsingFilePath

org.testcontainers.containers.ContainerLaunchException: Container startup failed for image docker:24.0.2
String response = readStringFromURL(environment);
.withExposedService("app", 8080)
.withCopyFilesInContainer("Dockerfile", "EnvVariableRestEndpoint.java", "test")
) {
environment.start();

Check failure on line 58 in core/src/test/java/org/testcontainers/junit/ComposeContainerWithCopyFilesTest.java

GitHub Actions / core

ComposeContainerWithCopyFilesTest.testWithFileCopyInclusionUsingDirectoryPath

org.testcontainers.containers.ContainerLaunchException: Container startup failed for image docker:24.0.2
String response = readStringFromURL(environment);
// The test directory (with its contents) is copied, so we get the override
String logs = container.getLogs();
assertThat(logs).contains("foo: bar");

Check failure on line 57 in core/src/test/java/org/testcontainers/junit/wait/strategy/HttpWaitStrategyTest.java

GitHub Actions / core

HttpWaitStrategyTest.testWaitUntilReadyWithSuccessWithCustomHeaders

java.lang.AssertionError: Expecting actual: "" to contain: "foo: bar"
assertThat(logs).contains("baz: boo");
}
}