Upgrade to Flyway 7.0.2

Closes gh-23645
This commit is contained in:
Stephane Nicoll 2020-10-13 10:16:01 +02:00
parent de2302ac43
commit 679bd34ea4
2 changed files with 15 additions and 1 deletions

View File

@ -311,6 +311,12 @@ public class FlywayProperties {
*/
private String oracleKerberosConfigFile;
/**
* Whether Flyway should output a table with the results of queries when executing
* migrations. Requires Flyway Teams.
*/
private boolean outputQueryResults = true;
/**
* Whether Flyway should skip executing the contents of the migrations and only update
* the schema history table. Requires Flyway teams.
@ -737,6 +743,14 @@ public class FlywayProperties {
this.oracleKerberosConfigFile = oracleKerberosConfigFile;
}
public boolean isOutputQueryResults() {
return this.outputQueryResults;
}
public void setOutputQueryResults(boolean outputQueryResults) {
this.outputQueryResults = outputQueryResults;
}
public Boolean getSkipExecutingMigrations() {
return this.skipExecutingMigrations;
}

View File

@ -304,7 +304,7 @@ bom {
]
}
}
library("Flyway", "7.0.0") {
library("Flyway", "7.0.2") {
group("org.flywaydb") {
modules = [
"flyway-core"