Skip to content

Commit 5ae9419

Browse files
committed
fixup! Remove most deprecated APIs that were due for removal in 4.0
1 parent 96f03f4 commit 5ae9419

File tree

5 files changed

+138
-3
lines changed

5 files changed

+138
-3
lines changed

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

Lines changed: 58 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,18 @@
2424
"level": "error",
2525
"reason": "Removed in Flyway 10"
2626
}
27-
},{
27+
},
28+
{
29+
"name": "spring.flyway.clean-on-validation-error",
30+
"type": "java.lang.Boolean",
31+
"description": "Whether to automatically call clean when a validation error occurs.",
32+
"deprecation": {
33+
"level": "error",
34+
"reason": "Deprecated in Flyway 10.18 and removed in Flyway 11.0",
35+
"since": "3.4.0"
36+
}
37+
},
38+
{
2839
"name": "spring.flyway.community-db-support-enabled",
2940
"defaultValue": false
3041
},
@@ -94,11 +105,20 @@
94105
},
95106
{
96107
"name": "spring.flyway.locations",
97-
"sourceType": "org.springframework.boot.autoconfigure.flyway.FlywayProperties",
108+
"sourceType": "org.springframework.boot.flyway.autoconfigure.FlywayProperties",
98109
"defaultValue": [
99110
"classpath:db/migration"
100111
]
101112
},
113+
{
114+
"name": "spring.flyway.oracle-kerberos-cache-file",
115+
"type": "java.lang.String",
116+
"deprecation": {
117+
"replacement": "spring.flyway.oracle.kerberos-cache-file",
118+
"level": "error",
119+
"since": "3.2.0"
120+
}
121+
},
102122
{
103123
"name": "spring.flyway.oracle-kerberos-config-file",
104124
"type": "java.lang.String",
@@ -107,6 +127,33 @@
107127
"level": "error"
108128
}
109129
},
130+
{
131+
"name": "spring.flyway.oracle-sqlplus",
132+
"type": "java.lang.Boolean",
133+
"deprecation": {
134+
"replacement": "spring.flyway.oracle.sqlplus",
135+
"level": "error",
136+
"since": "3.2.0"
137+
}
138+
},
139+
{
140+
"name": "spring.flyway.oracle-sqlplus-warn",
141+
"type": "java.lang.Boolean",
142+
"deprecation": {
143+
"replacement": "spring.flyway.oracle.sqlplus-warn",
144+
"level": "error",
145+
"since": "3.2.0"
146+
}
147+
},
148+
{
149+
"name": "spring.flyway.oracle-wallet-location",
150+
"type": "java.lang.String",
151+
"deprecation": {
152+
"replacement": "spring.flyway.oracle.wallet-location",
153+
"level": "error",
154+
"since": "3.2.0"
155+
}
156+
},
110157
{
111158
"name": "spring.flyway.sql-migration-suffix",
112159
"type": "java.lang.String",
@@ -117,11 +164,19 @@
117164
},
118165
{
119166
"name": "spring.flyway.sql-migration-suffixes",
120-
"sourceType": "org.springframework.boot.autoconfigure.flyway.FlywayProperties",
167+
"sourceType": "org.springframework.boot.flyway.autoconfigure.FlywayProperties",
121168
"defaultValue": [
122169
".sql"
123170
]
124171
},
172+
{
173+
"name": "spring.flyway.sql-server-kerberos-login-file",
174+
"type": "java.lang.String",
175+
"deprecation": {
176+
"replacement": "spring.flyway.sqlserver.kerberos-login-file",
177+
"level": "error"
178+
}
179+
},
125180
{
126181
"name": "spring.flyway.undo-sql-migration-prefix",
127182
"type": "java.lang.String",

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

Lines changed: 20 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -27,13 +27,33 @@
2727
"reason": "Should be configured globally via management.metrics.distribution.percentiles-histogram."
2828
}
2929
},
30+
{
31+
"name": "spring.graphql.path",
32+
"type": "java.lang.String",
33+
"deprecated": true,
34+
"deprecation": {
35+
"level": "error",
36+
"replacement": "spring.graphql.http.path",
37+
"since": "3.5.0"
38+
}
39+
},
3040
{
3141
"name": "spring.graphql.schema.file-extensions",
3242
"defaultValue": ".graphqls,.gqls"
3343
},
3444
{
3545
"name": "spring.graphql.schema.locations",
3646
"defaultValue": "classpath:graphql/**/"
47+
},
48+
{
49+
"name": "spring.graphql.sse.timeout",
50+
"type": "java.time.Duration",
51+
"deprecated": true,
52+
"deprecation": {
53+
"level": "error",
54+
"replacement": "spring.graphql.http.sse.timeout",
55+
"since": "3.5.0"
56+
}
3757
}
3858
],
3959
"hints": [
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,13 @@
1+
{
2+
"groups": [],
3+
"properties": [
4+
{
5+
"name": "spring.gson.lenient",
6+
"type": "java.lang.Boolean",
7+
"deprecation": {
8+
"replacement": "spring.gson.strictness",
9+
"since": "3.4.0"
10+
}
11+
}
12+
]
13+
}

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

Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,21 @@
66
"type": "java.lang.Boolean",
77
"description": "Whether to enable JMS health check.",
88
"defaultValue": true
9+
},
10+
{
11+
"name": "spring.jms.listener.acknowledge-mode",
12+
"deprecation": {
13+
"replacement": "spring.jms.listener.session.acknowledge-mode",
14+
"since": "3.2.0"
15+
}
16+
},
17+
{
18+
"name": "spring.jms.listener.concurrency",
19+
"type": "java.lang.Integer",
20+
"deprecation": {
21+
"replacement": "spring.jms.listener.min-concurrency",
22+
"since": "3.2.0"
23+
}
924
}
1025
],
1126
"hints": [

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

Lines changed: 32 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -118,6 +118,38 @@
118118
"level": "error"
119119
}
120120
},
121+
{
122+
"name": "spring.kafka.retry.topic.delay",
123+
"type": "java.time.Duration",
124+
"deprecation": {
125+
"replacement": "spring.kafka.retry.topic.backoff.delay",
126+
"since": "3.4.0"
127+
}
128+
},
129+
{
130+
"name": "spring.kafka.retry.topic.max-delay",
131+
"type": "java.time.Duration",
132+
"deprecation": {
133+
"replacement": "spring.kafka.retry.topic.backoff.maxDelay",
134+
"since": "3.4.0"
135+
}
136+
},
137+
{
138+
"name": "spring.kafka.retry.topic.multiplier",
139+
"type": "java.lang.Double",
140+
"deprecation": {
141+
"replacement": "spring.kafka.retry.topic.backoff.multiplier",
142+
"since": "3.4.0"
143+
}
144+
},
145+
{
146+
"name": "spring.kafka.retry.topic.random-back-off",
147+
"type": "java.lang.Boolean",
148+
"deprecation": {
149+
"replacement": "spring.kafka.retry.topic.backoff.random",
150+
"since": "3.4.0"
151+
}
152+
},
121153
{
122154
"name": "spring.kafka.ssl.keystore-location",
123155
"type": "org.springframework.core.io.Resource",

0 commit comments

Comments
 (0)