Skip to content

Commit

Permalink
Update flyway.version to v10.15.0 (release/4.0.x) (minor) (#640)
Browse files Browse the repository at this point in the history
* Update flyway.version to v10.15.0

* Fix DbMigrateCommandTest

---------

Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
Co-authored-by: Jochen Schalanda <[email protected]>
  • Loading branch information
renovate[bot] and joschi authored Jun 12, 2024
1 parent 01740e8 commit a190048
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -70,7 +70,7 @@
<sonar.host.url>https://sonarcloud.io</sonar.host.url>

<dropwizard.version>4.0.7</dropwizard.version>
<flyway.version>10.13.0</flyway.version>
<flyway.version>10.15.0</flyway.version>
</properties>

<dependencyManagement>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ public class DbMigrateCommandTest extends AbstractCommandTest {

@BeforeEach
void setUpFlyway() {
migrateResult = new MigrateResult(VersionPrinter.getVersion(), "db", "schema");
migrateResult = new MigrateResult(VersionPrinter.getVersion(), "db", "schema", "PostgreSQL");
migrateResult.initialSchemaVersion = "initial";
migrateResult.targetSchemaVersion = "target";
migrateResult.migrationsExecuted = 23;
Expand Down

0 comments on commit a190048

Please sign in to comment.