Skip to content

Migration Guide 3.16

Bruno Baptista edited this page Aug 27, 2024 · 20 revisions
Table of Contents
Note

We highly recommend the use of quarkus update to update to a new version of Quarkus.

Items marked below with ⚙️ ✅ are automatically handled by quarkus update.

Micrometer

Micrometer has been upgraded from 1.12.5 to 1.13.3. One of the changes is the use of Prometheus client v1.x, however, Quarkus will keep using the old deprecated v0.x client for longer.

This requires no changes from users.

However, is for some reason you are using the old dependency in some tests:

<dependency>
    <groupId>io.micrometer</groupId>
    <artifactId>micrometer-registry-prometheus</artifactId>
</dependency>
the new one is:
<dependency>
    <groupId>io.micrometer</groupId>
    <artifactId>micrometer-registry-prometheus-simpleclient</artifactId>
</dependency>

Migration guides

Current version


LTS versions


Next version in main


Clone this wiki locally