Skip to content

Commit 228804b

Browse files
authored
chore: deprecate 3.7.2 (#892)
* deprecated 3.7.2 and remove references from examples / unit tests * adapted changelog * fix 4.0.0 -> 4.1.0
1 parent ecce270 commit 228804b

File tree

11 files changed

+33
-25
lines changed

11 files changed

+33
-25
lines changed

CHANGELOG.md

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,8 +7,16 @@ All notable changes to this project will be documented in this file.
77
### Added
88

99
- Helm: Allow Pod `priorityClassName` to be configured ([#890]).
10+
- Add experimental support for Kafka KRaft mode ([#889]).
11+
- Add experimental support for Kafka `4.1.0` ([#889]).
1012

13+
### Changed
14+
15+
- Deprecate support for Kafka `3.7.2` ([#892]).
16+
17+
[#889]: https://github.com/stackabletech/kafka-operator/pull/889
1118
[#890]: https://github.com/stackabletech/kafka-operator/pull/890
19+
[#892]: https://github.com/stackabletech/kafka-operator/pull/892
1220

1321
## [25.7.0] - 2025-07-23
1422

docs/modules/kafka/pages/usage-guide/security.adoc

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ metadata:
1515
name: simple-kafka
1616
spec:
1717
image:
18-
productVersion: 3.7.2
18+
productVersion: 3.9.1
1919
clusterConfig:
2020
zookeeperConfigMapName: simple-kafka-znode
2121
tls:
@@ -95,7 +95,7 @@ metadata:
9595
name: simple-kafka
9696
spec:
9797
image:
98-
productVersion: 3.7.2
98+
productVersion: 3.9.1
9999
clusterConfig:
100100
authentication:
101101
- authenticationClass: kafka-client-tls # <1>
@@ -140,7 +140,7 @@ metadata:
140140
name: simple-kafka
141141
spec:
142142
image:
143-
productVersion: 3.7.2
143+
productVersion: 3.9.1
144144
clusterConfig:
145145
authentication:
146146
- authenticationClass: kafka-client-kerberos # <1>
@@ -184,7 +184,7 @@ metadata:
184184
name: simple-kafka
185185
spec:
186186
image:
187-
productVersion: 3.7.2
187+
productVersion: 3.9.1
188188
clusterConfig:
189189
authorization:
190190
opa:
@@ -208,7 +208,7 @@ metadata:
208208
name: simple-kafka
209209
spec:
210210
image:
211-
productVersion: 3.7.2
211+
productVersion: 3.9.1
212212
clusterConfig:
213213
authorization:
214214
opa:

docs/modules/kafka/partials/supported-versions.adoc

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,5 +3,5 @@
33
// Stackable Platform documentation.
44

55
* 4.1.0 (experimental)
6-
* 3.9.1
7-
* 3.7.2 (LTS)
6+
* 3.9.1 (LTS)
7+
* 3.7.2 (deprecated)

examples/logging/simple-kafka-cluster-opa-log4j.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -50,7 +50,7 @@ metadata:
5050
name: simple-kafka
5151
spec:
5252
image:
53-
productVersion: 3.7.2
53+
productVersion: 3.9.1
5454
clusterConfig:
5555
authorization:
5656
opa:

examples/opa/simple-kafka-cluster-opa-allow-all.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -50,7 +50,7 @@ metadata:
5050
name: simple-kafka
5151
spec:
5252
image:
53-
productVersion: 3.7.2
53+
productVersion: 3.9.1
5454
clusterConfig:
5555
authorization:
5656
opa:

examples/tls/simple-kafka-cluster-tls.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -60,7 +60,7 @@ metadata:
6060
name: simple-kafka
6161
spec:
6262
image:
63-
productVersion: 3.7.2
63+
productVersion: 3.9.1
6464
clusterConfig:
6565
authentication:
6666
- authenticationClass: kafka-client-auth-tls

rust/operator-binary/src/config/jvm.rs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -114,7 +114,7 @@ mod tests {
114114
name: simple-kafka
115115
spec:
116116
image:
117-
productVersion: 3.7.2
117+
productVersion: 3.9.1
118118
clusterConfig:
119119
zookeeperConfigMapName: xyz
120120
brokers:
@@ -144,7 +144,7 @@ mod tests {
144144
name: simple-kafka
145145
spec:
146146
image:
147-
productVersion: 3.7.2
147+
productVersion: 3.9.1
148148
clusterConfig:
149149
zookeeperConfigMapName: xyz
150150
brokers:

rust/operator-binary/src/crd/affinity.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -44,7 +44,7 @@ mod tests {
4444
name: simple-kafka
4545
spec:
4646
image:
47-
productVersion: 3.7.2
47+
productVersion: 3.9.1
4848
clusterConfig:
4949
zookeeperConfigMapName: xyz
5050
brokers:

rust/operator-binary/src/crd/listener.rs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -375,7 +375,7 @@ mod tests {
375375
namespace: default
376376
spec:
377377
image:
378-
productVersion: 3.7.2
378+
productVersion: 3.9.1
379379
clusterConfig:
380380
authentication:
381381
- authenticationClass: kafka-client-tls
@@ -563,7 +563,7 @@ mod tests {
563563
namespace: default
564564
spec:
565565
image:
566-
productVersion: 3.7.2
566+
productVersion: 3.9.1
567567
clusterConfig:
568568
authentication:
569569
- authenticationClass: kafka-kerberos

rust/operator-binary/src/crd/mod.rs

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -430,7 +430,7 @@ mod tests {
430430
name: simple-kafka
431431
spec:
432432
image:
433-
productVersion: 3.7.2
433+
productVersion: 3.9.1
434434
clusterConfig:
435435
zookeeperConfigMapName: xyz
436436
"#;
@@ -449,7 +449,7 @@ mod tests {
449449
name: simple-kafka
450450
spec:
451451
image:
452-
productVersion: 3.7.2
452+
productVersion: 3.9.1
453453
clusterConfig:
454454
tls:
455455
serverSecretClass: simple-kafka-server-tls
@@ -474,7 +474,7 @@ mod tests {
474474
name: simple-kafka
475475
spec:
476476
image:
477-
productVersion: 3.7.2
477+
productVersion: 3.9.1
478478
clusterConfig:
479479
tls:
480480
serverSecretClass: null
@@ -495,7 +495,7 @@ mod tests {
495495
name: simple-kafka
496496
spec:
497497
image:
498-
productVersion: 3.7.2
498+
productVersion: 3.9.1
499499
zookeeperConfigMapName: xyz
500500
clusterConfig:
501501
tls:
@@ -520,7 +520,7 @@ mod tests {
520520
name: simple-kafka
521521
spec:
522522
image:
523-
productVersion: 3.7.2
523+
productVersion: 3.9.1
524524
clusterConfig:
525525
zookeeperConfigMapName: xyz
526526
"#;
@@ -539,7 +539,7 @@ mod tests {
539539
name: simple-kafka
540540
spec:
541541
image:
542-
productVersion: 3.7.2
542+
productVersion: 3.9.1
543543
clusterConfig:
544544
tls:
545545
internalSecretClass: simple-kafka-internal-tls
@@ -560,7 +560,7 @@ mod tests {
560560
name: simple-kafka
561561
spec:
562562
image:
563-
productVersion: 3.7.2
563+
productVersion: 3.9.1
564564
clusterConfig:
565565
tls:
566566
serverSecretClass: simple-kafka-server-tls

0 commit comments

Comments
 (0)