The interactive file manager requires Javascript. Please enable it or use sftp or scp.
You may still browse the files here.
| Name | Modified | Size | Downloads / Week |
|---|---|---|---|
| Parent folder | |||
| strimzi-topic-operator-0.48.0.yaml | 2025-09-29 | 20.7 kB | |
| strimzi-user-operator-0.48.0.yaml | 2025-09-29 | 41.8 kB | |
| strimzi-kafka-operator-helm-3-chart-0.48.0.tgz | 2025-09-29 | 140.0 kB | |
| strimzi-sbom-0.48.0.tar.gz | 2025-09-29 | 5.5 MB | |
| strimzi-cluster-operator-0.48.0.yaml | 2025-09-29 | 1.0 MB | |
| strimzi-crds-0.48.0.yaml | 2025-09-29 | 1.0 MB | |
| strimzi-0.48.0.zip | 2025-09-29 | 6.0 MB | |
| strimzi-0.48.0.tar.gz | 2025-09-29 | 5.9 MB | |
| 0.48.0 source code.tar.gz | 2025-09-24 | 5.7 MB | |
| 0.48.0 source code.zip | 2025-09-24 | 7.7 MB | |
| README.md | 2025-09-24 | 24.0 kB | |
| Totals: 11 Items | 33.1 MB | 2 | |
⚠️ Important: Strimzi 0.48.0 supports only Kubernetes 1.27 and newer. Kubernetes 1.25 and 1.26 are not supported anymore
Main changes since 0.47.0
This release contains the following new features and improvements:
- Add support for Kafka 4.1.0. Remove support for Kafka 3.9.0 and 3.9.1.
- KRaft mode and Kafka Node Pools are now enabled by default.
The
strimzi.io/node-poolsandstrimzi.io/kraftannotations are not required anymore and will be ignored if set. - Make properties
broker.session.timeout.ms,broker.heartbeat.interval.msandcontroller.socket.timeout.msconfigurable - Add monitoring of custom resources using kubernetes-state-metrics (KSM) (see Strimzi proposal 087)
- Ignore users (their ACLs, Quotas and SCRAM-SHA-512 credentials) managed by some other tools based on a configurable pattern in User Operator
- Support for
type: customclient authentication (to make it easier to use custom authentication mechanisms such as AWS IAM) - Added support for Strimzi Metrics Reporter to Kafka Connect, Mirror Maker 2 and Kafka Bridge.
- Add new feature gate
ServerSideApplyPhase1(disabled by default) that adds support for Server Side Apply forConfigMap,Ingress,PVC,Service, andServiceAccountaccording to Strimzi Proposal [#105]. - Added distinction between changes of "cluster-wide" broker properties applied dynamically at cluster level, and "per-broker" broker properties applied dynamically at broker level.
- Extend the EntityOperator, Cruise Control and KafkaExporter deployment to support PDB via the template section in the CR spec.
- Added support for KIP-1073
to get the list of the registered brokers by using the Kafka Admin API. It replaces the usage of the
.status.registeredNodeIdsfield in Kafka. - Added support for KIP-745 in Kafka Connector and Mirror Maker 2, allowing the usage of
includeTasksandonlyFailedarguments in Kafka connectors restart. - Update OAuth library to 0.17.0.
- Additional OAuth configuration options have been added for 'oauth' authentication on the listener and the client.
On the listener
clientGrantTypehas been added. On the clientgrantTypehas been added.
Major changes, deprecations and removals
- Fix RBAC naming for
KafkaMirrorMaker2to avoidRoleBindingcollisions when aKafkaConnectwith the same name exists in the same namespace.KafkaMirrorMaker2now uses dedicatedRoleBindingnames.
Upgrade note for KafkaMirrorMaker2 users (0.47.0 → 0.48.0+): Cleanup recommended
After upgrading the operator, a new (dedicated) RoleBinding for KafkaMirrorMaker2 will be created and used automatically.
The old RoleBinding, if it exists, may remain in the cluster but is no longer referenced.
```bash
# List RoleBindings for your KafkaMirrorMaker2 instance (replace <namespace> and <mm2-name>)
kubectl get rolebindings -n <namespace> \
-l strimzi.io/kind=KafkaMirrorMaker2,strimzi.io/cluster=<mm2-name>
```
If multiple RoleBindings are shown, the legacy one is <mm2-name>-connect-connect-role
and the new one is <mm2-name>-mirrormaker2-role.
You can safely delete just the legacy RoleBinding (unused after upgrade):
```bash
kubectl delete rolebinding -n <namespace> <mm2-name>-connect-connect-role
```
- From Strimzi 0.48.0 on, we support only Kubernetes 1.27 and newer. Kubernetes 1.25 and 1.26 are not supported anymore.
- Disable Cruise Control network resource goals when resource capacities are not set.
- The
strimzi_resource_statemetric in the Cluster Operator is deprecated and is planned to be removed in Strimzi 0.51. Use kube-state-metrics based metrics from the examples as a replacement. - The field
.spec.enableMetricsin KafkaBridge is now deprecated and replaced by.spec.metricsConfig. - The User Operator does not ignore the ACL rules for the
*andANONYMOUSusers by default anymore. If you need to re-enable this feature, you can do it by configuring theSTRIMZI_IGNORED_USERS_PATTERNenvironment variable to the following regular expression:^\*|ANONYMOUS$. In case you deployed the User Operator through aKafkacustom resource, you can set it using the following YAML directly in theKafkaCR:yaml apiVersion: kafka.strimzi.io/v1beta2 kind: Kafka spec: #... entityOperator: template: userOperatorContainer: env: - name: STRIMZI_IGNORED_USERS_PATTERN value: "^\\*|ANONYMOUS$" # Double \ needed for escaping #...In case you use the standalone User Operator, you can set the environment variable in itsDeployment. Please keep in mind that the ignored users will apply not only to ACLs, but also to Quotas and SCRAM-SHA credentials. - The field
.status.registeredNodeIdsin Kafka is now deprecated, it is not used anymore, and it will be removed in the future.
All changes can be found under the 0.48.0 milestone.
Maven artifacts
To test the Maven artifacts that are part of this release, use the 0.48.0 version in your pom.xml.
Upgrading from Strimzi 0.47.0
See the documentation for upgrade instructions.
Container images
The following container images are part of this release:
| Name | Image |
|---|---|
| Operators | quay.io/strimzi/operator@sha256:73dc9555c4a73094b497ffb14d816de5ff40144ffc470efd75ccf128afa22778 |
| Apache Kafka 4.0.0 | quay.io/strimzi/kafka@sha256:48db05ad2e9fa39eb388089e7e25654bcbf4da1ddc3a5635d675056c28bbcb96 |
| Apache Kafka 4.1.0 | quay.io/strimzi/kafka@sha256:34450afc1a3399a9026fc3c6ec90e9f6adfec9faf6520545b4d84e90cda34964 |
| Strimzi Bridge | quay.io/strimzi/kafka-bridge@sha256:53034f64f0b672f10b5bacea1c7a25132f118df7fd5c9032c4dbf702ed93796a |
| Kaniko executor | quay.io/strimzi/kaniko-executor@sha256:a5088c14d7b8bf1d336669cba047b971bf3ece8969647dae2c1e3a07a7be0c5e |
| Maven Builder | quay.io/strimzi/maven-builder@sha256:64380efcb8da87fdc0e0de238a20456be9abb830174c2f2331882b7a84657e57 |
New Contributors
- @shunki-fujita made their first contribution in https://github.com/strimzi/strimzi-kafka-operator/pull/11787
- @kiku99 made their first contribution in https://github.com/strimzi/strimzi-kafka-operator/pull/11862
- @bissquit made their first contribution in https://github.com/strimzi/strimzi-kafka-operator/pull/11849
What's Changed
- Fix Strimzi Metric Exporter in Kafka brokers record in CHANGELOG by @scholzj in https://github.com/strimzi/strimzi-kafka-operator/pull/11637
- Bump
mainbranch to 0.48.0-SNAPSHOT by @scholzj in https://github.com/strimzi/strimzi-kafka-operator/pull/11638 - Added testing Apache Kafka RCs with staging repo on the dev doc by @ppatierno in https://github.com/strimzi/strimzi-kafka-operator/pull/11645
- Drop support for Kube 1.25 and 1.26 by @scholzj in https://github.com/strimzi/strimzi-kafka-operator/pull/11640
- Fixed ambiguos call with varargs parameter by @ppatierno in https://github.com/strimzi/strimzi-kafka-operator/pull/11649
- Add Strimzi 0.47.0 to the main branch by @scholzj in https://github.com/strimzi/strimzi-kafka-operator/pull/11655
- Fixed deletion of auto-rebalancing related ConfigMap by @ppatierno in https://github.com/strimzi/strimzi-kafka-operator/pull/11653
- Refactor CC capacity configuration classes by @kyguy in https://github.com/strimzi/strimzi-kafka-operator/pull/11615
- Remove unused DeploymentConfig operators and other references by @scholzj in https://github.com/strimzi/strimzi-kafka-operator/pull/11659
- Use persistent link for Maven used in TF jobs by @Frawless in https://github.com/strimzi/strimzi-kafka-operator/pull/11660
- Add Strimzi 0.47.0 to the Upgrade/Downgrade STs by @scholzj in https://github.com/strimzi/strimzi-kafka-operator/pull/11658
- feat(kafka): adding new properties as expections to broker configs by @rlanhellas in https://github.com/strimzi/strimzi-kafka-operator/pull/11668
- Fix non-default primitive types within KafkaRebalance by @ppatierno in https://github.com/strimzi/strimzi-kafka-operator/pull/11672
- docs(kraft): note on migrating zookeeper clusters by @PaulRMellor in https://github.com/strimzi/strimzi-kafka-operator/pull/11666
- docs(pdb): clarifies PodDisruptionBudget behavior by @PaulRMellor in https://github.com/strimzi/strimzi-kafka-operator/pull/11663
- feat(examples,metrics,kube-state-metrics): extend for 'KafkaAccess' by @sebastiangaiser in https://github.com/strimzi/strimzi-kafka-operator/pull/11677
- feat(helm-charts,helm3,strimzi-kafka-operator): add optional deploymentStrategy to CO by @sebastiangaiser in https://github.com/strimzi/strimzi-kafka-operator/pull/11681
- Disable CC network resource goals when resource capacities are not set. by @kyguy in https://github.com/strimzi/strimzi-kafka-operator/pull/11465
- fix(operator): operator stuck when failing in parse kubernetes version by @rlanhellas in https://github.com/strimzi/strimzi-kafka-operator/pull/11641
- Fix gramma and clarity across codebase by @see-quick in https://github.com/strimzi/strimzi-kafka-operator/pull/11692
- Remove the KRaft and NodePool annotations by @scholzj in https://github.com/strimzi/strimzi-kafka-operator/pull/11686
- Cleanup the CHANGELOG for Strimzi 0.48.0 by @scholzj in https://github.com/strimzi/strimzi-kafka-operator/pull/11694
- Call kubeCmdClient clean with timeout by @kornys in https://github.com/strimzi/strimzi-kafka-operator/pull/11683
- [ST] Change fields of the YAML files to make more sense and add README for upgrade/downgrade tests by @im-konge in https://github.com/strimzi/strimzi-kafka-operator/pull/11698
- Remove check for Kafka version from the
validateKRaftJbodStoragemethod (but keep check for metadata version) by @im-konge in https://github.com/strimzi/strimzi-kafka-operator/pull/11697 - [system test] optimize execution time Azure jobs by @see-quick in https://github.com/strimzi/strimzi-kafka-operator/pull/11700
- Strimzi Metrics Reporter integration with KafkaConnect and MirrorMaker2 by @OwenCorrigan76 in https://github.com/strimzi/strimzi-kafka-operator/pull/11570
- Docs integreate strimzi metrics reporter kc mm2 by @OwenCorrigan76 in https://github.com/strimzi/strimzi-kafka-operator/pull/11575
- Update Cruise Control to 2.5.143 by @scholzj in https://github.com/strimzi/strimzi-kafka-operator/pull/11710
- Add support for Strimzi Metrics Reporter to the Strimzi Kafka Bridge by @OwenCorrigan76 in https://github.com/strimzi/strimzi-kafka-operator/pull/11708
- Use captors in CaReconcilerTest with verify instead of when by @katheris in https://github.com/strimzi/strimzi-kafka-operator/pull/11707
- Bumped Vert.x 5.0.2 and Netty 4.2.3.Final by @ppatierno in https://github.com/strimzi/strimzi-kafka-operator/pull/11719
- Split example prometheus-operator bits into individual files by @jcpunk in https://github.com/strimzi/strimzi-kafka-operator/pull/11715
- Removed unused members in the RestartContext class by @ppatierno in https://github.com/strimzi/strimzi-kafka-operator/pull/11737
- Make ignored users in User Operator configurable by @scholzj in https://github.com/strimzi/strimzi-kafka-operator/pull/11711
- [DOC] Fix
OAUthversusOAuthtypos in docs by @scholzj in https://github.com/strimzi/strimzi-kafka-operator/pull/11739 - Bumped Vert.x 5.0.3 and Netty 4.2.4.Final by @ppatierno in https://github.com/strimzi/strimzi-kafka-operator/pull/11745
- Update Cluster CA secret data when removing old certificates by @katheris in https://github.com/strimzi/strimzi-kafka-operator/pull/11723
- Server Side Apply phase 1 - ConfigMap, Ingress, Service, ServiceAccount, PVC by @im-konge in https://github.com/strimzi/strimzi-kafka-operator/pull/11693
- Enable storing raw yaml files from test runs by @kornys in https://github.com/strimzi/strimzi-kafka-operator/pull/11741
- docs (Metrics Rporter) Add Metrics docs updates for the Bridge related to the Strimzi Metrics Reporter Integration by @OwenCorrigan76 in https://github.com/strimzi/strimzi-kafka-operator/pull/11727
- Minor refactoring to remove unused method and rename others by @ppatierno in https://github.com/strimzi/strimzi-kafka-operator/pull/11746
- Added dynamic changes on cluster-wide configuration parameters by @ppatierno in https://github.com/strimzi/strimzi-kafka-operator/pull/11742
- Clean-up the
Utilclass inoperator-commonby @scholzj in https://github.com/strimzi/strimzi-kafka-operator/pull/11749 - [system test] [doc] topic package by @see-quick in https://github.com/strimzi/strimzi-kafka-operator/pull/11691
- Removed unused code within KafkaRollerTest by @ppatierno in https://github.com/strimzi/strimzi-kafka-operator/pull/11748
- extend the EntityOperator, CruiseControl and KafkaExporter to support PDB by @KyriosGN0 in https://github.com/strimzi/strimzi-kafka-operator/pull/11699
- Remove paralell stuff from unit tests within cluster operator and ope… by @see-quick in https://github.com/strimzi/strimzi-kafka-operator/pull/11753
- Simplify ca reconciler test class by @katheris in https://github.com/strimzi/strimzi-kafka-operator/pull/11747
- [DOC] Improve the examples of MM2 connector and connector task restart annotations by @scholzj in https://github.com/strimzi/strimzi-kafka-operator/pull/11763
- minor: javadoc fix within KafkaRoller by @see-quick in https://github.com/strimzi/strimzi-kafka-operator/pull/11766
- PoC of system tests pipeline on GitHub Actions by @Frawless in https://github.com/strimzi/strimzi-kafka-operator/pull/11331
- Make sure that pipeline won't be triggered by every comment by @Frawless in https://github.com/strimzi/strimzi-kafka-operator/pull/11774
- Add support for
type: customclient authentication by @scholzj in https://github.com/strimzi/strimzi-kafka-operator/pull/11760 - Add workflows for testing our custom actions by @Frawless in https://github.com/strimzi/strimzi-kafka-operator/pull/11769
- Create only commit statuses for our system tests action and deliver couple of fixes by @Frawless in https://github.com/strimzi/strimzi-kafka-operator/pull/11777
- Removed unused pom property by @ppatierno in https://github.com/strimzi/strimzi-kafka-operator/pull/11778
- [DOC] Fix KafkaTopic typo by @fvaleri in https://github.com/strimzi/strimzi-kafka-operator/pull/11776
- Fix CHANGELOG records for the PEM certificates use in Kafka Connect by @scholzj in https://github.com/strimzi/strimzi-kafka-operator/pull/11781
- Move methods not related to Vert.x out of VertxUtil class by @scholzj in https://github.com/strimzi/strimzi-kafka-operator/pull/11768
- Fix OAuth version in docs (to 0.16.2) by @scholzj in https://github.com/strimzi/strimzi-kafka-operator/pull/11795
- docs(deploy): operator handling of resources in namespaces by @PaulRMellor in https://github.com/strimzi/strimzi-kafka-operator/pull/11740
- docs(connect): clarifies image/version config for kafka connect by @PaulRMellor in https://github.com/strimzi/strimzi-kafka-operator/pull/11779
- Add
RequiredInVersionsannotation to our CRD generator by @scholzj in https://github.com/strimzi/strimzi-kafka-operator/pull/11792 - Update the Prometheus JMX Exporter and the Maven Builder image by @scholzj in https://github.com/strimzi/strimzi-kafka-operator/pull/11794
- Checkout merge commit instead of branch HEAD for sts workflow by @Frawless in https://github.com/strimzi/strimzi-kafka-operator/pull/11793
- Minor fixes to GHA missing names by @ppatierno in https://github.com/strimzi/strimzi-kafka-operator/pull/11796
- Fix NPE when logging User Operator configuration by @scholzj in https://github.com/strimzi/strimzi-kafka-operator/pull/11802
- Use proper runner name for building images by @Frawless in https://github.com/strimzi/strimzi-kafka-operator/pull/11807
- Cleanup of API CRD classes by @scholzj in https://github.com/strimzi/strimzi-kafka-operator/pull/11806
- Add support for deprecated versions to our CRD Generator by @scholzj in https://github.com/strimzi/strimzi-kafka-operator/pull/11805
- [ST] Add possibility to specify already built image with tiered storage plugin by @im-konge in https://github.com/strimzi/strimzi-kafka-operator/pull/11804
- [system test] [doc] UserST by @see-quick in https://github.com/strimzi/strimzi-kafka-operator/pull/11771
- Remove invalid warning about JVM Options being not supported in
KafkaBridgeby @scholzj in https://github.com/strimzi/strimzi-kafka-operator/pull/11812 - docs(fix): fixes typo in loading config values from files procedure by @PaulRMellor in https://github.com/strimzi/strimzi-kafka-operator/pull/11814
- Remove unused methods from the Storage API by @scholzj in https://github.com/strimzi/strimzi-kafka-operator/pull/11813
- Mention the 3rd party folder deletion when remove Kafka version by @ppatierno in https://github.com/strimzi/strimzi-kafka-operator/pull/11815
- [ST] Configure
KAFKA_TIERED_STORAGE_BASE_IMAGEenv in TestingFarm pipeline by @im-konge in https://github.com/strimzi/strimzi-kafka-operator/pull/11810 - Update Vert.x to 5.0.4 and Netty to 4.2.5 by @scholzj in https://github.com/strimzi/strimzi-kafka-operator/pull/11819
- Add support Apache Kafka 4.1.0 by @ppatierno in https://github.com/strimzi/strimzi-kafka-operator/pull/11642
- Use proper ref for load images and fix results notification by @Frawless in https://github.com/strimzi/strimzi-kafka-operator/pull/11811
- [AZP] Add cleanup phase to UTs/ITs job for build by @im-konge in https://github.com/strimzi/strimzi-kafka-operator/pull/11821
- Remove support for Apache Kafka 3.9.x by @ppatierno in https://github.com/strimzi/strimzi-kafka-operator/pull/11822
- Improve UO error when no operation is specified in ACL rule by @scholzj in https://github.com/strimzi/strimzi-kafka-operator/pull/11820
- Fix two leftover examples to Kafka 4.1.0 by @scholzj in https://github.com/strimzi/strimzi-kafka-operator/pull/11831
- Added usage of Kafka Admin API to list registered brokers (and unregister them) as KIP-1073 by @ppatierno in https://github.com/strimzi/strimzi-kafka-operator/pull/11729
- KafkaConnect / KafkaMirrorMaker2 RoleBinding issues by @shunki-fujita in https://github.com/strimzi/strimzi-kafka-operator/pull/11787
- Remove unused parts of
KafkaConfigModeGeneratorby @scholzj in https://github.com/strimzi/strimzi-kafka-operator/pull/11830 - Allow typed APIs to be present only in some API versions by @scholzj in https://github.com/strimzi/strimzi-kafka-operator/pull/11835
- Removed use of AccessController by @ppatierno in https://github.com/strimzi/strimzi-kafka-operator/pull/11832
- Add workflow for building Strimzi by @Frawless in https://github.com/strimzi/strimzi-kafka-operator/pull/11789
- Attemp to fix flakiness CoreFeaturesIT by @see-quick in https://github.com/strimzi/strimzi-kafka-operator/pull/11758
- Update Fabric8 Kubernetes Client to 7.4.0 by @scholzj in https://github.com/strimzi/strimzi-kafka-operator/pull/11843
- Fix path for check-permissions and move determine-ref to subfolder by @Frawless in https://github.com/strimzi/strimzi-kafka-operator/pull/11847
- Add Strimzi test container 0.112.0 by @see-quick in https://github.com/strimzi/strimzi-kafka-operator/pull/11824
- Add PR trigger to verify changes in sts workflow for every change by @Frawless in https://github.com/strimzi/strimzi-kafka-operator/pull/11833
- Allow having CEL validation rules only for specific CRD API versions by @scholzj in https://github.com/strimzi/strimzi-kafka-operator/pull/11851
- [ST] Change
testChangingInternalToExternalLoggingTriggerRollingUpdateafter removal of Kafka 3.9.x by @im-konge in https://github.com/strimzi/strimzi-kafka-operator/pull/11850 - Use parse-comment from main branch by @Frawless in https://github.com/strimzi/strimzi-kafka-operator/pull/11861
- Add configuration for codecov service by @Frawless in https://github.com/strimzi/strimzi-kafka-operator/pull/11863
- Removed unused method in KafkaRoller by @ppatierno in https://github.com/strimzi/strimzi-kafka-operator/pull/11865
- Integrate OAuth 0.17.0
grantTypeconfiguration by @mstruk in https://github.com/strimzi/strimzi-kafka-operator/pull/11757 - Convert long numeric values to int64 in Helm templates, preventing 1.8e+06 formatting and operator crashes by @kiku99 in https://github.com/strimzi/strimzi-kafka-operator/pull/11862
- docs(oauth): adds grantType config to examples by @PaulRMellor in https://github.com/strimzi/strimzi-kafka-operator/pull/11848
- Update Bridge to 0.33.0 by @ppatierno in https://github.com/strimzi/strimzi-kafka-operator/pull/11852
- docs(affinity): updates the pod scheduling section to use node pools by @PaulRMellor in https://github.com/strimzi/strimzi-kafka-operator/pull/11803
- [ST] Add possibility to specify the classpath for Tiered Storage tests by @im-konge in https://github.com/strimzi/strimzi-kafka-operator/pull/11873
- chore(monitoring): fix alerts grouping by @bissquit in https://github.com/strimzi/strimzi-kafka-operator/pull/11849
- docs(mm2): updates to mm2 config content and structure to improve usability and clarity by @PaulRMellor in https://github.com/strimzi/strimzi-kafka-operator/pull/11695
- Update log4j version to 2.25.0 and slf4j to 2.0.17 by @MichaelMorrisEst in https://github.com/strimzi/strimzi-kafka-operator/pull/11629
- Handling
min.insync.replicasdeletion operation when possible based on ELR version by @ppatierno in https://github.com/strimzi/strimzi-kafka-operator/pull/11857 - chore(monitoring): fix AbnormalControllerState alert rule by @bissquit in https://github.com/strimzi/strimzi-kafka-operator/pull/11878
- docs(fix): format fix for server-side apply feature gate section by @PaulRMellor in https://github.com/strimzi/strimzi-kafka-operator/pull/11877
- [ST] Fixes to LogCollector and UserST by @im-konge in https://github.com/strimzi/strimzi-kafka-operator/pull/11876
- Disable test-container logging as build is stable by @see-quick in https://github.com/strimzi/strimzi-kafka-operator/pull/11882
- Use the new snapshot repository for the Access Operator in STs by @scholzj in https://github.com/strimzi/strimzi-kafka-operator/pull/11884
- Defaulting
min.insync.replicasto 1 when it's not specified by the user by @ppatierno in https://github.com/strimzi/strimzi-kafka-operator/pull/11883 - docs(format): adds missing abstract tags to doc files by @PaulRMellor in https://github.com/strimzi/strimzi-kafka-operator/pull/11886
- docs(downgrade): clarifies metadata version support for downgrades by @PaulRMellor in https://github.com/strimzi/strimzi-kafka-operator/pull/11885
- Allow configuring additional options when restarting connectors by @rlanhellas in https://github.com/strimzi/strimzi-kafka-operator/pull/11797
- Remove unused Apicurio dependency from main
pom.xmlfile by @scholzj in https://github.com/strimzi/strimzi-kafka-operator/pull/11897 - Updated bridge to 0.33.1 by @ppatierno in https://github.com/strimzi/strimzi-kafka-operator/pull/11891
- Moved access-operator-api dep to systemtest by @ppatierno in https://github.com/strimzi/strimzi-kafka-operator/pull/11904
Full Changelog: https://github.com/strimzi/strimzi-kafka-operator/compare/0.47.0...0.48.0