File tree 3 files changed +51
-1
lines changed
3 files changed +51
-1
lines changed Original file line number Diff line number Diff line change
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
+
1
23
# 2.1.2 (Mar 17, 2025)
2
24
3
25
Fixes
Original file line number Diff line number Diff line change 1
1
Changelog
2
2
=========
3
3
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
+
4
32
2.1.2 (Mar 17, 2025)
5
33
####################
6
34
Original file line number Diff line number Diff line change 1
- __version__ = '2.1.3.dev '
1
+ __version__ = '2.1.3'
You can’t perform that action at this time.
0 commit comments