Skip to content

Commit c09bb5c

Browse files
committed
Release 1.4.4
1 parent 6675462 commit c09bb5c

File tree

3 files changed

+36
-5
lines changed

3 files changed

+36
-5
lines changed

CHANGES.md

+17-2
Original file line numberDiff line numberDiff line change
@@ -1,30 +1,45 @@
1-
# Unreleased
1+
# 1.4.4 (Nov 20, 2018)
22

33
Bugfixes
44
* (Attempt to) Fix deadlock between consumer and heartbeat (zhgjun / dpkp #1628)
55
* Fix Metrics dict memory leak (kishorenc #1569)
66

77
Client
88
* Support Kafka record headers (hnousiainen #1574)
9-
* Add KafkaAdmin class (llamahunter #1540)
109
* Set socket timeout for the write-side of wake socketpair (Fleurer #1577)
1110
* Add kerberos domain name config for gssapi sasl mechanism handshake (the-sea #1542)
1211
* Support smaller topic metadata fetch during bootstrap (andyxning #1541)
12+
* Use TypeError for invalid timeout type (jeffwidman #1636)
13+
14+
Admin
15+
* Add KafkaAdmin class (llamahunter #1540)
16+
* Fix list_consumer_groups() to query all brokers (jeffwidman #1635)
17+
* Stop using broker-errors for client-side problems (jeffwidman #1639)
18+
* Fix send to controller (jeffwidman #1640)
19+
* Add group coordinator lookup (jeffwidman #1641)
20+
* Fix describe_groups (jeffwidman #1642)
21+
* Add list_consumer_group_offsets() (jeffwidman #1643)
22+
* Remove support for api versions as strings from KafkaAdmin (jeffwidman #1644)
23+
* Set a clear default value for `validate_only`/`include_synonyms` (jeffwidman #1645)
24+
* Bugfix: Always set this_groups_coordinator_id (jeffwidman #1650)
1325

1426
Consumer
1527
* Fix linter warning on import of ConsumerRebalanceListener (ben-harack #1591)
1628
* Remove ConsumerTimeout (emord #1587)
1729
* Return future from commit_offsets_async() (ekimekim #1560)
1830

1931
Core / Protocol
32+
* Add protocol structs for {Describe,Create,Delete} Acls (ulrikjohansson #1646/partial)
2033
* Pre-compile pack/unpack function calls (billyevans / jeffwidman #1619)
2134
* Don't use `kafka.common` internally (jeffwidman #1509)
35+
* Be explicit with tuples for %s formatting (jeffwidman #1634)
2236

2337
Documentation
2438
* Document connections_max_idle_ms (jeffwidman #1531)
2539
* Fix sphinx url (jeffwidman #1610)
2640
* Update remote urls: snappy, https, etc (jeffwidman #1603)
2741
* Minor cleanup of testing doc (jeffwidman #1613)
42+
* Various docstring / pep8 / code hygiene cleanups (jeffwidman #1647)
2843

2944
Test Infrastructure
3045
* Stop pinning `pylint` (jeffwidman #1611)

docs/changelog.rst

+18-2
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ Changelog
22
=========
33

44

5-
Unreleased
5+
1.4.4 (Nov 20, 2018)
66
##########
77

88
Bugfixes
@@ -13,10 +13,23 @@ Bugfixes
1313
Client
1414
------
1515
* Support Kafka record headers (hnousiainen #1574)
16-
* Add KafkaAdmin class (llamahunter #1540)
1716
* Set socket timeout for the write-side of wake socketpair (Fleurer #1577)
1817
* Add kerberos domain name config for gssapi sasl mechanism handshake (the-sea #1542)
1918
* Support smaller topic metadata fetch during bootstrap (andyxning #1541)
19+
* Use TypeError for invalid timeout type (jeffwidman #1636)
20+
21+
Admin
22+
-----
23+
* Add KafkaAdmin class (llamahunter #1540)
24+
* Fix list_consumer_groups() to query all brokers (jeffwidman #1635)
25+
* Stop using broker-errors for client-side problems (jeffwidman #1639)
26+
* Fix send to controller (jeffwidman #1640)
27+
* Add group coordinator lookup (jeffwidman #1641)
28+
* Fix describe_groups (jeffwidman #1642)
29+
* Add list_consumer_group_offsets() (jeffwidman #1643)
30+
* Remove support for api versions as strings from KafkaAdmin (jeffwidman #1644)
31+
* Set a clear default value for `validate_only`/`include_synonyms` (jeffwidman #1645)
32+
* Bugfix: Always set this_groups_coordinator_id (jeffwidman #1650)
2033

2134
Consumer
2235
--------
@@ -26,15 +39,18 @@ Consumer
2639

2740
Core / Protocol
2841
---------------
42+
* Add protocol structs for {Describe,Create,Delete} Acls (ulrikjohansson #1646/partial)
2943
* Pre-compile pack/unpack function calls (billyevans / jeffwidman #1619)
3044
* Don't use `kafka.common` internally (jeffwidman #1509)
45+
* Be explicit with tuples for %s formatting (jeffwidman #1634)
3146

3247
Documentation
3348
-------------
3449
* Document connections_max_idle_ms (jeffwidman #1531)
3550
* Fix sphinx url (jeffwidman #1610)
3651
* Update remote urls: snappy, https, etc (jeffwidman #1603)
3752
* Minor cleanup of testing doc (jeffwidman #1613)
53+
* Various docstring / pep8 / code hygiene cleanups (jeffwidman #1647)
3854

3955
Test Infrastructure
4056
-------------------

kafka/version.py

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

0 commit comments

Comments
 (0)