summaryrefslogtreecommitdiff
path: root/CHANGES.md
diff options
context:
space:
mode:
authorDana Powers <dana.powers@gmail.com>2016-12-19 16:25:23 -0800
committerDana Powers <dana.powers@gmail.com>2016-12-19 16:28:19 -0800
commit0e55d9957a3530f499e81ab6433676ad9c1bce87 (patch)
tree224adb86b4bd62cebf8930ebb4e34b3bb9c2ee62 /CHANGES.md
parent655953fdac787c1a140cc641502983b6676b13c5 (diff)
downloadkafka-python-0e55d9957a3530f499e81ab6433676ad9c1bce87.tar.gz
Add unreleased notes to changelog
Diffstat (limited to 'CHANGES.md')
-rw-r--r--CHANGES.md49
1 files changed, 49 insertions, 0 deletions
diff --git a/CHANGES.md b/CHANGES.md
index 86519c0..7889328 100644
--- a/CHANGES.md
+++ b/CHANGES.md
@@ -1,3 +1,52 @@
+# Unreleased
+
+Core
+* Add kafka.serializer interfaces (dpkp 912)
+
+Consumer
+* KAFKA-3007: KafkaConsumer max_poll_records (dpkp 831)
+* Raise exception if given a non-str topic (ssaamm 824)
+
+Producer
+* Update Partitioners for use with KafkaProducer (barrotsteindev 827)
+* Sort partitions before calling partitioner (ms7s 905)
+
+Client
+* Always check for request timeouts (dpkp 887)
+* When hostname lookup is necessary, do every connect (benauthor 812)
+
+Bugfixes
+* Fix errorcode check when socket.connect_ex raises an exception (guojh 907)
+* Fix fetcher bug when processing offset out of range (dpkp 911)
+* Fix possible request draining in ensure_active_group (dpkp 896)
+* Fix metadata refresh handling with 0.10+ brokers when topic list is empty (sibiryakov 867)
+* KafkaProducer should set timestamp in Message if provided (Drizzt1991 875)
+* Fix murmur2 bug handling python2 bytes that do not ascii encode (dpkp 815)
+* Monkeypatch max_in_flight_requests_per_connection when checking broker version (dpkp 834)
+* Fix message timestamp_type (qix 828)
+* Added ssl_password config option to KafkaProducer class (kierkegaard13 830)
+* from kafka import ConsumerRebalanceListener, OffsetAndMetadata
+* Use 0.10.0.1 for integration tests (dpkp 803)
+
+Logging / Error Messages
+* Always include an error for logging when the coordinator is marked dead (dpkp 890)
+* Only string-ify BrokerResponseError args if provided (dpkp 889)
+* Update warning re advertised.listeners / advertised.host.name (jeffwidman 878)
+* Fix unrecognized sasl_mechanism error message (sharego 883)
+
+Documentation
+* Add docstring for max_records (jeffwidman 897)
+* Fixup doc references to max_in_flight_requests_per_connection
+* Fix typo: passowrd --> password (jeffwidman 901)
+* Fix documentation typo 'Defualt' -> 'Default'. (rolando 895)
+* Added doc for `max_poll_records` option (Drizzt1991 881)
+* Remove old design notes from Kafka 8 era (jeffwidman 876)
+* Fix documentation typos (jeffwidman 874)
+* Fix quota violation exception message (dpkp 809)
+* Add comment for round robin partitioner with different subscriptions
+* Improve KafkaProducer docstring for retries configuration
+
+
# 1.3.1 (Aug 8, 2016)
Bugfixes