File tree Expand file tree Collapse file tree 9 files changed +31
-9
lines changed
r2dbc/clickhouse-r2dbc-spring-webflux-sample Expand file tree Collapse file tree 9 files changed +31
-9
lines changed Original file line number Diff line number Diff line change 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
Original file line number Diff line number Diff line change 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
Original file line number Diff line number Diff line change 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
Original file line number Diff line number Diff line change @@ -3,4 +3,4 @@ ktor_version=2.3.12
33kotlin_version =2.0.20
44logback_version =1.4.14
55
6- ch_java_client_version =0.8.5
6+ ch_java_client_version =0.8.6
Original file line number Diff line number Diff line change 11
2- ch_java_client_version =0.8.5
2+ ch_java_client_version =0.8.6
Original file line number Diff line number Diff line change 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
Original file line number Diff line number Diff line change 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
Original file line number Diff line number Diff line change 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
Original file line number Diff line number Diff line change 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>
You can’t perform that action at this time.
0 commit comments