Skip to content

Commit

Permalink
upgrade liquibase to 4.29.1 and liquibase-mongodb to 4.28.0
Browse files Browse the repository at this point in the history
  • Loading branch information
gcw-it committed Aug 7, 2024
1 parent 7bc9f62 commit 8da35f6
Show file tree
Hide file tree
Showing 7 changed files with 17 additions and 77 deletions.
4 changes: 2 additions & 2 deletions bom/application/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -163,8 +163,8 @@
<flyway.version>10.17.0</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.27.0</liquibase.version>
<liquibase-mongodb.version>4.24.0</liquibase-mongodb.version>
<liquibase.version>4.29.1</liquibase.version>
<liquibase-mongodb.version>4.28.0</liquibase-mongodb.version>
<snakeyaml.version>2.2</snakeyaml.version>
<osgi.version>6.0.0</osgi.version>
<mongo-client.version>4.11.1</mongo-client.version>
Expand Down
6 changes: 6 additions & 0 deletions extensions/liquibase-mongodb/deployment/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,12 @@
<dependency>
<groupId>io.quarkus</groupId>
<artifactId>quarkus-liquibase-mongodb</artifactId>
<exclusions>
<exclusion>
<groupId>org.liquibase</groupId>
<artifactId>liquibase-commercial</artifactId>
</exclusion>
</exclusions>
</dependency>
<dependency>
<groupId>io.quarkus</groupId>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -124,6 +124,7 @@ void nativeImageConfiguration(
liquibase.command.CommandFactory.class.getName(),
liquibase.database.LiquibaseTableNamesFactory.class.getName(),
liquibase.configuration.ConfiguredValueModifierFactory.class.getName(),
liquibase.changelog.FastCheckService.class.getName(),
// deprecated, but still used by liquibase.nosql.lockservice.AbstractNoSqlLockService
liquibase.configuration.GlobalConfiguration.class.getName())
.constructors().build());
Expand Down
6 changes: 6 additions & 0 deletions extensions/liquibase-mongodb/runtime/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -36,6 +36,12 @@
<dependency>
<groupId>org.liquibase.ext</groupId>
<artifactId>liquibase-mongodb</artifactId>
<exclusions>
<exclusion>
<groupId>org.liquibase</groupId>
<artifactId>liquibase-commercial</artifactId>
</exclusion>
</exclusions>
</dependency>
<dependency>
<groupId>org.graalvm.sdk</groupId>
Expand Down

This file was deleted.

Original file line number Diff line number Diff line change
Expand Up @@ -137,7 +137,8 @@ void nativeImageConfiguration(
reflective.produce(ReflectiveClassBuildItem.builder(
liquibase.command.CommandFactory.class.getName(),
liquibase.database.LiquibaseTableNamesFactory.class.getName(),
liquibase.configuration.ConfiguredValueModifierFactory.class.getName())
liquibase.configuration.ConfiguredValueModifierFactory.class.getName(),
liquibase.changelog.FastCheckService.class.getName())
.constructors().build());

reflective.produce(ReflectiveClassBuildItem.builder(
Expand Down

This file was deleted.

0 comments on commit 8da35f6

Please sign in to comment.