Skip to content

chore(deps): bump clickhouse-connect from 0.7.16 to 0.11.0 in /templates/python-cluster - #3518

Closed
dependabot[bot] wants to merge 1 commit into
mainfrom
dependabot/pip/templates/python-cluster/clickhouse-connect-0.11.0
Closed

chore(deps): bump clickhouse-connect from 0.7.16 to 0.11.0 in /templates/python-cluster#3518
dependabot[bot] wants to merge 1 commit into
mainfrom
dependabot/pip/templates/python-cluster/clickhouse-connect-0.11.0

Conversation

@dependabot

@dependabot dependabot Bot commented on behalf of github Feb 13, 2026

Copy link
Copy Markdown
Contributor

Bumps clickhouse-connect from 0.7.16 to 0.11.0.

Release notes

Sourced from clickhouse-connect's releases.

v0.11.0

What's Changed

Improvements

  • Add support for mid-stream exceptions. Closes #626
  • Add support for QBit data type. Closes #570
  • Add the ability to create table from PyArrow objects. Addresses #588
  • Always generate query_id from the client side as a UUID4 if it is not explicitly set. Closes #596
  • Extend support for creating tables from PyArrow objects to include datetime/timestamp types. Closes #605
  • Add pre-commit hooks for auto-linting contributions at commit time. Addresses #607
  • Auto-enable cancel_http_readonly_queries_on_client_close setting for HTTP clients to ensure SELECT queries are cancelled on the server when the client disconnects. Closes #641

Bug Fixes

  • Raise OperationalError when ResponseSource hits network failure before any data is received. Previously, empty result would be returned. Closes #620
  • Fixed a bug where InsertContext state was not reset on insert failure, leading to reuse errors when data was passed separately. Closes #616
  • Fixed UTC-equivalent timezone recognition issue where servers returning Etc/UCT, GMT, or other UTC-equivalent timezone names caused inconsistent behavior with utc_tz_aware=False. DateTime columns with explicit UTC timezones now correctly return naive datetimes when utc_tz_aware=False regardless of the specific UTC-equivalent timezone name returned by the server. Closes #629
  • Extend UTC-equivalence checks to Arrow queries.

New Contributors

Full Changelog: ClickHouse/clickhouse-connect@v0.10.0...v0.11.0

v0.10.0

What's Changed

Improvements

  • Added SQLAlchemy core API support for ARRAY JOIN and FINAL modifier. Closes #579
  • Added Python 3.14 support 🎉 (non-free-threaded build only; free-threaded builds are not yet supported). Closes #574
  • Added utc_tz_aware parameter to client and query methods to opt in to returning timezone-aware UTC objects for DateTime/DateTime64 columns. Default behavior remains the same and returns tz naive objects for backward compatibility.
    • Note: this parameter will likely be removed and only return tz-aware dts in some future release. Closes #566
  • Added executor parameter to AsyncClient constructor to allow passing a custom executor for async operations. This allows users to control the concurrency and thread pool used by the async client.

Bug Fixes

  • Fixed DST fallback bug in DateTime and DateTime64 types caused by passing potentially ambiguous times to pd.DateTimeIndex constructor. Closes #585
  • Fixed issue with JSON key dot escaping. Closes #571

New Contributors

Full Changelog: ClickHouse/clickhouse-connect@v0.9.2...v0.10.0

v0.9.2

... (truncated)

Changelog

Sourced from clickhouse-connect's changelog.

0.11.0, 2026-02-10

Python 3.9 Deprecation

Python 3.9 EOL'd Oct 2025. Support for Python 3.9 is now softly deprecated and has been removed from our CI test matrix but distribution wheels will continue to be built until the 1.0 release or until the builds naturally fail, whichever comes first. A DeprecationWarning will now be displayed when initializing the client on Python 3.9. Users should plan to upgrade to Python 3.10+ as 3.9 compatibility may break unexpectedly in future updates.

Bug Fixes

  • Raise OperationalError when ResponseSource hits network failure before any data is received. Previously, empty result would be returned. Closes #620
  • Fix issue with DROP table in client temp table test.
  • Fixed a bug where InsertContext state was not reset on insert failure, leading to reuse errors when data was passed separately.
  • Fixed UTC-equivalent timezone recognition issue where servers returning Etc/UCT, GMT, or other UTC-equivalent timezone names caused inconsistent behavior with utc_tz_aware=False. DateTime columns with explicit UTC timezones now correctly return naive datetimes when utc_tz_aware=False regardless of the specific UTC-equivalent timezone name returned by the server. Closes #629

Improvements

  • Add support for mid-stream exceptions. Closes #626
  • Add support for QBit data type. Closes #570
  • Add the ability to create table from PyArrow objects. Addresses #588
  • Always generate query_id from the client side as a UUID4 if it is not explicitly set. Closes #596
  • Extend support for creating tables from PyArrow objects to include datetime/timestamp types. Closes #605
  • Add pre-commit hooks for auto-linting contributions at commit time. Addresses #607
  • Add missing type annotation. Closes #567
  • Auto-enable cancel_http_readonly_queries_on_client_close setting for HTTP clients to ensure SELECT queries are cancelled on the server when the client disconnects. Closes #641

0.10.0, 2025-11-14

Bug Fixes

  • Fixed DST fallback bug in DateTime and DateTime64 types caused by passing potentially ambiguous times to pd.DateTimeIndex constructor. Closes #585
  • Fixed issue with JSON key dot escaping. Closes #571

