You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: CHANGELOG.md
+23Lines changed: 23 additions & 0 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -1,5 +1,28 @@
1
1
## Latest
2
2
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)
0 commit comments