-
Notifications
You must be signed in to change notification settings - Fork 2.8k
Migration Guide 2.7
Guillaume Smet edited this page Dec 18, 2021
·
17 revisions
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>
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