summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDana Powers <dana.powers@gmail.com>2017-03-07 14:50:20 -0800
committerDana Powers <dana.powers@gmail.com>2017-03-07 14:50:20 -0800
commitc22473952b4094ee69e67cfb1a864ef2bdfe155e (patch)
tree02f581d9c4d7e0971c58959be39b842070d8cc51
parent5a0e9715f45b62cfe43e6873b8828f49ab73f710 (diff)
downloadkafka-python-c22473952b4094ee69e67cfb1a864ef2bdfe155e.tar.gz
Update changelog
-rw-r--r--CHANGES.md4
-rw-r--r--docs/changelog.rst4
2 files changed, 8 insertions, 0 deletions
diff --git a/CHANGES.md b/CHANGES.md
index 8d8b5ef..4900325 100644
--- a/CHANGES.md
+++ b/CHANGES.md
@@ -1,6 +1,7 @@
# 1.3.3 (Unreleased)
Core / Protocol
+* Fixed couple of "leaks" when gc is disabled (Mephius 979)
* Added `max_bytes` option and FetchRequest_v3 usage. (Drizzt1991 962)
* CreateTopicsRequest / Response v1 (dpkp 1012)
* Add MetadataRequest_v2 and MetadataResponse_v2 structures for KIP-78 (Drizzt1991 974)
@@ -26,6 +27,7 @@ Consumer
* Dont refresh metadata on failed group coordinator request unless needed (dpkp 1006)
* Fail-fast on timeout constraint violations during KafkaConsumer creation (harelba 986)
* Default max_poll_records to Java default of 500 (jeffwidman 947)
+* For 0.8.2, only attempt connection to coordinator if least_loaded_node succeeds (dpkp)
Producer
* change default timeout of KafkaProducer.close() to threading.TIMEOUT_MAX on py3 (mmyjona 991)
@@ -67,6 +69,8 @@ Documentation
* Spelling and grammar changes (melissacrawford396 923)
* Fix typo: coorelation --> correlation (jeffwidman 929)
* Make SSL warning list the correct Python versions (jeffwidman 924)
+* Fixup comment reference to _maybe_connect (dpkp)
+* Add ClusterMetadata sphinx documentation (dpkp)
Legacy Client
* Add send_list_offset_request for searching offset by timestamp (charsyam 1001)
diff --git a/docs/changelog.rst b/docs/changelog.rst
index 971cb39..8142138 100644
--- a/docs/changelog.rst
+++ b/docs/changelog.rst
@@ -6,6 +6,7 @@ Changelog
Core / Protocol
---------------
+* Fixed couple of "leaks" when gc is disabled (Mephius 979)
* Added `max_bytes` option and FetchRequest_v3 usage. (Drizzt1991 962)
* CreateTopicsRequest / Response v1 (dpkp 1012)
* Add MetadataRequest_v2 and MetadataResponse_v2 structures for KIP-78 (Drizzt1991 974)
@@ -33,6 +34,7 @@ Consumer
* Dont refresh metadata on failed group coordinator request unless needed (dpkp 1006)
* Fail-fast on timeout constraint violations during KafkaConsumer creation (harelba 986)
* Default max_poll_records to Java default of 500 (jeffwidman 947)
+* For 0.8.2, only attempt connection to coordinator if least_loaded_node succeeds (dpkp)
Producer
--------
@@ -79,6 +81,8 @@ Documentation
* Spelling and grammar changes (melissacrawford396 923)
* Fix typo: coorelation --> correlation (jeffwidman 929)
* Make SSL warning list the correct Python versions (jeffwidman 924)
+* Fixup comment reference to _maybe_connect (dpkp)
+* Add ClusterMetadata sphinx documentation (dpkp)
Legacy Client
-------------