Skip to content

Commit

Permalink
Merge pull request #37506 from quarkusio/dependabot/maven/org.liquiba…
Browse files Browse the repository at this point in the history
…se-liquibase-core-4.25.0

Bump org.liquibase:liquibase-core from 4.24.0 to 4.25.0
  • Loading branch information
gastaldi authored Dec 11, 2023
2 parents 0b7462d + 6b5a9ba commit 1f6890f
Show file tree
Hide file tree
Showing 3 changed files with 11 additions and 3 deletions.
2 changes: 1 addition & 1 deletion bom/application/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -171,7 +171,7 @@
<flyway.version>9.22.3</flyway.version>
<yasson.version>3.0.3</yasson.version>
<!-- liquibase-mongodb is not released everytime with liquibase anymore, but the two versions need to be compatible -->
<liquibase.version>4.24.0</liquibase.version>
<liquibase.version>4.25.0</liquibase.version>
<liquibase-mongodb.version>4.24.0</liquibase-mongodb.version>
<snakeyaml.version>2.2</snakeyaml.version>
<osgi.version>6.0.0</osgi.version>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -153,6 +153,7 @@ void nativeImageConfiguration(

Stream.of(liquibase.change.Change.class,
liquibase.changelog.ChangeLogHistoryService.class,
liquibase.changeset.ChangeSetService.class,
liquibase.database.Database.class,
liquibase.database.DatabaseConnection.class,
liquibase.datatype.LiquibaseDataType.class,
Expand All @@ -164,9 +165,11 @@ void nativeImageConfiguration(
liquibase.lockservice.LockService.class,
liquibase.logging.LogService.class,
liquibase.parser.ChangeLogParser.class,
liquibase.parser.LiquibaseSqlParser.class,
liquibase.parser.NamespaceDetails.class,
liquibase.parser.SnapshotParser.class,
liquibase.precondition.Precondition.class,
liquibase.report.ShowSummaryGenerator.class,
liquibase.serializer.ChangeLogSerializer.class,
liquibase.serializer.SnapshotSerializer.class,
liquibase.servicelocator.ServiceLocator.class,
Expand Down Expand Up @@ -202,6 +205,8 @@ void nativeImageConfiguration(
"www.liquibase.org/xml/ns/dbchangelog/dbchangelog-4.21.xsd",
"www.liquibase.org/xml/ns/dbchangelog/dbchangelog-4.22.xsd",
"www.liquibase.org/xml/ns/dbchangelog/dbchangelog-4.23.xsd",
"www.liquibase.org/xml/ns/dbchangelog/dbchangelog-4.24.xsd",
"www.liquibase.org/xml/ns/dbchangelog/dbchangelog-4.25.xsd",
"www.liquibase.org/xml/ns/dbchangelog/dbchangelog-latest.xsd",
"www.liquibase.org/xml/ns/dbchangelog/dbchangelog-ext.xsd",
"liquibase.build.properties"));
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -53,7 +53,6 @@
import io.quarkus.deployment.builditem.nativeimage.NativeImageResourceBundleBuildItem;
import io.quarkus.deployment.builditem.nativeimage.ReflectiveClassBuildItem;
import io.quarkus.deployment.builditem.nativeimage.RuntimeInitializedClassBuildItem;
import io.quarkus.deployment.builditem.nativeimage.RuntimeReinitializedClassBuildItem;
import io.quarkus.deployment.builditem.nativeimage.ServiceProviderBuildItem;
import io.quarkus.deployment.pkg.steps.NativeOrNativeSourcesBuild;
import io.quarkus.deployment.util.ServiceUtil;
Expand Down Expand Up @@ -106,7 +105,6 @@ void nativeImageConfiguration(
BuildProducer<NativeImageResourceBuildItem> resource,
BuildProducer<ServiceProviderBuildItem> services,
BuildProducer<RuntimeInitializedClassBuildItem> runtimeInitialized,
BuildProducer<RuntimeReinitializedClassBuildItem> runtimeReInitialized,
BuildProducer<NativeImageResourceBundleBuildItem> resourceBundle) {

runtimeInitialized.produce(new RuntimeInitializedClassBuildItem(liquibase.diff.compare.CompareControl.class.getName()));
Expand Down Expand Up @@ -170,6 +168,7 @@ void nativeImageConfiguration(

Stream.of(liquibase.change.Change.class,
liquibase.changelog.ChangeLogHistoryService.class,
liquibase.changeset.ChangeSetService.class,
liquibase.database.Database.class,
liquibase.database.DatabaseConnection.class,
liquibase.datatype.LiquibaseDataType.class,
Expand All @@ -181,9 +180,11 @@ void nativeImageConfiguration(
liquibase.lockservice.LockService.class,
liquibase.logging.LogService.class,
liquibase.parser.ChangeLogParser.class,
liquibase.parser.LiquibaseSqlParser.class,
liquibase.parser.NamespaceDetails.class,
liquibase.parser.SnapshotParser.class,
liquibase.precondition.Precondition.class,
liquibase.report.ShowSummaryGenerator.class,
liquibase.serializer.ChangeLogSerializer.class,
liquibase.serializer.SnapshotSerializer.class,
liquibase.servicelocator.ServiceLocator.class,
Expand Down Expand Up @@ -236,6 +237,8 @@ void nativeImageConfiguration(
"www.liquibase.org/xml/ns/dbchangelog/dbchangelog-4.21.xsd",
"www.liquibase.org/xml/ns/dbchangelog/dbchangelog-4.22.xsd",
"www.liquibase.org/xml/ns/dbchangelog/dbchangelog-4.23.xsd",
"www.liquibase.org/xml/ns/dbchangelog/dbchangelog-4.24.xsd",
"www.liquibase.org/xml/ns/dbchangelog/dbchangelog-4.25.xsd",
"www.liquibase.org/xml/ns/dbchangelog/dbchangelog-latest.xsd",
"www.liquibase.org/xml/ns/dbchangelog/dbchangelog-ext.xsd",
"liquibase.build.properties"));
Expand Down

0 comments on commit 1f6890f

Please sign in to comment.