Skip to content

Commit 9c7aed4

Browse files
committed
Patch Release 2.1.3
1 parent 9dd1714 commit 9c7aed4

File tree

3 files changed

+51
-1
lines changed

3 files changed

+51
-1
lines changed

CHANGES.md

+22
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,25 @@
1+
# 2.1.3 (Mar 25, 2025)
2+
3+
Fixes
4+
* Fix crash when switching to closest compatible api_version in KafkaClient (#2567)
5+
* Fix maximum version to send an OffsetFetchRequest in KafkaAdminClient (#2563)
6+
* Return empty set from consumer.partitions_for_topic when topic not found (#2556)
7+
8+
Improvements
9+
* KIP-511: Use ApiVersions v4 on initial connect w/ client_software_name + version (#2558)
10+
* KIP-74: Manage assigned partition order in consumer (#2562)
11+
* KIP-70: Auto-commit offsets on consumer.unsubscribe(), defer assignment changes to rejoin (#2560)
12+
* Use SubscriptionType to track topics/pattern/user assignment (#2565)
13+
* Add optional timeout_ms kwarg to consumer.close() (#2564)
14+
* Move ensure_valid_topic_name to kafka.util; use in client and producer (#2561)
15+
16+
Testing
17+
* Support KRaft / 4.0 brokers in tests (#2559)
18+
* Test older pythons against 4.0 broker
19+
20+
Compatibility
21+
* Add python 3.13 to compatibility list
22+
123
# 2.1.2 (Mar 17, 2025)
224

325
Fixes

docs/changelog.rst

+28
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,34 @@
11
Changelog
22
=========
33

4+
2.1.3 (Mar 25, 2025)
5+
####################
6+
7+
Fixes
8+
-----
9+
* Fix crash when switching to closest compatible api_version in KafkaClient (#2567)
10+
* Fix maximum version to send an OffsetFetchRequest in KafkaAdminClient (#2563)
11+
* Return empty set from consumer.partitions_for_topic when topic not found (#2556)
12+
13+
Improvements
14+
------------
15+
* KIP-511: Use ApiVersions v4 on initial connect w/ client_software_name + version (#2558)
16+
* KIP-74: Manage assigned partition order in consumer (#2562)
17+
* KIP-70: Auto-commit offsets on consumer.unsubscribe(), defer assignment changes to rejoin (#2560)
18+
* Use SubscriptionType to track topics/pattern/user assignment (#2565)
19+
* Add optional timeout_ms kwarg to consumer.close() (#2564)
20+
* Move ensure_valid_topic_name to kafka.util; use in client and producer (#2561)
21+
22+
Testing
23+
-------
24+
* Support KRaft / 4.0 brokers in tests (#2559)
25+
* Test older pythons against 4.0 broker
26+
27+
Compatibility
28+
-------------
29+
* Add python 3.13 to compatibility list
30+
31+
432
2.1.2 (Mar 17, 2025)
533
####################
634

kafka/version.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
__version__ = '2.1.3.dev'
1+
__version__ = '2.1.3'

0 commit comments

Comments
 (0)