This is an automated email from the ASF dual-hosted git repository.
martijnvisser pushed a commit to branch release-2.1
in repository https://gitbox.apache.org/repos/asf/flink.git
The following commit(s) were added to refs/heads/release-2.1 by this push:
new 85b2d011473 [FLINK-36059][tests] Bump cp-kafka and cp-schema-registry
from 7.2.2 to 7.2.9
85b2d011473 is described below
commit 85b2d01147372e7cb492bfd861fde8de7e5cdeab
Author: Martijn Visser <[email protected]>
AuthorDate: Wed Feb 18 09:20:31 2026 +0100
[FLINK-36059][tests] Bump cp-kafka and cp-schema-registry from 7.2.2 to
7.2.9
cp-kafka:7.2.2 ships JDK 11.0.16.1 which has a known cgroup v2 bug
(JDK-8287073) that causes a NullPointerException in
CgroupV2Subsystem.getInstance(). Docker 29 changed cgroup handling in a way
that now triggers this bug, crashing the Kafka container before it can start
and failing SqlClientITCase.
cp-kafka:7.2.9 ships JDK 11.0.21 which includes the fix. Update
cp-schema-registry to 7.2.9 as well since it bundles the same vulnerable JDK.
(cherry picked from commit 2db7996c95fd02eafc59c0dfd08ad9f726170266)
---
flink-end-to-end-tests/test-scripts/test_confluent_schema_registry.sh | 2 +-
flink-end-to-end-tests/test-scripts/test_pyflink.sh | 2 +-
.../src/main/java/org/apache/flink/util/DockerImageVersions.java | 4 ++--
3 files changed, 4 insertions(+), 4 deletions(-)
diff --git
a/flink-end-to-end-tests/test-scripts/test_confluent_schema_registry.sh
b/flink-end-to-end-tests/test-scripts/test_confluent_schema_registry.sh
index 3719266aff8..324e3a34c55 100755
--- a/flink-end-to-end-tests/test-scripts/test_confluent_schema_registry.sh
+++ b/flink-end-to-end-tests/test-scripts/test_confluent_schema_registry.sh
@@ -20,7 +20,7 @@
set -Eeuo pipefail
KAFKA_VERSION="3.2.3"
-CONFLUENT_VERSION="7.2.2"
+CONFLUENT_VERSION="7.2.9"
CONFLUENT_MAJOR_VERSION="7.2"
# Check the Confluent Platform <> Apache Kafka compatibility matrix when
updating KAFKA_VERSION
KAFKA_SQL_VERSION="universal"
diff --git a/flink-end-to-end-tests/test-scripts/test_pyflink.sh
b/flink-end-to-end-tests/test-scripts/test_pyflink.sh
index 215b1f4f482..a71b5a56813 100755
--- a/flink-end-to-end-tests/test-scripts/test_pyflink.sh
+++ b/flink-end-to-end-tests/test-scripts/test_pyflink.sh
@@ -20,7 +20,7 @@
set -Eeuo pipefail
KAFKA_VERSION="3.2.3"
-CONFLUENT_VERSION="7.2.2"
+CONFLUENT_VERSION="7.2.9"
CONFLUENT_MAJOR_VERSION="7.2"
# Check the Confluent Platform <> Apache Kafka compatibility matrix when
updating KAFKA_VERSION
KAFKA_SQL_VERSION="universal"
diff --git
a/flink-test-utils-parent/flink-test-utils-junit/src/main/java/org/apache/flink/util/DockerImageVersions.java
b/flink-test-utils-parent/flink-test-utils-junit/src/main/java/org/apache/flink/util/DockerImageVersions.java
index 12380b543ac..c48ad4d8525 100644
---
a/flink-test-utils-parent/flink-test-utils-junit/src/main/java/org/apache/flink/util/DockerImageVersions.java
+++
b/flink-test-utils-parent/flink-test-utils-junit/src/main/java/org/apache/flink/util/DockerImageVersions.java
@@ -28,9 +28,9 @@ package org.apache.flink.util;
*/
public class DockerImageVersions {
- public static final String KAFKA = "confluentinc/cp-kafka:7.2.2";
+ public static final String KAFKA = "confluentinc/cp-kafka:7.2.9";
- public static final String SCHEMA_REGISTRY =
"confluentinc/cp-schema-registry:7.2.2";
+ public static final String SCHEMA_REGISTRY =
"confluentinc/cp-schema-registry:7.2.9";
public static final String KINESALITE = "instructure/kinesalite:latest";