Improvements

  • Added SQLAlchemy core API support for ARRAY JOIN and FINAL modifier. Closes #579
  • Added Python 3.14 support (non-free-threaded build only; free-threaded builds are not yet supported). Closes #574
  • Added utc_tz_aware parameter to client and query methods to opt in to returning timezone-aware UTC objects for DateTime/DateTime64 columns. Default behavior remains the same and returns tz naive objects for backward compatibility. Note: this parameter will likely be removed and only return tz-aware dts in some future release. Closes #566
  • Added executor parameter to AsyncClient constructor to allow passing a custom executor for async operations. This allows users to control the concurrency and thread pool used by the async client.

0.9.2, 2025-09-25

  • Updated python_requires to drop Python 3.8 and advertise support for 3.9–3.13
  • Allow passing role as a field in the settings keyword argument to set a role for a specific query

0.9.1, 2025-09-16

  • Fix problem with typing that forced numpy to be installed.

0.9.0, 2025-09-16

Breaking Changes

  • WARNING: BREAKING CHANGE — Removed support for sqlalchemy 1.3 which reached its EOL in 2021. The minimum required version is now 1.4.40.
  • WARNING: BREAKING CHANGE — Behavior for reading from IPv6 columns has changed:

... (truncated)

Commits
  • eef09a9 0.11.0 release prep (#647)
  • b08a429 Fix mypy typing errors by explicitly exporting Client (#643)
  • fe36fd9 raise operationalerror when hitting network failure prior to receiving data i...
  • 713c9b4 Joe/626 add support for mid stream exception detection via x clickhouse excep...
  • 5d89074 auto enable cancel readonly queries on client close (#642)
  • f5934ab fix: handle Etc/UTC timezone equivalence for naive datetime conversion (#621)
  • ff094f7 ensure utc-equivalent timezones are recognized (#630)
  • 5990dc5 Joe/610 drop python39 support (#628)
  • fe1654f Misc. test workflow cleanup/improvements (#631)
  • c0f7bde update test matrix (#627)
  • Additional commits viewable in compare view

Dependabot compatibility score

Dependabot will resolve any conflicts with this PR as long as you don't alter it yourself. You can also trigger a rebase manually by commenting @dependabot rebase.


Dependabot commands and options

You can trigger Dependabot actions by commenting on this PR:

  • @dependabot rebase will rebase this PR
  • @dependabot recreate will recreate this PR, overwriting any edits that have been made to it
  • @dependabot show <dependency name> ignore conditions will show all of the ignore conditions of the specified dependency
  • @dependabot ignore this major version will close this PR and stop Dependabot creating any more for this major version (unless you reopen the PR or upgrade to it yourself)
  • @dependabot ignore this minor version will close this PR and stop Dependabot creating any more for this minor version (unless you reopen the PR or upgrade to it yourself)
  • @dependabot ignore this dependency will close this PR and stop Dependabot creating any more for this dependency (unless you reopen the PR or upgrade to it yourself)

Note

Low Risk
Single dependency version bump in a template requirements file; risk is limited to potential runtime/compatibility changes in clickhouse-connect for users of this template.

Overview
Updates the templates/python-cluster template to use clickhouse-connect==0.11.0 (from 0.7.16) in requirements.txt.

Written by Cursor Bugbot for commit 1de0c5f. This will update automatically on new commits. Configure here.

@dependabot dependabot Bot added dependencies Pull requests that update a dependency file python Pull requests that update Python code templates labels Feb 13, 2026
@vercel

vercel Bot commented Feb 13, 2026

Copy link
Copy Markdown

The latest updates on your projects. Learn more about Vercel for GitHub.

Project Deployment Actions Updated (UTC)
docs-v2 Ready Ready Preview, Comment Feb 24, 2026 2:50am

Request Review

@dependabot
dependabot Bot force-pushed the dependabot/pip/templates/python-cluster/clickhouse-connect-0.11.0 branch from e546195 to 2710fdd Compare February 14, 2026 03:14
@dependabot
dependabot Bot force-pushed the dependabot/pip/templates/python-cluster/clickhouse-connect-0.11.0 branch from 2710fdd to dce38b1 Compare February 19, 2026 02:19
Bumps [clickhouse-connect](https://github.com/ClickHouse/clickhouse-connect) from 0.7.16 to 0.11.0.
- [Release notes](https://github.com/ClickHouse/clickhouse-connect/releases)
- [Changelog](https://github.com/ClickHouse/clickhouse-connect/blob/main/CHANGELOG.md)
- [Commits](ClickHouse/clickhouse-connect@v0.7.16...v0.11.0)

---
updated-dependencies:
- dependency-name: clickhouse-connect
  dependency-version: 0.11.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
...

Signed-off-by: dependabot[bot] <support@github.com>
@dependabot
dependabot Bot force-pushed the dependabot/pip/templates/python-cluster/clickhouse-connect-0.11.0 branch from dce38b1 to 1de0c5f Compare February 24, 2026 02:48
@dependabot @github

dependabot Bot commented on behalf of github Feb 24, 2026

Copy link
Copy Markdown
Contributor Author

Looks like clickhouse-connect is up-to-date now, so this is no longer needed.

@dependabot dependabot Bot closed this Feb 24, 2026
@dependabot
dependabot Bot deleted the dependabot/pip/templates/python-cluster/clickhouse-connect-0.11.0 branch February 24, 2026 18:44
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

dependencies Pull requests that update a dependency file python Pull requests that update Python code templates

Projects

None yet

Development

Successfully merging this pull request may close these issues.

0 participants