File tree 3 files changed +43
-1
lines changed
3 files changed +43
-1
lines changed Original file line number Diff line number Diff line change
1
+ # 2.1.2 (Mar 17, 2025)
2
+
3
+ Fixes
4
+ * Simplify consumer.poll send fetches logic
5
+ * Fix crc validation in consumer / fetcher
6
+ * Lazy ` _unpack_records ` in PartitionRecords to fix premature fetch offset advance in consumer.poll() (#2555 )
7
+ * Debug log fetch records return; separate offsets update log
8
+ * Fix Fetcher retriable error handling (#2554 )
9
+ * Use six.add_metaclass for py2/py3 compatible abc (#2551 )
10
+
11
+ Improvements
12
+ * Add FetchMetrics class; move topic_fetch_metrics inside aggregator
13
+ * DefaultRecordsBatchBuilder: support empty batch
14
+ * MemoryRecordsBuilder: support arbitrary offset, skipping offsets
15
+ * Add record.validate_crc() for v0/v1 crc checks
16
+ * Remove fetcher message_generator / iterator interface
17
+ * Add size_in_bytes to ABCRecordBatch and implement for Legacy and Default
18
+ * Add magic property to ABCRecord and implement for LegacyRecord
19
+
1
20
# 2.1.1 (Mar 16, 2025)
2
21
3
22
Fixes
Original file line number Diff line number Diff line change 1
1
Changelog
2
2
=========
3
3
4
+ 2.1.2 (Mar 17, 2025)
5
+ ####################
6
+
7
+ Fixes
8
+ -----
9
+ * Simplify consumer.poll send fetches logic
10
+ * Fix crc validation in consumer / fetcher
11
+ * Lazy `_unpack_records ` in PartitionRecords to fix premature fetch offset advance in consumer.poll() (#2555)
12
+ * Debug log fetch records return; separate offsets update log
13
+ * Fix Fetcher retriable error handling (#2554)
14
+ * Use six.add_metaclass for py2/py3 compatible abc (#2551)
15
+
16
+ Improvements
17
+ ------------
18
+ * Add FetchMetrics class; move topic_fetch_metrics inside aggregator
19
+ * DefaultRecordsBatchBuilder: support empty batch
20
+ * MemoryRecordsBuilder: support arbitrary offset, skipping offsets
21
+ * Add record.validate_crc() for v0/v1 crc checks
22
+ * Remove fetcher message_generator / iterator interface
23
+ * Add size_in_bytes to ABCRecordBatch and implement for Legacy and Default
24
+ * Add magic property to ABCRecord and implement for LegacyRecord
25
+
26
+
4
27
2.1.1 (Mar 16, 2025)
5
28
####################
6
29
Original file line number Diff line number Diff line change 1
- __version__ = '2.1.2.dev '
1
+ __version__ = '2.1.2'
You can’t perform that action at this time.
0 commit comments