Upgrade to Flyway 7.0.2
Closes gh-23645
This commit is contained in:
@@ -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;
|
||||
}
|
||||
|
||||
@@ -304,7 +304,7 @@ bom {
|
||||
]
|
||||
}
|
||||
}
|
||||
library("Flyway", "7.0.0") {
|
||||
library("Flyway", "7.0.2") {
|
||||
group("org.flywaydb") {
|
||||
modules = [
|
||||
"flyway-core"
|
||||
|
||||
Reference in New Issue
Block a user