Skip to content

Commit 2d305b7

Browse files
authored
Merge pull request #2373 from ClickHouse/pre_0.8.6
Pre_0.8.6
2 parents 2be5d78 + 832de2e commit 2d305b7

File tree

9 files changed

+31
-9
lines changed

9 files changed

+31
-9
lines changed

CHANGELOG.md

Lines changed: 22 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,25 @@
1+
2+
## 0.8.6
3+
4+
### Improvements
5+
- [jdbc-v2] Now using Antlr4 to parse SQL statements to get meta information about it.
6+
Invalid SQL still possible to execute if logic able to get all required information. (https://github.com/ClickHouse/clickhouse-java/pull/2351)
7+
- [jdbc-v2] Now possible to use `RowBinaryWriter` if enabled by property `com.clickhouse.jdbc.internal.DriverProperties.BETA_ROW_BINARY_WRITER`.
8+
This works well for batches. Single statements may get no benefits. (https://github.com/ClickHouse/clickhouse-java/pull/2316)
9+
10+
### Bug Fixes
11+
12+
- [jdbc-v2] Fixed parsing prepared statement arguments. (https://github.com/ClickHouse/clickhouse-java/issues/2348)
13+
- [jdbc-v2] Fixed parsing role name when it contains `-`. (https://github.com/ClickHouse/clickhouse-java/issues/2325)
14+
- [jdbc-v2] Fixed failure when `INSERT` doesn't contain `VALUES`. (https://github.com/ClickHouse/clickhouse-java/issues/2283)
15+
- [jdbc-v2] Fixed parsing `INSERT` statement when `VALUES` is in lower case. (https://github.com/ClickHouse/clickhouse-java/issues/2354)
16+
- [client-v2] Fixed NPE when async operation is request while client was built without an executor.
17+
In this case default JVM executor will be used. (https://github.com/ClickHouse/clickhouse-java/issues/2355)
18+
- [client-v2, jdbc-v2] Fixed conversion of IP addresses. When IPv4 stored as IPv6 it is correctly converted
19+
to `Inet6Address`. Similar problem fixed for JDBC. (https://github.com/ClickHouse/clickhouse-java/issues/2342)
20+
- [jdbc-v2] Fixed changing DB schema (DB name) on connection when `USE` statement executed. (https://github.com/ClickHouse/clickhouse-java/issues/2137)
21+
- [client-v2] Fixed serializing POJO with primitive `boolean` fields. (https://github.com/ClickHouse/clickhouse-java/issues/2248)
22+
123
## 0.8.5
224

325
### Improvements

examples/client-v2/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -54,7 +54,7 @@
5454
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
5555
<project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding>
5656

57-
<clickhouse-java.version>0.8.5-SNAPSHOT</clickhouse-java.version>
57+
<clickhouse-java.version>0.8.6-SNAPSHOT</clickhouse-java.version>
5858

5959
<compiler-plugin.version>3.8.1</compiler-plugin.version>
6060

examples/client/pom.xml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -40,9 +40,9 @@
4040
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
4141
<project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding>
4242

43-
<clickhouse-java.version>0.8.5-SNAPSHOT</clickhouse-java.version>
43+
<clickhouse-java.version>0.8.6-SNAPSHOT</clickhouse-java.version>
4444
<!-- Nightly snapshot version from https://s01.oss.sonatype.org/content/repositories/snapshots/ or latest from local -->
45-
<!-- <clickhouse-java.version>0.8.5-SNAPSHOT</clickhouse-java.version>-->
45+
<!-- <clickhouse-java.version>0.8.6-SNAPSHOT</clickhouse-java.version>-->
4646

4747
<apache-httpclient.version>5.2.1</apache-httpclient.version>
4848

examples/demo-kotlin-service/gradle.properties

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,4 +3,4 @@ ktor_version=2.3.12
33
kotlin_version=2.0.20
44
logback_version=1.4.14
55

6-
ch_java_client_version=0.8.5
6+
ch_java_client_version=0.8.6
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,2 @@
11

2-
ch_java_client_version=0.8.5
2+
ch_java_client_version=0.8.6

examples/jdbc/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -47,7 +47,7 @@
4747
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
4848
<project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding>
4949

50-
<clickhouse-java.version>0.8.5-SNAPSHOT</clickhouse-java.version>
50+
<clickhouse-java.version>0.8.6-SNAPSHOT</clickhouse-java.version>
5151
<hikaricp.version>4.0.3</hikaricp.version>
5252
<apache-httpclient.version>5.2.1</apache-httpclient.version>
5353

examples/r2dbc/clickhouse-r2dbc-spring-webflux-sample/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@
1414
<properties>
1515
<maven.compiler.source>1.8</maven.compiler.source>
1616
<maven.compiler.target>1.8</maven.compiler.target>
17-
<clickhouse-java.version>0.8.5-SNAPSHOT</clickhouse-java.version>
17+
<clickhouse-java.version>0.8.6-SNAPSHOT</clickhouse-java.version>
1818
<spring-boot-starter.version>2.7.18</spring-boot-starter.version>
1919
</properties>
2020

performance/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@
1515
<properties>
1616
<apache.httpclient.version>5.3.1</apache.httpclient.version>
1717
<slf4j.version>2.0.17</slf4j.version>
18-
<ch.jdbc.revision>0.8.5-SNAPSHOT</ch.jdbc.revision>
18+
<ch.jdbc.revision>0.8.6-SNAPSHOT</ch.jdbc.revision>
1919
<jmh.version>1.37</jmh.version>
2020
<testcontainers.version>1.20.6</testcontainers.version>
2121

pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -80,7 +80,7 @@
8080
</distributionManagement>
8181

8282
<properties>
83-
<revision>0.8.5-SNAPSHOT</revision>
83+
<revision>0.8.6-SNAPSHOT</revision>
8484
<project.current.year>2025</project.current.year>
8585
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
8686
<project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding>

0 commit comments

Comments
 (0)