Skip to content

Commit 8ca55d6

Browse files
author
Dana Powers
committed
Version to 0.9.2 and Changelog (with some backstory)
1 parent 9cac8ea commit 8ca55d6

File tree

3 files changed

+41
-6
lines changed

3 files changed

+41
-6
lines changed

CHANGES.md

+39-4
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,44 @@
1-
# Notable Changes
1+
# 0.9.2 (Aug 26, 2014)
22

3-
* Changing auto_commit to False in [SimpleConsumer](kafka/consumer.py), until 0.8.1 is release offset commits are unsupported
3+
* Warn users that async producer does not reliably handle failures (dpkp - PR 213)
4+
* Fix spurious ConsumerFetchSizeTooSmall error in consumer (DataDog - PR 136)
5+
* Use PyLint for static error checking (dpkp - PR 208)
6+
* Strictly enforce str message type in producer.send_messages (dpkp - PR 211)
7+
* Add test timers via nose-timer plugin; list 10 slowest timings by default (dpkp)
8+
* Move fetching last known offset logic to a stand alone function (zever - PR 177)
9+
* Improve KafkaConnection and add more tests (dpkp - PR 196)
10+
* Raise TypeError if necessary when encoding strings (mdaniel - PR 204)
11+
* Use Travis-CI to publish tagged releases to pypi (tkuhlman / mumrah)
12+
* Use official binary tarballs for integration tests and parallelize travis tests (dpkp - PR 193)
13+
* Improve new-topic creation handling (wizzat - PR 174)
414

5-
* Adding fetch_size_bytes to SimpleConsumer constructor to allow for user-configurable fetch sizes
15+
# 0.9.1 (Aug 10, 2014)
616

7-
* Allow SimpleConsumer to automatically increase the fetch size if a partial message is read and no other messages were read during that fetch request. The increase factor is 1.5
17+
* Add codec parameter to Producers to enable compression (patricklucas - PR 166)
18+
* Support IPv6 hosts and network (snaury - PR 169)
19+
* Remove dependency on distribute (patricklucas - PR 163)
20+
* Fix connection error timeout and improve tests (wizzat - PR 158)
21+
* SimpleProducer randomization of initial round robin ordering (alexcb - PR 139)
22+
* Fix connection timeout in KafkaClient and KafkaConnection (maciejkula - PR 161)
23+
* Fix seek + commit behavior (wizzat - PR 148)
24+
25+
26+
# 0.9.0 (Mar 21, 2014)
827

28+
* Connection refactor and test fixes (wizzat - PR 134)
29+
* Fix when partition has no leader (mrtheb - PR 109)
30+
* Change Producer API to take topic as send argument, not as instance variable (rdiomar - PR 111)
31+
* Substantial refactor and Test Fixing (rdiomar - PR 88)
32+
* Fix Multiprocess Consumer on windows (mahendra - PR 62)
33+
* Improve fault tolerance; add integration tests (jimjh)
34+
* PEP8 / Flakes / Style cleanups (Vetoshkin Nikita; mrtheb - PR 59)
35+
* Setup Travis CI (jimjh - PR 53/54)
36+
* Fix import of BufferUnderflowError (jimjh - PR 49)
37+
* Fix code examples in README (StevenLeRoux - PR 47/48)
38+
39+
# 0.8.0
40+
41+
* Changing auto_commit to False in [SimpleConsumer](kafka/consumer.py), until 0.8.1 is release offset commits are unsupported
42+
* Adding fetch_size_bytes to SimpleConsumer constructor to allow for user-configurable fetch sizes
43+
* Allow SimpleConsumer to automatically increase the fetch size if a partial message is read and no other messages were read during that fetch request. The increase factor is 1.5
944
* Exception classes moved to kafka.common

README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ Copyright 2014, David Arthur under Apache License, v2.0. See `LICENSE`
2020

2121
# Status
2222

23-
The current version of this package is **0.9.1** and is compatible with
23+
The current version of this package is **0.9.2** and is compatible with
2424

2525
Kafka broker versions
2626
- 0.8.0

VERSION

+1-1
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
0.9.1
1+
0.9.2

0 commit comments

Comments
 (0)