Skip to content

Commit 46b5839

Browse files
authored
Merge pull request #2153 from ClickHouse/pre_0.8.1
Pre 0.8.1
2 parents 8601c02 + 32c015c commit 46b5839

File tree

9 files changed

+31
-9
lines changed

9 files changed

+31
-9
lines changed

.github/workflows/release.yml

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,6 @@ on:
66
version:
77
description: "Release version"
88
required: true
9-
default: "0.8.0-SNAPSHOT"
109

1110
env:
1211
CH_VERSION: "24.8"

CHANGELOG.md

Lines changed: 23 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,28 @@
11
## Latest
22

3+
## 0.8.1
4+
5+
### New Features
6+
- [client-v2] - Added support for Variant Data Type for RowBinary format. Can be read into a POJO or using a reader.
7+
Writing is supported only for POJO. (https://github.com/ClickHouse/clickhouse-java/pull/2130)
8+
- [client-v2] - Added support for Dynamic Data Type for RowBinary format. Can be read into a POJO or using a reader.
9+
Writing is supported only for POJO. (https://github.com/ClickHouse/clickhouse-java/pull/2130)
10+
- [client-v2] - Added support for JSON Data Type for RowBinary format. Can be read into a POJO or using a reader.
11+
Writing is supported only for POJO. (https://github.com/ClickHouse/clickhouse-java/pull/2130)
12+
- [client-v2] - Added support for `ZonedDateTime` in POJO serde. (https://github.com/ClickHouse/clickhouse-java/issues/2117)
13+
- [client-v2] - Added suport for micrometer metrics for Apache HTTP client connection pool. It is now possible to get metrics registered
14+
in micrometer registry by calling `com.clickhouse.client.api.Client.Builder.registerClientMetrics(registry, groupName)`. (https://github.com/ClickHouse/clickhouse-java/issues/1901)
15+
16+
### Bug Fixes
17+
- [client-v2] - Fixed `getTableSchema(tableName, databaseName)` now it doesn't ignore database name. (https://github.com/ClickHouse/clickhouse-java/issues/2139)
18+
- [client-v2] - Fixed `returnGeneratedValues` to not throw an exception. Keep in mind that ClickHouse doesn't support
19+
returning anything in response for `INSERT` statements. This change was done just to make client usable with certain frameworks. (https://github.com/ClickHouse/clickhouse-java/issues/2121)
20+
- [jdbc-v2] - Fixed changing database by `USE` statement. (https://github.com/ClickHouse/clickhouse-java/issues/2137)
21+
- [jbdc-v2] - Fixed `ResultSetMetadata.getColumnClassName()` to return null instead of throwing exception. This change is done only
22+
to allow certain frameworks work with the client. (https://github.com/ClickHouse/clickhouse-java/issues/2112)
23+
- [jdbc-v2] - Fixed using statements with `WITH` in JDBC v2. Previously was causing NPE. (https://github.com/ClickHouse/clickhouse-java/issues/2132)
24+
- [repo] - Fixed failing Test in Windows when attempting to locate files with reserved characters in the file path. (https://github.com/ClickHouse/clickhouse-java/issues/2114)
25+
326
## 0.8.0
427

528
### Highlights

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.0-SNAPSHOT</clickhouse-java.version>
57+
<clickhouse-java.version>0.8.1-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.0-SNAPSHOT</clickhouse-java.version>
43+
<clickhouse-java.version>0.8.1-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.0</clickhouse-java.version>-->
45+
<!-- <clickhouse-java.version>0.8.1-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.0
6+
ch_java_client_version=0.8.1
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.0
2+
ch_java_client_version=0.8.1

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.0-SNAPSHOT</clickhouse-java.version>
50+
<clickhouse-java.version>0.8.1-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.7.1-SNAPSHOT</clickhouse-java.version>
17+
<clickhouse-java.version>0.8.1-SNAPSHOT</clickhouse-java.version>
1818
<spring-boot-starter.version>2.7.18</spring-boot-starter.version>
1919
</properties>
2020

pom.xml

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

8383
<properties>
84-
<revision>0.8.0-SNAPSHOT</revision>
84+
<revision>0.8.1-SNAPSHOT</revision>
8585
<project.current.year>2025</project.current.year>
8686
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
8787
<project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding>

0 commit comments

Comments
 (0)