Skip to content

Releases: tarantool/kafka

Release 1.6.9

06 Nov 07:20
Compare
Choose a tag to compare
  • Bump librdkafka version to v2.6.1

Release 1.6.8

13 Jun 17:35
Compare
Choose a tag to compare
  • Add rebalance_protocol() method for consumer
  • Bump librdkafka version to 2.4.0

Release 1.6.7

24 May 13:53
Compare
Choose a tag to compare
  • Fix memory leaks in case of errors on producer/consumer creation
  • Add WITH_GSSAPI flag to build librdkafka with GSSAPI support

Release 1.6.6

24 May 13:56
Compare
Choose a tag to compare
publish package on push

Linter fixes

17 Feb 19:31
Compare
Choose a tag to compare
patch: fix potential use after free

rd_kafka_topic_partition_list_query_leaders_async_worker() can
free rko->rko_u.leaders.eonce by calling rd_kafka_enq_once_del_source().
After use this object again:

if (rko->rko_u.leaders.eonce) {
        rd_kafka_enq_once_disable(rko->rko_u.leaders.eonce);
        rko->rko_u.leaders.eonce = NULL;
}

This patch adds to rd_kafka_enq_once_del_source() a
return indication that the object has been freed.

Closes tarantool/security#94

Linter fixes

16 Feb 16:06
Compare
Choose a tag to compare
1.6.4

Update CMakeLists.txt

Linter fixes

15 Feb 12:24
Compare
Choose a tag to compare
1.6.3

patch: fix use after free in rdhttp.c

Fix macos static build

17 Oct 17:09
Compare
Choose a tag to compare
  • Fix macos static build because of missed sdk include dir

Release 1.6.1

12 Oct 12:54
Compare
Choose a tag to compare
  • Fix building with tarantool 2.10.3

Release 1.6.0

16 Jun 13:33
Compare
Choose a tag to compare
  • Implement pause and resume methods for consumer
  • Implement seek_partitions method for consumer
  • Set name for internal kafka threads
  • Fix "duplicate symbol" build error
  • Fix minor build issues