Skip to content

Commit 4f25c8c

Browse files
authored
Changes for v2.7.0 release (confluentinc#1886)
1 parent 507272f commit 4f25c8c

File tree

5 files changed

+22
-4
lines changed

5 files changed

+22
-4
lines changed

Diff for: CHANGELOG.md

+14
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,21 @@
11
# Confluent's Python client for Apache Kafka
22

3+
## v2.7.0
4+
5+
v2.7.0 is a feature release with the features, fixes and enhancements present in v2.6.2 including the following fix:
6+
7+
- Added missing dependency on googleapis-common-protos when using protobufs. (#1881, @tenzer)
8+
9+
confluent-kafka-python v2.7.0 is based on librdkafka v2.6.1, see the
10+
[librdkafka release notes](https://github.com/confluentinc/librdkafka/releases/tag/v2.6.1)
11+
for a complete list of changes, enhancements, fixes and upgrade considerations.
12+
313
## v2.6.2
414

15+
> [!WARNING]
16+
> Due to an error in which we included dependency changes to a recent patch release, Confluent recommends users to **refrain from upgrading to 2.6.2** of Confluent Kafka. Confluent will release a new minor version, 2.7.0, where the dependency changes will be appropriately included. Users who have already upgraded to 2.6.2 and made the required dependency changes are free to remain on that version and are recommended to upgrade to 2.7.0 when that version is available. Upon the release of 2.7.0, the 2.6.2 version will be marked deprecated.
17+
We apologize for the inconvenience and appreciate the feedback that we have gotten from the community.
18+
519
v2.6.2 is a feature release with the following features, fixes and enhancements:
620

721
Note: This release modifies the dependencies of the Schema Registry client.

Diff for: README.md

+4
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,7 @@
1+
> [!WARNING]
2+
> Due to an error in which we included dependency changes to a recent patch release, Confluent recommends users to **refrain from upgrading to 2.6.2** of Confluent Kafka. Confluent will release a new minor version, 2.7.0, where the dependency changes will be appropriately included. Users who have already upgraded to 2.6.2 and made the required dependency changes are free to remain on that version and are recommended to upgrade to 2.7.0 when that version is available. Upon the release of 2.7.0, the 2.6.2 version will be marked deprecated.
3+
We apologize for the inconvenience and appreciate the feedback that we have gotten from the community.
4+
15
Confluent's Python Client for Apache Kafka<sup>TM</sup>
26
=======================================================
37

Diff for: docs/conf.py

+1-1
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.2'
30+
version = '2.7.0'
3131
# The full version, including alpha/beta/rc tags.
3232
release = version
3333
######################################################################

Diff for: pyproject.toml

+1-1
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.2"
7+
version = "2.7.0"
88
description = "Confluent's Python client for Apache Kafka"
99
classifiers = [
1010
"Development Status :: 5 - Production/Stable",

Diff for: src/confluent_kafka/src/confluent_kafka.h

+2-2
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 0x02060200
46-
#define CFL_VERSION_STR "2.6.2"
45+
#define CFL_VERSION 0x02070200
46+
#define CFL_VERSION_STR "2.7.0"
4747

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

0 commit comments

Comments
 (0)