Skip to content

Commit 63be1b9

Browse files
authored
Merge pull request #2319 from ClickHouse/pre_0.8.4
Pre 0.8.4
2 parents 6631d5f + 25851c8 commit 63be1b9

File tree

8 files changed

+29
-8
lines changed

8 files changed

+29
-8
lines changed

CHANGELOG.md

+21
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,24 @@
1+
## 0.8.4
2+
3+
### Examples
4+
- [jdbc-v2] - JPA example added. (https://github.com/ClickHouse/clickhouse-java/pull/2301)
5+
6+
### Bug Fixes
7+
- [jdbc-v2] Added implementation of `ResultSetMetaData.getColumnClassName()` to return information
8+
about class name of the value stored in a result. (https://github.com/ClickHouse/clickhouse-java/issues/2112)
9+
- [client-v2] Fixed NPE when `Client.queryAll` used with `INSERT` statement because internally `columns` variable
10+
was accessed and was null. (https://github.com/ClickHouse/clickhouse-java/issues/2150)
11+
- [jdbc-v2] Fixed NPE when `ssl=true` was passed via an connection URL. (https://github.com/ClickHouse/clickhouse-java/issues/2206)
12+
- [jdbc-v2] Fixed sending correct driver version. Problem occurs because context classloader had no access to
13+
a resource file with versions. (https://github.com/ClickHouse/clickhouse-java/issues/2245)
14+
- [jdbc-v2] Fixed incorrect flag for Array values when reading result set. (https://github.com/ClickHouse/clickhouse-java/issues/2266)
15+
- [jdbc-v2] Fixed parsing parameters in PreparedStatement for cases when '?' is within quotes or similar. (https://github.com/ClickHouse/clickhouse-java/issues/2290)
16+
- [jdbc-v2] Added implementation for `com.clickhouse.jdbc.PreparedStatementImpl#getMetaData`.
17+
Complete metadata is returned only after statement execution. Partial metadata is returned before execution
18+
of the statement. (https://github.com/ClickHouse/clickhouse-java/issues/2292)
19+
- [jdbc-v2] Fixed `clearParameters` in `PreparedStatementImpl` to correctly reset parameters array. (https://github.com/ClickHouse/clickhouse-java/issues/2299)
20+
- [jdbc-v2] Fixed logging. (https://github.com/ClickHouse/clickhouse-java/pull/2303)
21+
122
## 0.8.3
223

324
### Improvements

examples/client-v2/pom.xml

+1-1
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.3-SNAPSHOT</clickhouse-java.version>
57+
<clickhouse-java.version>0.8.4-SNAPSHOT</clickhouse-java.version>
5858

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

examples/client/pom.xml

+2-2
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.3-SNAPSHOT</clickhouse-java.version>
43+
<clickhouse-java.version>0.8.4-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.3-SNAPSHOT</clickhouse-java.version>-->
45+
<!-- <clickhouse-java.version>0.8.4-SNAPSHOT</clickhouse-java.version>-->
4646

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

examples/demo-kotlin-service/gradle.properties

+1-1
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.3
6+
ch_java_client_version=0.8.4
+1-1
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,2 @@
11

2-
ch_java_client_version=0.8.3
2+
ch_java_client_version=0.8.4

examples/jdbc/pom.xml

+1-1
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.3-SNAPSHOT</clickhouse-java.version>
50+
<clickhouse-java.version>0.8.4-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

+1-1
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.3-SNAPSHOT</clickhouse-java.version>
17+
<clickhouse-java.version>0.8.4-SNAPSHOT</clickhouse-java.version>
1818
<spring-boot-starter.version>2.7.18</spring-boot-starter.version>
1919
</properties>
2020

pom.xml

+1-1
Original file line numberDiff line numberDiff line change
@@ -80,7 +80,7 @@
8080
</distributionManagement>
8181

8282
<properties>
83-
<revision>0.8.3-SNAPSHOT</revision>
83+
<revision>0.8.4-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)