diff options
author | Dana Powers <dana.powers@gmail.com> | 2016-03-14 21:03:18 -0700 |
---|---|---|
committer | Dana Powers <dana.powers@gmail.com> | 2016-03-14 21:03:18 -0700 |
commit | 68b7dc3c76f8ce6306bee3fabf0c2500211515a9 (patch) | |
tree | b4a4941239d318dc74059632c45026bb9807acd4 | |
parent | d3743a0cddb2b4fe4d25bee9bd9dce91665e08b2 (diff) | |
download | kafka-python-68b7dc3c76f8ce6306bee3fabf0c2500211515a9.tar.gz |
Update changelog for 1.0.2 release
-rw-r--r-- | CHANGES.md | 30 | ||||
-rw-r--r-- | docs/changelog.rst | 37 |
2 files changed, 67 insertions, 0 deletions
@@ -1,3 +1,33 @@ +# 1.0.2 (Mar 14, 2016) + +Consumers +* Improve KafkaConsumer Heartbeat handling (dpkp PR 583) +* Fix KafkaConsumer.position bug (stefanth PR 578) +* Raise TypeError when partition is not a TopicPartition (dpkp PR 587) +* KafkaConsumer.poll should sleep to prevent tight-loops (dpkp PR 597) + +Producers +* Fix producer threading bug that can crash sender (dpkp PR 590) +* Fix bug in producer buffer pool reallocation (dpkp PR 585) +* Remove spurious warnings when closing sync SimpleProducer (twm PR 567) +* Fix FutureProduceResult.await() on python2.6 (dpkp) +* Add optional timeout parameter to KafkaProducer.flush() (dpkp) +* KafkaProducer Optimizations (zackdever PR 598) + +Clients +* Improve error handling in SimpleClient.load_metadata_for_topics (dpkp) +* Improve handling of KafkaClient.least_loaded_node failure (dpkp PR 588) + +Documentation +* Fix KafkaError import error in docs (shichao-an PR 564) +* Fix serializer / deserializer examples (scribu PR 573) + +Internals +* Update to Kafka 0.9.0.1 for integration testing +* Fix ifr.future.failure in conn.py (mortenlj PR 566) +* Improve Zookeeper / Kafka Fixture management (dpkp) + + # 1.0.1 (Feb 19, 2016) Consumers diff --git a/docs/changelog.rst b/docs/changelog.rst index 16f896a..9fa0ebf 100644 --- a/docs/changelog.rst +++ b/docs/changelog.rst @@ -1,6 +1,43 @@ Changelog ========= +1.0.2 (Mar 14, 2016) +#################### + +Consumers +--------- +* Improve KafkaConsumer Heartbeat handling (dpkp PR 583) +* Fix KafkaConsumer.position bug (stefanth PR 578) +* Raise TypeError when partition is not a TopicPartition (dpkp PR 587) +* KafkaConsumer.poll should sleep to prevent tight-loops (dpkp PR 597) + +Producers +--------- +* Fix producer threading bug that can crash sender (dpkp PR 590) +* Fix bug in producer buffer pool reallocation (dpkp PR 585) +* Remove spurious warnings when closing sync SimpleProducer (twm PR 567) +* Fix FutureProduceResult.await() on python2.6 (dpkp) +* Add optional timeout parameter to KafkaProducer.flush() (dpkp) +* KafkaProducer optimizations (zackdever PR 598) + +Clients +------- +* Improve error handling in SimpleClient.load_metadata_for_topics (dpkp) +* Improve handling of KafkaClient.least_loaded_node failure (dpkp PR 588) + +Documentation +------------- +* Fix KafkaError import error in docs (shichao-an PR 564) +* Fix serializer / deserializer examples (scribu PR 573) + +Internals +--------- +* Update to Kafka 0.9.0.1 for integration testing +* Fix ifr.future.failure in conn.py (mortenlj PR 566) +* Improve Zookeeper / Kafka Fixture management (dpkp) + + + 1.0.1 (Feb 19, 2016) #################### |