Skip to content

Commit 18d73dd

Browse files
committed
Add support for Kafka 4.1.1 (#12079)
Signed-off-by: Jakub Scholz <[email protected]>
1 parent eb2300a commit 18d73dd

File tree

75 files changed

+114
-94
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

75 files changed

+114
-94
lines changed

.checksums

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -6,20 +6,20 @@
66
# if this checksum has changed as part of any non-release specific changes, please apply your changes to the
77
# development version of the helm charts in ./packaging/helm-charts
88
### IMPORTANT ###
9-
HELM_CHART_CHECKSUM="baf02fbc6d6998dfaf57da2b8253c92e41b00146 -"
9+
HELM_CHART_CHECKSUM="8b7ff80c84baeddf412ff824ab8d5623a49943a1 -"
1010

1111
### IMPORTANT ###
1212
# if the below line has changed, this means the ./install directory has changed
1313
# the checksum and ./install directory should only be modified on official releases as part of a release
1414
# if this checksum has changed as part of any non-release specific changes, please apply your changes to the
1515
# development version of the helm charts in ./packaging/install
1616
### IMPORTANT ###
17-
INSTALL_CHECKSUM="cf18bb1e845cde6db58671ae68561a5f13d7dd66 -"
17+
INSTALL_CHECKSUM="a0e922f2678b7d559ef0c130ba264818784f89bf -"
1818

1919
### IMPORTANT ###
2020
# if the below line has changed, this means the ./examples directory has changed
2121
# the checksum and ./examples directory should only be modified on official releases as part of a release
2222
# if this checksum has changed as part of any non-release specific changes, please apply your changes to the
2323
# development version of the helm charts in ./packaging/examples
2424
### IMPORTANT ###
25-
EXAMPLES_CHECKSUM="783f782f0b1b492d898b593fca59ecabb5e9ec7f -"
25+
EXAMPLES_CHECKSUM="006153237731a6389fd5c0e4a02a822c023c8e3d -"

CHANGELOG.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
## 0.49.0
44

5-
* Add support for Kafka 4.0.1
5+
* Add support for Kafka 4.0.1 and 4.1.1
66
* Set `blockOwnerDeletion` to `true` in the owner references in Strimzi managed resources.
77
Deleting the Strimzi custom resources will now by default wait for the deletion of all the owned Kubernetes resources.
88
* Introduce the `v1` API to Strimzi CRDs and move User and Topic Operators to use it.

cluster-operator/src/test/java/io/strimzi/operator/cluster/KafkaVersionTestUtils.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ public class KafkaVersionTestUtils {
2020

2121
private static final Set<String> SUPPORTED_VERSIONS = new KafkaVersion.Lookup(Collections.emptyMap(), Collections.emptyMap(), Collections.emptyMap()).supportedVersions();
2222

23-
public static final String LATEST_KAFKA_VERSION = "4.1.0";
23+
public static final String LATEST_KAFKA_VERSION = "4.1.1";
2424
public static final String LATEST_FORMAT_VERSION = "4.1";
2525
public static final String LATEST_PROTOCOL_VERSION = "4.1";
2626
public static final String LATEST_METADATA_VERSION = "4.1-IV1";

documentation/modules/snip-images.adoc

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -11,6 +11,7 @@ a|
1111
* {DockerOrg}/kafka:{DockerTag}-kafka-4.0.0
1212
* {DockerOrg}/kafka:{DockerTag}-kafka-4.0.1
1313
* {DockerOrg}/kafka:{DockerTag}-kafka-4.1.0
14+
* {DockerOrg}/kafka:{DockerTag}-kafka-4.1.1
1415

1516
a|
1617
Strimzi image for running Kafka, including:

documentation/shared/attributes.adoc

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -21,12 +21,12 @@
2121
:KubernetesVersion: 1.27 and later
2222

2323
// Kafka upgrade attributes used in kafka upgrades section
24-
:DefaultKafkaVersion: 4.1.0
24+
:DefaultKafkaVersion: 4.1.1
2525
:DefaultKafkaMetadataVersion: 4.1
2626
:KafkaMetadataVersionLower: 4.0-IV0
2727
:KafkaMetadataVersionHigher: 4.1-IV1
2828
:KafkaVersionLower: 4.0.0
29-
:KafkaVersionHigher: 4.1.0
29+
:KafkaVersionHigher: 4.1.1
3030
:ExampleImageTagUpgrades: quay.io/strimzi/kafka:{ProductVersion}-kafka-{KafkaVersionHigher}
3131

3232
// Bridge version
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
11
// Generated by documentation/version-dependent-attrs.sh during the build
22
// DO NOT EDIT BY HAND
3-
:DefaultKafkaVersion: 4.1.0
3+
:DefaultKafkaVersion: 4.1.1

examples/connect/kafka-connect-build.yaml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ metadata:
88
# # needing to call the Connect REST API directly
99
# strimzi.io/use-connector-resources: "true"
1010
spec:
11-
version: 4.1.0
11+
version: 4.1.1
1212
replicas: 1
1313
bootstrapServers: my-cluster-kafka-bootstrap:9093
1414
groupId: my-connect-group
@@ -33,11 +33,11 @@ spec:
3333
# it should not happen that you pull someone else's container image. However, we
3434
# recommend changing this to your own container registry or using a different
3535
# image name for any other than demo purposes.
36-
image: ttl.sh/strimzi-connect-example-4.1.0:24h
36+
image: ttl.sh/strimzi-connect-example-4.1.1:24h
3737
plugins:
3838
- name: kafka-connect-file
3939
artifacts:
4040
- type: maven
4141
group: org.apache.kafka
4242
artifact: connect-file
43-
version: 4.1.0
43+
version: 4.1.1

examples/connect/kafka-connect.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ metadata:
88
# # needing to call the Connect REST API directly
99
# strimzi.io/use-connector-resources: "true"
1010
spec:
11-
version: 4.1.0
11+
version: 4.1.1
1212
replicas: 1
1313
bootstrapServers: my-cluster-kafka-bootstrap:9093
1414
groupId: my-connect-group

examples/cruise-control/kafka-cruise-control-auto-rebalancing.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,7 @@ metadata:
4040
name: my-cluster
4141
spec:
4242
kafka:
43-
version: 4.1.0
43+
version: 4.1.1
4444
metadataVersion: 4.1-IV1
4545
listeners:
4646
- name: plain

examples/cruise-control/kafka-cruise-control-with-goals.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,7 @@ metadata:
4040
name: my-cluster
4141
spec:
4242
kafka:
43-
version: 4.1.0
43+
version: 4.1.1
4444
metadataVersion: 4.1-IV1
4545
listeners:
4646
- name: plain

0 commit comments

Comments
 (0)