Skip to content

Commit

Permalink
Bump org.liquibase:liquibase-core from 4.24.0 to 4.25.0
Browse files Browse the repository at this point in the history
Bumps [org.liquibase:liquibase-core](https://github.com/liquibase/liquibase) from 4.24.0 to 4.25.0.
- [Release notes](https://github.com/liquibase/liquibase/releases)
- [Changelog](https://github.com/liquibase/liquibase/blob/master/changelog.txt)
- [Commits](liquibase/liquibase@v4.24.0...v4.25.0)

---
updated-dependencies:
- dependency-name: org.liquibase:liquibase-core
  dependency-type: direct:production
  update-type: version-update:semver-minor
...

Signed-off-by: dependabot[bot] <support@github.com>

Include ChangeSetService

Add missing classes and XSD

Change in mongodb too

Add missing liquibase.report.ShowSummaryGenerator
  • Loading branch information
dependabot[bot] authored and gastaldi committed Dec 11, 2023
1 parent 9d9cb79 commit 6b5a9ba
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 6b5a9ba

Please sign in to comment.