Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Submit feedback
Sign in / Register
Toggle navigation
S
spring-boot
Project
Project
Details
Activity
Releases
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
DEMO
spring-boot
Commits
679bd34e
Commit
679bd34e
authored
Oct 13, 2020
by
Stephane Nicoll
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Upgrade to Flyway 7.0.2
Closes gh-23645
parent
de2302ac
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
15 additions
and
1 deletion
+15
-1
FlywayProperties.java
...framework/boot/autoconfigure/flyway/FlywayProperties.java
+14
-0
build.gradle
spring-boot-project/spring-boot-dependencies/build.gradle
+1
-1
No files found.
spring-boot-project/spring-boot-autoconfigure/src/main/java/org/springframework/boot/autoconfigure/flyway/FlywayProperties.java
View file @
679bd34e
...
@@ -311,6 +311,12 @@ public class FlywayProperties {
...
@@ -311,6 +311,12 @@ public class FlywayProperties {
*/
*/
private
String
oracleKerberosConfigFile
;
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
* Whether Flyway should skip executing the contents of the migrations and only update
* the schema history table. Requires Flyway teams.
* the schema history table. Requires Flyway teams.
...
@@ -737,6 +743,14 @@ public class FlywayProperties {
...
@@ -737,6 +743,14 @@ public class FlywayProperties {
this
.
oracleKerberosConfigFile
=
oracleKerberosConfigFile
;
this
.
oracleKerberosConfigFile
=
oracleKerberosConfigFile
;
}
}
public
boolean
isOutputQueryResults
()
{
return
this
.
outputQueryResults
;
}
public
void
setOutputQueryResults
(
boolean
outputQueryResults
)
{
this
.
outputQueryResults
=
outputQueryResults
;
}
public
Boolean
getSkipExecutingMigrations
()
{
public
Boolean
getSkipExecutingMigrations
()
{
return
this
.
skipExecutingMigrations
;
return
this
.
skipExecutingMigrations
;
}
}
...
...
spring-boot-project/spring-boot-dependencies/build.gradle
View file @
679bd34e
...
@@ -304,7 +304,7 @@ bom {
...
@@ -304,7 +304,7 @@ bom {
]
]
}
}
}
}
library
(
"Flyway"
,
"7.0.
0
"
)
{
library
(
"Flyway"
,
"7.0.
2
"
)
{
group
(
"org.flywaydb"
)
{
group
(
"org.flywaydb"
)
{
modules
=
[
modules
=
[
"flyway-core"
"flyway-core"
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment