|
1 | 1 | ## Latest |
2 | 2 |
|
| 3 | +## 0.7.2 |
| 4 | + |
| 5 | +### New Components |
| 6 | +- `jdbc-v2` - pre-release version of upcoming `clickhouse-jdbc` replacement. Supports basic functionality, works only with `client-v2`. |
| 7 | +More information will be available after its release |
| 8 | + |
| 9 | +### Highlights |
| 10 | +- [repo] Added shaded packages with requires set of dependencies. Use `all` classified for `client-v2` full package. |
| 11 | +Use `shaded-all` for old jdbc driver. |
| 12 | + |
| 13 | + |
3 | 14 | ### New Features |
4 | | -- Added basic auth support for proxies. Now you can specify username/password when connecting via a proxy that requires it with HttpURLConnection and Apache HttpClient. |
| 15 | +- [client-v2] Added ability to specify client name. It means `User-Agent` will be filled with proper information (https://github.com/ClickHouse/clickhouse-java/pull/1948) |
| 16 | +- [client-v2] Implemented statement parameters for `queryAll` and `queryRecords` API methods. (https://github.com/ClickHouse/clickhouse-java/pull/1979) |
| 17 | +- [client-v2] Implemented string to number conversion. (https://github.com/ClickHouse/clickhouse-java/pull/2014) |
| 18 | +- [client-v1] Added basic auth support for proxies. Now you can specify username/password when connecting via a proxy that requires it with HttpURLConnection and Apache HttpClient. |
| 19 | +- [client-v2] Enum columns can be read as string and number. Previously only as number. Now number matching string constant is returned when get as string. (https://github.com/ClickHouse/clickhouse-java/pull/2028) |
| 20 | +- [client-v2] Client will load some server context (timezone, user) right after build. (https://github.com/ClickHouse/clickhouse-java/pull/2029) |
5 | 21 |
|
6 | 22 | ### Bug Fixes |
7 | | -- Fix for retrying on `ConnectTimeoutException` |
| 23 | +- [jdbc] Fixed default value for `result_overflow_mode` setting. (https://github.com/ClickHouse/clickhouse-java/issues/1932) |
| 24 | +- [client-v2] Fixed reading float/double values. Previously was prevented by incorrect overflow check. (https://github.com/ClickHouse/clickhouse-java/issues/1954) |
| 25 | +- [client-v2] Fixed issue with enabling client compression. Previously flag was ignore in some cases. (https://github.com/ClickHouse/clickhouse-java/issues/1958) |
| 26 | +- [client-v2] Fixed issue with reading `Array(UInt64)` because of incorrect class used to create internal array. (https://github.com/ClickHouse/clickhouse-java/issues/1990) |
| 27 | +- [client-v2] Fixed ClickHouseLZ4OutputStream issue of sending empty frame when no data left in uncompressed buffer. (https://github.com/ClickHouse/clickhouse-java/issues/1993) |
| 28 | +- [client-v2] Fix handling `ConnectTimeoutException` in retry and wrapping logic. (https://github.com/ClickHouse/clickhouse-java/pull/2015) |
8 | 29 |
|
9 | 30 | ## 0.7.1-patch1 |
10 | 31 |
|
|
0 commit comments