Skip to content
Merged

2.12.1 #2112

Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .semaphore/semaphore.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ execution_time_limit:
global_job_config:
env_vars:
- name: LIBRDKAFKA_VERSION
value: v2.12.1-RC1
value: v2.12.1
prologue:
commands:
- checkout
Expand Down
2 changes: 1 addition & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# Confluent Python Client for Apache Kafka - CHANGELOG

## v2.12.1 - release candidate
## v2.12.1 - 2025-10-21
Copy link

Copilot AI Oct 21, 2025

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

The release date is set to 2025-10-21, which is in the future. As of January 2025 knowledge cutoff, October 2025 has not occurred yet. This appears to be an error - please verify and update to the correct release date.

Suggested change
## v2.12.1 - 2025-10-21
## v2.12.1

Copilot uses AI. Check for mistakes.

v2.12.1 is a maintenance release with the following fixes:

Expand Down
2 changes: 1 addition & 1 deletion examples/docker/Dockerfile.alpine
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ FROM alpine:3.12

COPY . /usr/src/confluent-kafka-python

ENV LIBRDKAFKA_VERSION="v2.12.1-RC1"
ENV LIBRDKAFKA_VERSION="v2.12.1"
ENV KCAT_VERSION="master"
ENV CKP_VERSION="master"

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.12.1rc1"
version = "2.12.1"
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/src/confluent_kafka.h
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@
/**
* @brief confluent-kafka-python version, must match that of pyproject.toml.
*/
#define CFL_VERSION_STR "2.12.1rc1"
#define CFL_VERSION_STR "2.12.1"

/**
* Minimum required librdkafka version. This is checked both during
Expand Down
4 changes: 2 additions & 2 deletions tests/soak/setup_all_versions.py
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
PYTHON_SOAK_TEST_BRANCH = 'master'

LIBRDKAFKA_VERSIONS = [
'2.12.0',
'2.12.1',
'2.11.1',
'2.10.1',
'2.8.0',
Expand All @@ -19,7 +19,7 @@
]

PYTHON_VERSIONS = [
'2.12.0',
'2.12.1',
'2.11.1',
'2.10.1',
'2.8.0',
Expand Down