Skip to content

Commit 07b9fba

Browse files
committed
Release 3.29.4: changelog, version and documentation
1 parent 0fa9520 commit 07b9fba

File tree

4 files changed

+30
-4
lines changed

4 files changed

+30
-4
lines changed

CHANGELOG.rst

Lines changed: 26 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,29 @@
1+
3.29.4
2+
======
3+
August 16, 2025
4+
5+
Features
6+
--------
7+
* Add Cluster.application_info to report application information to server (#486)
8+
* Move to uv package manager (#496)
9+
10+
Bug Fixes
11+
---------
12+
* Fix deadlocks on evicting connection in HostConnectionPool and ConnectionPool (#499)
13+
* Fix libevreactor crashing when connection added and closed right away (#508)
14+
15+
Others
16+
------
17+
* Remove outdated protocols support (v1 and v2) (#493, #525)
18+
* Remove DSE integration tests (#502)
19+
* Optimise shard port allocator (#506)
20+
* Remove self.assert (#507)
21+
* Minor performance improvement for make_token_replica_map (#513)
22+
* Remove in-memory scylla tablets support (#518)
23+
* Add optional dependancies for SNAPPY and LZ4 compressors (#517)
24+
* Remove support for protocol versions not supported by scylla (#492)
25+
* Set monitor_reporting_enabled False by default (#523)
26+
127
3.29.3
228
======
329
Mart 11, 2025

cassandra/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ def emit(self, record):
2323

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

26-
__version_info__ = (3, 29, 3)
26+
__version_info__ = (3, 29, 4)
2727
__version__ = '.'.join(map(str, __version_info__))
2828

2929

docs/installation.rst

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ To check if the installation was successful, you can run::
2626

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

29-
It should print something like "3.29.3".
29+
It should print something like "3.29.4".
3030

3131
(*Optional*) Compression Support
3232
--------------------------------
@@ -208,7 +208,7 @@ through `Homebrew <http://brew.sh/>`_. For example, on Mac OS X::
208208

209209
$ brew install libev
210210

211-
The libev extension can now be built for Windows as of Python driver version 3.29.3. You can
211+
The libev extension can now be built for Windows as of Python driver version 3.29.4. You can
212212
install libev using any Windows package manager. For example, to install using `vcpkg <https://vcpkg.io>`_:
213213

214214
$ vcpkg install libev

docs/poetry.lock

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)