Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
24 changes: 24 additions & 0 deletions CHANGELOG.rst
Original file line number Diff line number Diff line change
@@ -1,3 +1,27 @@
3.29.3
======
October 20, 2025

Features
--------
* Upgraded cython to 3.0.x (PR 1221 & PYTHON-1390)
* Add support for DSE 6.9.x and HCD releases to CI (PYTHON-1402)
* Add execute_concurrent_async and expose execute_concurrent_* in Session (PR 1229)

Bug Fixes
---------
* Update geomet to align with requirements.txt (PR 1236)
* Connection failure to SNI endpoint when first host is unavailable (PYTHON-1419)
* Maintain compatibility with CPython 3.13 (PR 1242)

Others
------
* Remove duplicated condition in primary key check (PR 1240)
* Remove Python 3.8 which reached EOL on Oct 2024, update cryptography lib to 42 (PR 1247)
* Remove obsolete urllib2 from ez_setup.py (PR 1248)
* Remove stale dependency on sure (PR 1227)
* Removed 2.7 Cpython defines (PR 1252)

3.29.2
======
September 9, 2024
Expand Down
2 changes: 1 addition & 1 deletion cassandra/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ def emit(self, record):

logging.getLogger('cassandra').addHandler(NullHandler())

__version_info__ = (3, 29, 2)
__version_info__ = (3, 29, 3)
__version__ = '.'.join(map(str, __version_info__))


Expand Down
2 changes: 1 addition & 1 deletion docs/installation.rst
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ To check if the installation was successful, you can run::

python -c 'import cassandra; print(cassandra.__version__)'

It should print something like "3.29.2".
It should print something like "3.29.3".

.. _installation-datastax-graph:

Expand Down