Camel Quarkus 3.15.0 Migration Guide
The following guide outlines how to adapt your code to changes that were made in Camel Quarkus 3.15.0.
Micrometer upgraded to 1.13.x
Quarkus now aligns with Micrometer 1.13.x. Refer to the Quarkus migration guide for more details.
If you were previously using io.micrometer:micrometer-registry-prometheus
in your application. This should be changed to io.quarkus:quarkus-micrometer-registry-prometheus
.
<dependency>
<groupId>io.quarkus</groupId>
<artifactId>quarkus-micrometer-registry-prometheus</artifactId>
</dependency>