summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDana Powers <dana.powers@gmail.com>2016-04-24 23:03:29 -0700
committerDana Powers <dana.powers@gmail.com>2016-04-24 23:03:29 -0700
commitdd589c320d716ec4b62a4dd2765398c62dec0105 (patch)
treeebb9dc822c8c427a5e36bca64eb2f386e9cbfaf3
parentb06e42329eea61e82898e3fd897ceceaabf33c74 (diff)
downloadkafka-python-dd589c320d716ec4b62a4dd2765398c62dec0105.tar.gz
Update changelogs for 1.1.0 release
-rw-r--r--CHANGES.md38
-rw-r--r--docs/changelog.rst46
2 files changed, 84 insertions, 0 deletions
diff --git a/CHANGES.md b/CHANGES.md
index 22ce23d..4ed4bfc 100644
--- a/CHANGES.md
+++ b/CHANGES.md
@@ -1,3 +1,41 @@
+# 1.1.0 (Apr 25, 2016)
+
+Consumers
+* Avoid resending FetchRequests that are pending on internal queue
+* Log debug messages when skipping fetched messages due to offset checks
+* KAFKA-3013: Include topic-partition in exception for expired batches
+* KAFKA-3318: clean up consumer logging and error messages
+* Improve unknown coordinator error handling
+* Improve auto-commit error handling when group_id is None
+* Add paused() API (zackdever PR 602)
+* Add default_offset_commit_callback to KafkaConsumer DEFAULT_CONFIGS
+
+Producers
+<none>
+
+Clients
+* Support SSL connections
+* Use selectors module for non-blocking IO
+* Refactor KafkaClient connection management
+* Fix AttributeError in __del__
+* SimpleClient: catch errors thrown by _get_leader_for_partition (zackdever PR 606)
+
+Documentation
+* Fix serializer/deserializer examples in README
+* Update max.block.ms docstring
+* Remove errant next(consumer) from consumer documentation
+* Add producer.flush() to usage docs
+
+Internals
+* Add initial metrics implementation (zackdever PR 637)
+* KAFKA-2136: support Fetch and Produce v1 (throttle_time_ms)
+* Use version-indexed lists for request/response protocol structs (dpkp PR 630)
+* Split kafka.common into kafka.structs and kafka.errors
+* Handle partial socket send() (dpkp PR 611)
+* Fix windows support (dpkp PR 603)
+* IPv6 support (TimEvens PR 615; Roguelazer PR 642)
+
+
# 1.0.2 (Mar 14, 2016)
Consumers
diff --git a/docs/changelog.rst b/docs/changelog.rst
index 9fa0ebf..eb070ee 100644
--- a/docs/changelog.rst
+++ b/docs/changelog.rst
@@ -1,6 +1,52 @@
Changelog
=========
+1.1.0 (Apr 25, 2016)
+####################
+
+Consumers
+---------
+* Avoid resending FetchRequests that are pending on internal queue
+* Log debug messages when skipping fetched messages due to offset checks
+* KAFKA-3013: Include topic-partition in exception for expired batches
+* KAFKA-3318: clean up consumer logging and error messages
+* Improve unknown coordinator error handling
+* Improve auto-commit error handling when group_id is None
+* Add paused() API (zackdever PR 602)
+* Add default_offset_commit_callback to KafkaConsumer DEFAULT_CONFIGS
+
+Producers
+---------
+<none>
+
+Clients
+-------
+* Support SSL connections
+* Use selectors module for non-blocking IO
+* Refactor KafkaClient connection management
+* Fix AttributeError in __del__
+* SimpleClient: catch errors thrown by _get_leader_for_partition (zackdever PR 606)
+
+Documentation
+-------------
+* Fix serializer/deserializer examples in README
+* Update max.block.ms docstring
+* Remove errant next(consumer) from consumer documentation
+* Add producer.flush() to usage docs
+
+Internals
+---------
+* Add initial metrics implementation (zackdever PR 637)
+* KAFKA-2136: support Fetch and Produce v1 (throttle_time_ms)
+* Use version-indexed lists for request/response protocol structs (dpkp PR 630)
+* Split kafka.common into kafka.structs and kafka.errors
+* Handle partial socket send() (dpkp PR 611)
+* Fix windows support (dpkp PR 603)
+* IPv6 support (TimEvens PR 615; Roguelazer PR 642)
+
+
+
+
1.0.2 (Mar 14, 2016)
####################