Skip to content

Commit

Permalink
Merge pull request #1917 from ClickHouse/pre_0.7.1-patch1
Browse files Browse the repository at this point in the history
Pre 0.7.1-patch1
  • Loading branch information
chernser authored Nov 7, 2024
2 parents 2de860e + ef84dde commit 41cd12e
Show file tree
Hide file tree
Showing 8 changed files with 17 additions and 10 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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 }}
Expand Down Expand Up @@ -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"]
Expand Down Expand Up @@ -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 }}
Expand Down
7 changes: 7 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -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
Expand Down
2 changes: 1 addition & 1 deletion examples/client-v2/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -64,7 +64,7 @@
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
<project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding>

<clickhouse-java.version>0.7.1-SNAPSHOT</clickhouse-java.version>
<clickhouse-java.version>0.7.1-patch1-SNAPSHOT</clickhouse-java.version>
<apache-httpclient.version>5.3.1</apache-httpclient.version>

<compiler-plugin.version>3.8.1</compiler-plugin.version>
Expand Down
2 changes: 1 addition & 1 deletion examples/client/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -66,7 +66,7 @@
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
<project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding>

<clickhouse-java.version>0.7.1-SNAPSHOT</clickhouse-java.version>
<clickhouse-java.version>0.7.1-patch1-SNAPSHOT</clickhouse-java.version>
<!-- Nightly snapshot version from https://s01.oss.sonatype.org/content/repositories/snapshots/ or latest from local -->
<!-- <clickhouse-java.version>0.7.1</clickhouse-java.version>-->

Expand Down
2 changes: 1 addition & 1 deletion examples/demo-kotlin-service/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -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")
Expand Down
2 changes: 1 addition & 1 deletion examples/demo-service/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
2 changes: 1 addition & 1 deletion examples/jdbc/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -66,7 +66,7 @@
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
<project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding>

<clickhouse-java.version>0.7.1-SNAPSHOT</clickhouse-java.version>
<clickhouse-java.version>0.7.1-patch1-SNAPSHOT</clickhouse-java.version>
<hikaricp.version>4.0.3</hikaricp.version>
<apache-httpclient.version>5.2.1</apache-httpclient.version>

Expand Down
4 changes: 2 additions & 2 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@
<module>client-v2</module>
<!-- driver -->
<module>clickhouse-jdbc</module>
<module>jdbc-v2</module>
<!-- excluded from patch <module>jdbc-v2</module>-->
<module>clickhouse-r2dbc</module>

<!-- Not working. Disabled <module>clickhouse-benchmark</module>-->
Expand Down Expand Up @@ -80,7 +80,7 @@
</distributionManagement>

<properties>
<revision>0.7.1-SNAPSHOT</revision>
<revision>0.7.1-patch1-SNAPSHOT</revision>
<project.current.year>2024</project.current.year>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
<project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding>
Expand Down

0 comments on commit 41cd12e

Please sign in to comment.