Skip to content

Commit

Permalink
[FLINK-29513][Connector/Kafka] Update Kafka to version 3.2.3 which co…
Browse files Browse the repository at this point in the history
…ntains certain security fixes
  • Loading branch information
MartijnVisser committed Oct 6, 2022
1 parent 49e0041 commit a223063
Show file tree
Hide file tree
Showing 9 changed files with 10 additions and 10 deletions.
2 changes: 1 addition & 1 deletion flink-connectors/flink-connector-kafka/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ under the License.
<packaging>jar</packaging>

<properties>
<kafka.version>3.2.1</kafka.version>
<kafka.version>3.2.3</kafka.version>
</properties>

<dependencies>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -6,4 +6,4 @@ The Apache Software Foundation (http:https://www.apache.org/).

This project bundles the following dependencies under the Apache Software License 2.0. (http:https://www.apache.org/licenses/LICENSE-2.0.txt)

- org.apache.kafka:kafka-clients:3.2.1
- org.apache.kafka:kafka-clients:3.2.3
Original file line number Diff line number Diff line change
Expand Up @@ -76,7 +76,7 @@ under the License.
<dependency>
<groupId>org.apache.kafka</groupId>
<artifactId>kafka-clients</artifactId>
<version>3.2.1</version>
<version>3.2.3</version>
</dependency>

<!-- The following dependencies are for connector/format sql-jars that
Expand Down Expand Up @@ -234,7 +234,7 @@ under the License.
<artifactItem>
<groupId>org.apache.kafka</groupId>
<artifactId>kafka-clients</artifactId>
<version>3.2.1</version>
<version>3.2.3</version>
<destFileName>kafka-clients.jar</destFileName>
<type>jar</type>
<outputDirectory>${project.build.directory}/dependencies</outputDirectory>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -72,7 +72,7 @@ public class SQLClientKafkaITCase extends TestLogger {

@Parameterized.Parameters(name = "{index}: kafka-version:{0} kafka-sql-version:{1}")
public static Collection<Object[]> data() {
return Arrays.asList(new Object[][] {{"3.2.1", "universal", "kafka", ".*kafka.jar"}});
return Arrays.asList(new Object[][] {{"3.2.3", "universal", "kafka", ".*kafka.jar"}});
}

private static Configuration getConfiguration() {
Expand Down
2 changes: 1 addition & 1 deletion flink-end-to-end-tests/flink-sql-client-test/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -61,7 +61,7 @@ under the License.
<dependency>
<groupId>org.apache.kafka</groupId>
<artifactId>kafka-clients</artifactId>
<version>3.2.1</version>
<version>3.2.3</version>
<scope>test</scope>
</dependency>
<dependency>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@

set -Eeuo pipefail

KAFKA_VERSION="3.2.1"
KAFKA_VERSION="3.2.3"
CONFLUENT_VERSION="6.2.2"
CONFLUENT_MAJOR_VERSION="6.2"
# Check the Confluent Platform <> Apache Kafka compatibility matrix when updating KAFKA_VERSION
Expand Down
2 changes: 1 addition & 1 deletion flink-end-to-end-tests/test-scripts/test_pyflink.sh
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@

set -Eeuo pipefail

KAFKA_VERSION="3.2.1"
KAFKA_VERSION="3.2.3"
CONFLUENT_VERSION="6.2.2"
CONFLUENT_MAJOR_VERSION="6.2"
# Check the Confluent Platform <> Apache Kafka compatibility matrix when updating KAFKA_VERSION
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -6,4 +6,4 @@ The Apache Software Foundation (http:https://www.apache.org/).

This project bundles the following dependencies under the Apache Software License 2.0. (http:https://www.apache.org/licenses/LICENSE-2.0.txt)

- org.apache.kafka:kafka-clients:3.2.1
- org.apache.kafka:kafka-clients:3.2.3
2 changes: 1 addition & 1 deletion flink-formats/flink-avro-confluent-registry/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ under the License.
<name>Flink : Formats : Avro confluent registry</name>

<properties>
<kafka.version>3.2.1</kafka.version>
<kafka.version>3.2.3</kafka.version>
<confluent.version>6.2.2</confluent.version>
</properties>

Expand Down

0 comments on commit a223063

Please sign in to comment.