Timeplus-connect

Latest version: v0.8.15

Safety actively analyzes 723650 Python packages for vulnerabilities to keep your Python projects secure.

Scan your dependencies

Page 12 of 20

0.5.19

Bug Fixes
- Fix quoting and escaping of array literals in server parameters. See [159](https://github.com/ClickHouse/clickhouse-connect/issues/159). Big thanks to
[Joachim Jablon](https://github.com/ewjoachim) for the report and the fix.
- Pandas and numpy Date values were incorrect for values after 2050. This has been fixed. https://github.com/ClickHouse/clickhouse-connect/issues/164
- Fixed server side parameter binding of the NULL value for Nullable types
- Added support for `no_proxy`/`NO_PROXY` environment variable. Also added support for lower case `http_proxy` and `https_proxy` variables. Note that
lower case versions have precedence over upper case versions. Fixes https://github.com/ClickHouse/clickhouse-connect/issues/163

0.5.18

Performance Improvement
- The server timezone will not be applied (and Python datetime types will be timezone naive) if the client and server timezones match
and the `get_client` apply_server_timezone parameter is True (the default). This improves performance where client and server
have the same (non-UTC) timezone. To override this behavior and always apply a server timezone to the result, use `apply_server_timezone='always'`.
This should fix https://github.com/ClickHouse/clickhouse-connect/issues/157

0.5.17

Timezone Improvements
- The client `query_df` and `query_df_stream` methods now accept `query_tz` and `column_tzs` parameters like other
`query*` methods.
- A new boolean parameter `apply_server_timezone` has been added to the main `get_client` method. Setting this
parameter to `True` (the default) will apply the server timezone (if not UTC) to values returned by the client `query*`
methods. The previous behavior would always return timezone naive, UTC based Python and Pandas `datetime` objects for
ClickHouse DateTime and DateTime64 columns without a defined timezone. To revert to the previous behavior, set the
`apply_server_timezone` parameter to `False`. Closes https://github.com/ClickHouse/clickhouse-connect/issues/152
- The timezone logic applied to query results has been simplified and now uses the following order of precedence:
- Use the column timezone for the column if it is specified using the `column_tzs` parameter
- Use the column timezone for the column if specified in the ClickHouse column definition (only works for ClickHouse versions 23.2 and later)
- Use the query timezone for the query if it is set using the `query_tz` parameter
- Use the "response" timezone for the query as read from the `X-ClickHouse-Timezone` header if different from the server timezone. This closes https://github.com/ClickHouse/clickhouse-connect/issues/138.
- Use the ClickHouse server timezone (if the client parameter `apply_server_timezone` is `True`)
- Note if the detected timezone according to the above precedence is UTC, `clickhouse-connect` will always return a naive datetime object with no timezone information

New Feature
- ClickHouse external data is now support for all client `query` methods. To send external data, construct a `driver.external.ExternalData` object and
send it as the `external_data` parameter in the appropriate query method. See the [ClickHouse documentation](https://clickhouse.com/docs/en/engines/table-engines/special/external-data)
for additional details. There are also examples in the [test file ](https://github.com/ClickHouse/clickhouse-connect/blob/main/tests/integration_tests/test_external_data.py).
Closes https://github.com/ClickHouse/clickhouse-connect/issues/98

0.5.16

Bug Fix
- Creating a client would fail if for some reason the user did not have access to the `system.settings` table. Thanks
to [Filipp Balakin](https://github.com/Barsoomx) for the fix.

Improvements
- String columns now accept values of bytes-like objects (bytes/bytearray/etc.) for inserts (as with other inserts, all
values for the inserted column should be the same types, either a bytes-like object or `str`). A corresponding `bytes`
read format has been enabled for String columns as well. Thanks to [Tim Nooran](https://github.com/TimNooren) for opening
the issue and providing unit tests. https://github.com/ClickHouse/clickhouse-connect/issues/148
- Cython version upgraded to 3.0.0b1

0.5.15

Bug Fix
- Remove unnecessary addition of the client database to the table name for inserts. Fixes
https://github.com/ClickHouse/clickhouse-connect/issues/145

Improvement
- The driver should now work for older versions of ClickHouse back to 19.16. Note that older versions are not
officially tested or supported (like the main ClickHouse database, we officially support the last three monthly ClickHouse
releases and the last two LTS ClickHouse releases). For versions prior to 19.17, you may want change the new `readonly`
`clickhouse_connect.common` setting to '1' to allow sending ClickHouse settings with individual queries (if the user has
write permissions). Thanks to [Aleksey Astafiev](https://github.com/aastafiev) for this contribution and for
updating the tests to run with these legacy versions!

0.5.14

Bug Fix
- Remove direct pandas import that caused an unrecoverable error when pandas was not installed.
https://github.com/ClickHouse/clickhouse-connect/issues/139

Page 12 of 20

© 2025 Safety CLI Cybersecurity Inc. All Rights Reserved.