File tree Expand file tree Collapse file tree 3 files changed +85
-1
lines changed Expand file tree Collapse file tree 3 files changed +85
-1
lines changed Original file line number Diff line number Diff line change
1
+ # 1.4.3 (May 26, 2018)
2
+
3
+ Compatibility
4
+ * Fix for python 3.7 support: remove 'async' keyword from SimpleProducer (dpkp #1454 )
5
+
6
+ Client
7
+ * Improve BrokerConnection initialization time (romulorosa #1475 )
8
+ * Ignore MetadataResponses with empty broker list (dpkp #1506 )
9
+ * Improve connection handling when bootstrap list is invalid (dpkp #1507 )
10
+
11
+ Consumer
12
+ * Check for immediate failure when looking up coordinator in heartbeat thread (dpkp #1457 )
13
+
14
+ Core / Protocol
15
+ * Always acquire client lock before coordinator lock to avoid deadlocks (dpkp #1464 )
16
+ * Added AlterConfigs and DescribeConfigs apis (StephenSorriaux #1472 )
17
+ * Fix CreatePartitionsRequest_v0 (StephenSorriaux #1469 )
18
+ * Add codec validators to record parser and builder for all formats (tvoinarovskyi #1447 )
19
+ * Fix MemoryRecord bugs re error handling and add test coverage (tvoinarovskyi #1448 )
20
+ * Force lz4 to disable Kafka-unsupported block linking when encoding (mnito #1476 )
21
+ * Stop shadowing ` ConnectionError ` (jeffwidman #1492 )
22
+
23
+ Documentation
24
+ * Document methods that return None (jeffwidman #1504 )
25
+ * Minor doc capitalization cleanup (jeffwidman)
26
+ * Adds add_callback/add_errback example to docs (Berkodev #1441 )
27
+ * Fix KafkaConsumer docstring for request_timeout_ms default (dpkp #1459 )
28
+
29
+ Test Infrastructure
30
+ * Skip flakey SimpleProducer test (dpkp)
31
+ * Fix skipped integration tests if KAFKA_VERSION unset (dpkp #1453 )
32
+
33
+ Logging / Error Messages
34
+ * Stop using deprecated log.warn() (jeffwidman)
35
+ * Change levels for some heartbeat thread logging (dpkp #1456 )
36
+ * Log Heartbeat thread start / close for debugging (dpkp)
37
+
38
+
1
39
# 1.4.2 (Mar 10, 2018)
2
40
3
41
Bugfixes
Original file line number Diff line number Diff line change 1
1
Changelog
2
2
=========
3
3
4
+ 1.4.3 (May 26, 2018)
5
+ ####################
6
+
7
+ Compatibility
8
+ -------------
9
+ * Fix for python 3.7 support: remove 'async' keyword from SimpleProducer (dpkp #1454)
10
+
11
+ Client
12
+ ------
13
+ * Improve BrokerConnection initialization time (romulorosa #1475)
14
+ * Ignore MetadataResponses with empty broker list (dpkp #1506)
15
+ * Improve connection handling when bootstrap list is invalid (dpkp #1507)
16
+
17
+ Consumer
18
+ --------
19
+ * Check for immediate failure when looking up coordinator in heartbeat thread (dpkp #1457)
20
+
21
+ Core / Protocol
22
+ ---------------
23
+ * Always acquire client lock before coordinator lock to avoid deadlocks (dpkp #1464)
24
+ * Added AlterConfigs and DescribeConfigs apis (StephenSorriaux #1472)
25
+ * Fix CreatePartitionsRequest_v0 (StephenSorriaux #1469)
26
+ * Add codec validators to record parser and builder for all formats (tvoinarovskyi #1447)
27
+ * Fix MemoryRecord bugs re error handling and add test coverage (tvoinarovskyi #1448)
28
+ * Force lz4 to disable Kafka-unsupported block linking when encoding (mnito #1476)
29
+ * Stop shadowing `ConnectionError ` (jeffwidman #1492)
30
+
31
+ Documentation
32
+ -------------
33
+ * Document methods that return None (jeffwidman #1504)
34
+ * Minor doc capitalization cleanup (jeffwidman)
35
+ * Adds add_callback/add_errback example to docs (Berkodev #1441)
36
+ * Fix KafkaConsumer docstring for request_timeout_ms default (dpkp #1459)
37
+
38
+ Test Infrastructure
39
+ -------------------
40
+ * Skip flakey SimpleProducer test (dpkp)
41
+ * Fix skipped integration tests if KAFKA_VERSION unset (dpkp #1453)
42
+
43
+ Logging / Error Messages
44
+ ------------------------
45
+ * Stop using deprecated log.warn() (jeffwidman)
46
+ * Change levels for some heartbeat thread logging (dpkp #1456)
47
+ * Log Heartbeat thread start / close for debugging (dpkp)
48
+
49
+
4
50
1.4.2 (Mar 10, 2018)
5
51
####################
6
52
Original file line number Diff line number Diff line change 1
- __version__ = '1.4.3.dev '
1
+ __version__ = '1.4.3'
You can’t perform that action at this time.
0 commit comments