Skip to content

Migration Guide 2.7

Guillaume Smet edited this page Dec 18, 2021 · 17 revisions

Flyway

The MariaDB/MySQL integration was moved to a separate dependency. See https://flywaydb.org/documentation/database/mysql#java-usage. MariaDB/MySQL users need to add the following dependency from now on:

<dependency>
    <groupId>org.flywaydb</groupId>
    <artifactId>flyway-mysql</artifactId>
</dependency>

Jib

The quarkus-container-image-jib extension now uses a new base image when building a container image for JVM mode. Where previously fabric8/java-alpine-openjdk11-jre was being used, now if the application targets Java 17, registry.access.redhat.com/ubi8/openjdk-17-runtime:1.10 is used as the base image, otherwise registry.access.redhat.com/ubi8/openjdk-11-runtime:1.10 is used

Current version

Migration Guide 3.18

Next version in main

Migration Guide 3.19

Clone this wiki locally