Skip to content

Commit e671bcc

Browse files
committed
v1.6.1 define and changelog
1 parent a7ca500 commit e671bcc

File tree

2 files changed

+31
-3
lines changed

2 files changed

+31
-3
lines changed

CHANGELOG.md

Lines changed: 29 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,33 @@
11
# Confluent's Python client for Apache Kafka
22

3+
## v1.6.1
4+
5+
v1.6.1 is a feature release:
6+
7+
- KIP-429 - Incremental consumer rebalancing support.
8+
- OAUTHBEARER support.
9+
10+
### Fixes
11+
12+
- Add `return_record_name=True` to AvroDeserializer (@slominskir, #1028)
13+
- Fix deprecated `schema.Parse` call (@casperlehmann, #1006).
14+
- Make reader schema optional in AvroDeserializer (@97nitt, #1000).
15+
- Add `**kwargs` to legacy AvroProducer and AvroConsumer constructors to
16+
support all Consumer and Producer base class constructor arguments, such
17+
as `logger` (@venthur, #699).
18+
- Add bool for permanent schema delete (@slominskir, #1029).
19+
- The avro package is no longer required for Schema-Registry support (@jaysonsantos, #950).
20+
- Only write to schema cache once, improving performance (@fimmtiu, #724).
21+
- Improve Schema-Registry error reporting (@jacopofar, #673).
22+
- `producer.flush()` could return a non-zero value without hitting the
23+
specified timeout.
24+
25+
26+
confluent-kafka-python is based on librdkafka v1.6.1, see the
27+
[librdkafka release notes](https://github.com/edenhill/librdkafka/releases/tag/v1.6.1)
28+
for a complete list of changes, enhancements, fixes and upgrade considerations.
29+
30+
331
## v1.6.0
432

533
v1.6.0 is a feature release with the following features, fixes and enhancements:
@@ -23,7 +51,7 @@ v1.6.0 is a feature release with the following features, fixes and enhancements:
2351
- Added `AdminClient.list_groups()` API (@messense, #948)
2452
- Rename asyncio.py example to avoid circular import (#945)
2553

26-
confluent-kafka-python is based on librdkafka v1.6.2, see the
54+
confluent-kafka-python is based on librdkafka v1.6.0, see the
2755
[librdkafka release notes](https://github.com/edenhill/librdkafka/releases/tag/v1.6.0)
2856
for a complete list of changes, enhancements, fixes and upgrade considerations.
2957

src/confluent_kafka/src/confluent_kafka.h

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -42,8 +42,8 @@
4242
* 0xMMmmRRPP
4343
* MM=major, mm=minor, RR=revision, PP=patchlevel (not used)
4444
*/
45-
#define CFL_VERSION 0x01060000
46-
#define CFL_VERSION_STR "1.6.0"
45+
#define CFL_VERSION 0x01060100
46+
#define CFL_VERSION_STR "1.6.1"
4747

4848
/**
4949
* Minimum required librdkafka version. This is checked both during

0 commit comments

Comments
 (0)