Skip to content

Releases: aio-libs/aiokafka

v0.10.0

15 Dec 06:41
@ods ods
85f758e
Compare
Choose a tag to compare

New features:

Bugfixes:

  • Fix extra dependencies (issue #952)

v0.10.0.a0

13 Dec 07:30
@ods ods
7ea1bea
Compare
Choose a tag to compare
v0.10.0.a0 Pre-release
Pre-release

New features:

v0.9.0

04 Dec 17:54
@ods ods
8818517
Compare
Choose a tag to compare

New features:

  • Include kafka-python into aiokafka's code base (issue #928 and others)
  • Replace python-snappy and zstandard with cramjam (issue #930)
  • PEP518 compliant pyproject.toml
  • Python 3.12 support

Bugfixes:

  • Fix type annotation for ConsumerRecord (pr #912 by @zschumacher)
  • Improve send performance (issue #943)

Improved Documentation:

v0.9.0.rc1

29 Nov 16:56
@ods ods
d7201c1
Compare
Choose a tag to compare
v0.9.0.rc1 Pre-release
Pre-release

New features:

  • Include kafka-python into aiokafka's code base
  • Replace python-snappy and zstandard with cramjam
  • PEP518 compliant pyproject.toml
  • Python 3.12 support

Bugfixes:

  • Fix type annotation for ConsumerRecord (pr #912 by @zschumacher)
  • Improve send performance (issue #943)

Improved Documentation:

v0.9.0.rc0

21 Nov 18:26
@ods ods
b029fa2
Compare
Choose a tag to compare
v0.9.0.rc0 Pre-release
Pre-release

New features:

  • Include kafka-python into aiokafka's code base
  • Replace python-snappy and zstandard with cramjam
  • PEP518 compliant pyproject.toml
  • Python 3.12 support

Bugfixes:

Improved Documentation:

v0.8.1

01 Jun 13:38
@ods ods
5ce5649
Compare
Choose a tag to compare

New features:

  • Drop support for Python 3.7 due to end of life (pr #893)

Bugfixes:

  • Add SASL authentication support to AIOKafkaAdminClient (issue #889,
    pr #890 by @selevit)

Improved Documentation:

v0.8.0

21 Nov 12:03
@ods ods
fa239a2
Compare
Choose a tag to compare

New features:

  • Add codec for ZStandard compression (KIP-110) (pr #801)
  • Add basic admin client functionality (pr #811 started by @gabriel-tincu)
  • Drop support for Python 3.6, add support and pre-built packages for Python
    3.10 (pr #841)

Bugfixes:

  • Fix KeyError on solitary abort marker (issue #781, pr #782 by @pikulmar)
  • Fix handling unsupported compression codec (issue #795)
  • Handled other SASL mechanism in logging (issue #852, pr #861 by @mangin)

Improved Documentation:

  • Fix documentation on how to install optional features (issue #645)
  • Improve the rendering of the documentation (pr #722 by @multani)
  • Fix MyRebalancer example in docs/consumer.rst (pr #731 by @aamalev)

Bugfix release

02 Sep 10:27
@ods ods
Compare
Choose a tag to compare

Bugfixes:

  • Fix CancelledError handling in sender (issue #710)
  • Fix exception for weakref use after object deletion (issue #755)
  • Fix consumer's start() method hanging after being idle for more than
    max_poll_interval_ms (issue #764)

Improved Documentation:

  • Add SASL_PLAINTEXT and SASL_SSL to valid values of security protocol
    attribute (pr #768 by @pawelrubin)

Bugfix release

04 Jun 14:02
@ods ods
Compare
Choose a tag to compare

Bugfixes:

  • Allow group coordinator to close when all brokers are unavailable (issue #659
    and pr #660 by @dkilgore90)
  • Exclude .so from source distribution to fix usage of sdist tarball
    (issue #681 and pr #684 by ods)
  • Add dataclasses backport package to dependencies for Python 3.6
    (pr #690 by @ods)
  • Fix initialization without running loop (issue #689 and pr #690 by @ods)
  • Fix consumer fetcher for python3.9 (pr #672 by @dutradda)
  • Make sure generation and member id are correct after (re)joining group.
    (issue #727 and pr #747 by @vangheem)

Deprecation:

  • Add deprecation warning when loop argument to AIOKafkaConsumer and
    AIOKafkaProducer is passed. It's scheduled for removal in 0.8.0 as a
    preparation step towards upcoming Python 3.10 (pr #699 by @ods)

Improved Documentation:

  • Update docs and examples to not use deprecated practices like passing loop
    explicitly (pr #693 by @ods)
  • Add docstring for Kafka header support in Producer.send() (issue #566 and
    pr #650 by @andreportela)

Support for Python 3.8 and 3.9

28 Oct 16:32
f7f55b1
Compare
Choose a tag to compare

New features:

  • Add support for Python 3.8 and 3.9. (issue #569, pr #669 and #676 by @ods)
  • Drop support for Python 3.5. (pr #667 by @ods)
  • Add OAUTHBEARER as a new sasl_mechanism. (issue #618 and pr #630 by @oulydna)

Bugfixes:

  • Fix memory leak in kafka consumer when consumer is in idle state not consuming any message. (issue #628 and pr #629 by @iamsinghrajat)