Bug Fix - Roll back some timezone changes that caused incorrect usage of "local time" objects for some ClickHouse queries. Note that has deprecated "naive" timestamps; however converting everything to timezone aware objects (with the UTC timezone as appropriate) causes some numpy and possibly Pandas side effects. Eventually naive datetime object support will be deprecated/eliminated, but it will take some time to ensure no breaking changes. Fixes https://github.com/ClickHouse/clickhouse-connect/issues/433
0.8.8
Improvement - Handle low level HTTP errors as "Stream Complete". This provides better compatibility with the most recent ClickHouse version when the HTTP stream is abruptly closed after a server error.
0.8.7
Improvement - Added basic support for ClickHouse geometric types Ring, Polygon, MultiPolygon, LineString, and MultiLineString. Closes https://github.com/ClickHouse/clickhouse-connect/issues/427
Bug Fix - Settings/parameters from one Client will no longer leak into later client instantiations. Fixes https://github.com/ClickHouse/clickhouse-connect/issues/426
0.8.6
Bug Fixes - Correctly stream unchunked HTTP responses. Fixes https://github.com/ClickHouse/clickhouse-connect/issues/417. - Don't use `wait_end_of_query` for any streaming requests. Fixes https://github.com/ClickHouse/clickhouse-connect/issues/416
0.8.5
Bug fix - Inserts into a Nullable integer/float column could throw an exception if the first value was `None` and the column required conversion to the numeric type (such as Python str to float). This has been fixed. Note that "mixed" Python types in an insert data set will still throw an exception (i.e., Python strings and ints should not be combined into the same column for insert. Closes https://github.com/ClickHouse/clickhouse-connect/issues/414
0.8.4
Improvement - Python 3.13 is now included in CI tests and 3.13 wheels are built for distribution. Note that PyArrow is not yet available for Python 3.13.
Bug fixes - ClickHouse errors are now detected and throw an exception even if the HTTP status code returned by ClickHouse is a 200. This can happen when there is a long-running query (such as a large `INSERT INTO ... SELECT FROM ...`) and `send_progress_in_http_headers` is enabled to keep the HTTP connection open. - Pandas NA (which is equivalent to Float NaN for Float values) is now inserted as NULL into Nullable(Float*) columns. Closes https://github.com/ClickHouse/clickhouse-connect/issues/412