forked from marcuswestin/node-kafka
-
Notifications
You must be signed in to change notification settings - Fork 4
/
Changelog
35 lines (26 loc) · 932 Bytes
/
Changelog
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
intended v0.2.0
+ Allow for multiple topic subscriptions
- new kafka.Consumer({ topics:['foo', 'bar'] })
- consumer.addTopic('foo')
- consumer.removeTopic('foo')
- consumer.on('message', function(message, topic) { ... })
intended v0.1.8
+ Interpret Kafka's error messages correctly
v0.1.7
+ Improved documentation
v0.1.6
+ Cleanup - move js files into lib directory and depend on std for pack/unpack/crc32
+ Improve connect API - Producer and Consumer now emit "connect" event when connected, rather than take a callback to #connect()
+ Handle Producer/Consumer initialization with no opts gracefully
v0.1.5
+ Add a polling consumer API. See examples/consume.js
v0.1.4
+ Update npm package github info
v0.1.3
+ Publish with npm
v0.1.2
+ File cleanup and a README added
v0.1.1
+ Bug fixes and cleanup
v0.1.0
+ First working producer. Start zookeeper, kafka and a consumer, then run node test.js to publish a message