Skip to content

Commit 4bd82bb

Browse files
committed
Polish "Upgrade to Flyway 9.0.1"
See gh-31723
1 parent f1bf80f commit 4bd82bb

File tree

1 file changed

+54
-1
lines changed

1 file changed

+54
-1
lines changed

spring-boot-project/spring-boot-autoconfigure/src/main/resources/META-INF/additional-spring-configuration-metadata.json

Lines changed: 54 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -992,7 +992,12 @@
992992
},
993993
{
994994
"name": "spring.flyway.baseline-migration-prefix",
995-
"defaultValue": "B"
995+
"defaultValue": "B",
996+
"description": "Filename prefix for baseline migrations. Requires Flyway Teams.",
997+
"deprecation": {
998+
"level": "error",
999+
"reason": "Removed in Flyway 9.0"
1000+
}
9961001
},
9971002
{
9981003
"name": "spring.flyway.check-location",
@@ -1022,6 +1027,46 @@
10221027
"reason": "Flyway pro edition only."
10231028
}
10241029
},
1030+
{
1031+
"name": "spring.flyway.ignore-future-migrations",
1032+
"type": "java.lang.Boolean",
1033+
"description": "Whether to ignore future migrations when reading the schema history table.",
1034+
"deprecation": {
1035+
"level": "error",
1036+
"reason": "Removed in Flyway 9.0",
1037+
"replacement": "spring.flyway.ignore-migration-patterns"
1038+
}
1039+
},
1040+
{
1041+
"name": "spring.flyway.ignore-ignored-migrations",
1042+
"type": "java.lang.Boolean",
1043+
"description": "Whether to ignore ignored migrations when reading the schema history table.",
1044+
"deprecation": {
1045+
"level": "error",
1046+
"reason": "Removed in Flyway 9.0",
1047+
"replacement": "spring.flyway.ignore-migration-patterns"
1048+
}
1049+
},
1050+
{
1051+
"name": "spring.flyway.ignore-missing-migrations",
1052+
"type": "java.lang.Boolean",
1053+
"description": "Whether to ignore missing migrations when reading the schema history table.",
1054+
"deprecation": {
1055+
"level": "error",
1056+
"reason": "Removed in Flyway 9.0",
1057+
"replacement": "spring.flyway.ignore-migration-patterns"
1058+
}
1059+
},
1060+
{
1061+
"name": "spring.flyway.ignore-pending-migrations",
1062+
"type": "java.lang.Boolean",
1063+
"description": "Whether to ignore pending migrations when reading the schema history table.",
1064+
"deprecation": {
1065+
"level": "error",
1066+
"reason": "Removed in Flyway 9.0",
1067+
"replacement": "spring.flyway.ignore-migration-patterns"
1068+
}
1069+
},
10251070
{
10261071
"name": "spring.flyway.locations",
10271072
"sourceType": "org.springframework.boot.autoconfigure.flyway.FlywayProperties",
@@ -1033,6 +1078,14 @@
10331078
"name": "spring.flyway.lock-retry-count",
10341079
"defaultValue": 50
10351080
},
1081+
{
1082+
"name": "spring.flyway.oracle-kerberos-config-file",
1083+
"type": "java.lang.String",
1084+
"deprecation": {
1085+
"replacement": "spring.flyway.kerberos-config-file",
1086+
"level": "error"
1087+
}
1088+
},
10361089
{
10371090
"name": "spring.flyway.placeholder-separator",
10381091
"defaultValue": ":"

0 commit comments

Comments
 (0)