diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 73429b1ee..8540d7c91 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -153,7 +153,7 @@ jobs: matrix: # most recent LTS releases as well as latest stable builds # https://github.com/ClickHouse/ClickHouse/pulls?q=is%3Aopen+is%3Apr+label%3Arelease - clickhouse: ["23.8", "24.3", "24.6", "latest"] + clickhouse: ["23.8", "24.3", "24.8", "latest"] fail-fast: false timeout-minutes: 15 name: Java client + CH ${{ matrix.clickhouse }} @@ -335,7 +335,7 @@ jobs: needs: compile strategy: matrix: - clickhouse: ["23.8", "24.3", "24.6", "latest"] + clickhouse: ["23.8", "24.3", "24.8", "latest"] # grpc is not fully supported, and http_client and apache_http_client do not work in CI environment(due to limited threads?) protocol: ["http"] r2dbc: ["1.0.0.RELEASE", "0.9.1.RELEASE"] @@ -452,7 +452,7 @@ jobs: matrix: # most recent LTS releases as well as latest stable builds # https://github.com/ClickHouse/ClickHouse/pulls?q=is%3Aopen+is%3Apr+label%3Arelease - clickhouse: ["24.6", "latest"] + clickhouse: ["24.3", "24.8", "latest"] fail-fast: false timeout-minutes: 15 name: Client V2 + CH ${{ matrix.clickhouse }} diff --git a/CHANGELOG.md b/CHANGELOG.md index 269b04fe1..0c3cf3670 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,10 @@ +## 0.7.1-patch1 + +### Bug Fixes +- [JDBC] Fixed `java.lang.NoClassDefFoundError: com/clickhouse/client/internal/apache/hc/core5/http2/HttpVersionPolicy` (https://github.com/ClickHouse/clickhouse-java/issues/1912) +- [client-v2] Fixed multiple issues with error message handling. (https://github.com/ClickHouse/clickhouse-java/issues/1906) +- [client-v2] Fixed primitive types conversion. Now client correctly handles numbers to boolean and vice-versa. (https://github.com/ClickHouse/clickhouse-java/issues/1908) + ## 0.7.1 ### New Features diff --git a/examples/client-v2/pom.xml b/examples/client-v2/pom.xml index 24c47ce41..54c96623d 100644 --- a/examples/client-v2/pom.xml +++ b/examples/client-v2/pom.xml @@ -64,7 +64,7 @@ UTF-8 UTF-8 - 0.7.1-SNAPSHOT + 0.7.1-patch1-SNAPSHOT 5.3.1 3.8.1 diff --git a/examples/client/pom.xml b/examples/client/pom.xml index 38f4703cf..eac50ec9b 100644 --- a/examples/client/pom.xml +++ b/examples/client/pom.xml @@ -66,7 +66,7 @@ UTF-8 UTF-8 - 0.7.1-SNAPSHOT + 0.7.1-patch1-SNAPSHOT diff --git a/examples/demo-kotlin-service/build.gradle.kts b/examples/demo-kotlin-service/build.gradle.kts index 192c1e01f..48deb73d4 100644 --- a/examples/demo-kotlin-service/build.gradle.kts +++ b/examples/demo-kotlin-service/build.gradle.kts @@ -33,7 +33,7 @@ dependencies { implementation("io.ktor:ktor-serialization-kotlinx-json:$ktor_version") // https://mvnrepository.com/artifact/com.clickhouse/client-v2 - implementation("com.clickhouse:client-v2:0.7.1-SNAPSHOT") + implementation("com.clickhouse:client-v2:0.7.1-patch1-SNAPSHOT") // implementation("com.clickhouse:client-v2:0.7.1") // release version testImplementation("io.ktor:ktor-server-test-host-jvm") diff --git a/examples/demo-service/build.gradle.kts b/examples/demo-service/build.gradle.kts index 27a6bda11..6587561e5 100644 --- a/examples/demo-service/build.gradle.kts +++ b/examples/demo-service/build.gradle.kts @@ -29,7 +29,7 @@ dependencies { // -- clickhouse dependencies // Main dependency - implementation("com.clickhouse:client-v2:0.7.1-SNAPSHOT") // local or nightly build + implementation("com.clickhouse:client-v2:0.7.1-patch1-SNAPSHOT") // local or nightly build // implementation("com.clickhouse:client-v2:0.7.1") // release version // -- clickhouse-http-client dependencies if old implementation is needed diff --git a/examples/jdbc/pom.xml b/examples/jdbc/pom.xml index 9eb5f67de..81e926d85 100644 --- a/examples/jdbc/pom.xml +++ b/examples/jdbc/pom.xml @@ -66,7 +66,7 @@ UTF-8 UTF-8 - 0.7.1-SNAPSHOT + 0.7.1-patch1-SNAPSHOT 4.0.3 5.2.1 diff --git a/pom.xml b/pom.xml index c65467448..963d7c686 100644 --- a/pom.xml +++ b/pom.xml @@ -45,7 +45,7 @@ client-v2 clickhouse-jdbc - jdbc-v2 + clickhouse-r2dbc @@ -80,7 +80,7 @@ - 0.7.1-SNAPSHOT + 0.7.1-patch1-SNAPSHOT 2024 UTF-8 UTF-8