Skip to content

Commit 51ab802

Browse files
authored
Release v2.6.2 (#1875)
1 parent 6992679 commit 51ab802

File tree

5 files changed

+27
-4
lines changed

5 files changed

+27
-4
lines changed

CHANGELOG.md

Lines changed: 23 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,28 @@
11
# Confluent's Python client for Apache Kafka
22

3+
## v2.6.2
4+
5+
v2.6.2 is a feature release with the following features, fixes and enhancements:
6+
7+
- Support for Data Contracts with Schema Registry, including
8+
- Data Quality rules
9+
- Data Transformation rules
10+
- Client-Side Field Level Encryption (CSFLE)
11+
- Schema Migration rules (requires Python 3.9+)
12+
- Migrated the Schema Registry client from requests to httpx
13+
- Add support for multiple URLs (#409)
14+
- Allow configuring timeout (#622)
15+
- Fix deletion semantics (#1127)
16+
- Python deserializer can take SR client (#1174)
17+
- Fix handling of Avro unions (#1562)
18+
- Remove deprecated RefResolver for JSON (#1840)
19+
- Support delete of subject version (#1851)
20+
21+
confluent-kafka-python is based on librdkafka v2.6.1, see the
22+
[librdkafka release notes](https://github.com/confluentinc/librdkafka/releases/tag/v2.6.1)
23+
for a complete list of changes, enhancements, fixes and upgrade considerations.
24+
25+
326
## v2.6.1
427

528
v2.6.1 is a maintenance release with the following fixes and enhancements:

docs/conf.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@
2727
# built documents.
2828
#
2929
# The short X.Y version.
30-
version = '2.6.2rc1'
30+
version = '2.6.2'
3131
# The full version, including alpha/beta/rc tags.
3232
release = version
3333
######################################################################

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ build-backend = "setuptools.build_meta"
44

55
[project]
66
name = "confluent-kafka"
7-
version = "2.6.2rc1"
7+
version = "2.6.2"
88
description = "Confluent's Python client for Apache Kafka"
99
classifiers = [
1010
"Development Status :: 5 - Production/Stable",

src/confluent_kafka/schema_registry/avro.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -394,7 +394,7 @@ class AvroDeserializer(BaseDeserializer):
394394
| Property Name | Type | Description |
395395
+-----------------------------+----------+--------------------------------------------------+
396396
| | | Whether to use the latest subject version for |
397-
| ``use.latest.version`` | bool | deserialization. |
397+
| ``use.latest.version`` | bool | deserialization. |
398398
| | | |
399399
| | | Defaults to False. |
400400
+-----------------------------+----------+--------------------------------------------------+

src/confluent_kafka/src/confluent_kafka.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,7 @@
4343
* MM=major, mm=minor, RR=revision, PP=patchlevel (not used)
4444
*/
4545
#define CFL_VERSION 0x02060200
46-
#define CFL_VERSION_STR "2.6.2rc1"
46+
#define CFL_VERSION_STR "2.6.2"
4747

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

0 commit comments

Comments
 (0)