-
Notifications
You must be signed in to change notification settings - Fork 2.8k
Migration Guide 2.16
Kafka Client extension introduces quarkus.kafka.devservices.provider
build time property for configuring the dev service image provider.
Before 2.16 strimzi images could be used by configuring the quarkus.kafka.devservices.image-name
property to a value containing strimzi
text. After 2.16 developers have the option to configure quarkus.kafka.devservices.provider
to values redpanda
(default), strimzi
and kafka-native
with each option having a default container image. quarkus.kafka.devservices.image-name
can still be used to change the default image name.
CORS filter no longer supports all Origins by default when it is enabled and it has to be configured to allow all Origins. For example, if, after a careful consideration, you decide that all Origins must be supported, then you can do like this:
quarkus.http.cors=true
quarkus.http.cors.origins=*