Skip to content
Merged
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
6 changes: 3 additions & 3 deletions .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.0
value: v2.12.1-RC1
prologue:
commands:
- checkout
Expand Down Expand Up @@ -50,7 +50,7 @@ blocks:
- name: CIBW_SKIP
value: cp36-* cp37-* cp38-* cp39-* cp310-* cp311-* cp312-*
- name: CIBW_ENVIRONMENT_MACOS
value: MACOSX_DEPLOYMENT_TARGET=15
value: MACOSX_DEPLOYMENT_TARGET=13
jobs:
- name: Build
commands:
Expand Down Expand Up @@ -98,7 +98,7 @@ blocks:
- name: CIBW_SKIP
value: cp38-* cp39-* cp310-* cp311-* cp312-*
- name: CIBW_ENVIRONMENT_MACOS
value: MACOSX_DEPLOYMENT_TARGET=15
value: MACOSX_DEPLOYMENT_TARGET=13
jobs:
- name: Build
commands:
Expand Down
7 changes: 7 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,12 @@
# Confluent Python Client for Apache Kafka - CHANGELOG

## v2.12.1 - release candidate

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

- restored macOS binaries compatibility with macOS 13


## v2.12.0 - 2025-10-09

v2.12.0 is a feature release with the following enhancements:
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.0"
ENV LIBRDKAFKA_VERSION="v2.12.1-RC1"
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.0"
version = "2.12.1rc1"
description = "Confluent's Python client for Apache Kafka"
classifiers = [
"Development Status :: 5 - Production/Stable",
Expand Down
12 changes: 6 additions & 6 deletions src/confluent_kafka/src/confluent_kafka.h
Original file line number Diff line number Diff line change
Expand Up @@ -38,27 +38,27 @@
/**
* @brief confluent-kafka-python version, must match that of pyproject.toml.
*/
#define CFL_VERSION_STR "2.12.0"
#define CFL_VERSION_STR "2.12.1rc1"

/**
* Minimum required librdkafka version. This is checked both during
* build-time (just below) and runtime (see confluent_kafka.c).
* Make sure to keep the MIN_RD_KAFKA_VERSION, MIN_VER_ERRSTR and #error
* defines and strings in sync.
*/
#define MIN_RD_KAFKA_VERSION 0x020c00ff
#define MIN_RD_KAFKA_VERSION 0x020c01ff

#ifdef __APPLE__
#define MIN_VER_ERRSTR "confluent-kafka-python requires librdkafka v2.12.0 or later. Install the latest version of librdkafka from Homebrew by running `brew install librdkafka` or `brew upgrade librdkafka`"
#define MIN_VER_ERRSTR "confluent-kafka-python requires librdkafka v2.12.1 or later. Install the latest version of librdkafka from Homebrew by running `brew install librdkafka` or `brew upgrade librdkafka`"
#else
#define MIN_VER_ERRSTR "confluent-kafka-python requires librdkafka v2.12.0 or later. Install the latest version of librdkafka from the Confluent repositories, see http://docs.confluent.io/current/installation.html"
#define MIN_VER_ERRSTR "confluent-kafka-python requires librdkafka v2.12.1 or later. Install the latest version of librdkafka from the Confluent repositories, see http://docs.confluent.io/current/installation.html"
#endif

#if RD_KAFKA_VERSION < MIN_RD_KAFKA_VERSION
#ifdef __APPLE__
#error "confluent-kafka-python requires librdkafka v2.12.0 or later. Install the latest version of librdkafka from Homebrew by running `brew install librdkafka` or `brew upgrade librdkafka`"
#error "confluent-kafka-python requires librdkafka v2.12.1 or later. Install the latest version of librdkafka from Homebrew by running `brew install librdkafka` or `brew upgrade librdkafka`"
#else
#error "confluent-kafka-python requires librdkafka v2.12.0 or later. Install the latest version of librdkafka from the Confluent repositories, see http://docs.confluent.io/current/installation.html"
#error "confluent-kafka-python requires librdkafka v2.12.1 or later. Install the latest version of librdkafka from the Confluent repositories, see http://docs.confluent.io/current/installation.html"
#endif
#endif

Expand Down