Skip to content

Commit

Permalink
Release v2.6.2 (#1875)
Browse files Browse the repository at this point in the history
  • Loading branch information
pranavrth authored Dec 17, 2024
1 parent 6992679 commit 51ab802
Show file tree
Hide file tree
Showing 5 changed files with 27 additions and 4 deletions.
23 changes: 23 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,28 @@
# Confluent's Python client for Apache Kafka

## v2.6.2

v2.6.2 is a feature release with the following features, fixes and enhancements:

- Support for Data Contracts with Schema Registry, including
- Data Quality rules
- Data Transformation rules
- Client-Side Field Level Encryption (CSFLE)
- Schema Migration rules (requires Python 3.9+)
- Migrated the Schema Registry client from requests to httpx
- Add support for multiple URLs (#409)
- Allow configuring timeout (#622)
- Fix deletion semantics (#1127)
- Python deserializer can take SR client (#1174)
- Fix handling of Avro unions (#1562)
- Remove deprecated RefResolver for JSON (#1840)
- Support delete of subject version (#1851)

confluent-kafka-python is based on librdkafka v2.6.1, see the
[librdkafka release notes](https://github.com/confluentinc/librdkafka/releases/tag/v2.6.1)
for a complete list of changes, enhancements, fixes and upgrade considerations.


## v2.6.1

v2.6.1 is a maintenance release with the following fixes and enhancements:
Expand Down
2 changes: 1 addition & 1 deletion docs/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@
# built documents.
#
# The short X.Y version.
version = '2.6.2rc1'
version = '2.6.2'
# The full version, including alpha/beta/rc tags.
release = version
######################################################################
Expand Down
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ build-backend = "setuptools.build_meta"

[project]
name = "confluent-kafka"
version = "2.6.2rc1"
version = "2.6.2"
description = "Confluent's Python client for Apache Kafka"
classifiers = [
"Development Status :: 5 - Production/Stable",
Expand Down
2 changes: 1 addition & 1 deletion src/confluent_kafka/schema_registry/avro.py
Original file line number Diff line number Diff line change
Expand Up @@ -394,7 +394,7 @@ class AvroDeserializer(BaseDeserializer):
| Property Name | Type | Description |
+-----------------------------+----------+--------------------------------------------------+
| | | Whether to use the latest subject version for |
| ``use.latest.version`` | bool | deserialization. |
| ``use.latest.version`` | bool | deserialization. |
| | | |
| | | Defaults to False. |
+-----------------------------+----------+--------------------------------------------------+
Expand Down
2 changes: 1 addition & 1 deletion src/confluent_kafka/src/confluent_kafka.h
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@
* MM=major, mm=minor, RR=revision, PP=patchlevel (not used)
*/
#define CFL_VERSION 0x02060200
#define CFL_VERSION_STR "2.6.2rc1"
#define CFL_VERSION_STR "2.6.2"

/**
* Minimum required librdkafka version. This is checked both during
Expand Down

0 comments on commit 51ab802

Please sign in to comment.