Skip to content

Commit bc91c35

Browse files
committed
Merge branch '3.4.x'
Closes gh-44993
2 parents 455bb0f + c96835b commit bc91c35

File tree

149 files changed

+160
-160
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

149 files changed

+160
-160
lines changed

spring-boot-project/spring-boot-actuator-autoconfigure/src/main/java/org/springframework/boot/actuate/autoconfigure/cloudfoundry/CloudFoundryWebEndpointDiscoverer.java

+1-1
Original file line numberDiff line numberDiff line change
@@ -57,7 +57,7 @@ public class CloudFoundryWebEndpointDiscoverer extends WebEndpointDiscoverer {
5757
* @param endpointPathMappers the endpoint path mappers
5858
* @param invokerAdvisors invoker advisors to apply
5959
* @param endpointFilters endpoint filters to apply
60-
* @deprecated since 3.4.0 for removal in 3.6.0 in favor of
60+
* @deprecated since 3.4.0 for removal in 4.0.0 in favor of
6161
* {@link #CloudFoundryWebEndpointDiscoverer(ApplicationContext, ParameterValueMapper, EndpointMediaTypes, List, Collection, Collection, Collection)}
6262
*/
6363
@Deprecated(since = "3.4.0", forRemoval = true)

spring-boot-project/spring-boot-actuator-autoconfigure/src/main/java/org/springframework/boot/actuate/autoconfigure/endpoint/expose/EndpointExposure.java

+1-1
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@ public enum EndpointExposure {
3737
/**
3838
* Exposed on Cloud Foundry over `/cloudfoundryapplication`.
3939
* @since 2.6.4
40-
* @deprecated since 3.4.0 for removal in 3.6.0 in favor of using
40+
* @deprecated since 3.4.0 for removal in 4.0.0 in favor of using
4141
* {@link EndpointExposure#WEB}
4242
*/
4343
@Deprecated(since = "3.4.0", forRemoval = true)

spring-boot-project/spring-boot-actuator-autoconfigure/src/main/java/org/springframework/boot/actuate/autoconfigure/metrics/export/signalfx/SignalFxMetricsExportAutoConfiguration.java

+1-1
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@
3838
* @author Jon Schneider
3939
* @author Andy Wilkinson
4040
* @since 2.0.0
41-
* @deprecated since 3.5.0 for removal in 3.7.0
41+
* @deprecated since 3.5.0 for removal in 4.0.0
4242
*/
4343
@AutoConfiguration(
4444
before = { CompositeMeterRegistryAutoConfiguration.class, SimpleMetricsExportAutoConfiguration.class },

spring-boot-project/spring-boot-actuator-autoconfigure/src/main/java/org/springframework/boot/actuate/autoconfigure/metrics/export/signalfx/SignalFxProperties.java

+1-1
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@
3030
* @author Andy Wilkinson
3131
* @author Stephane Nicoll
3232
* @since 2.0.0
33-
* @deprecated since 3.5.0 for removal in 3.7.0
33+
* @deprecated since 3.5.0 for removal in 4.0.0
3434
*/
3535
@ConfigurationProperties("management.signalfx.metrics.export")
3636
@Deprecated(since = "3.5.0", forRemoval = true)

spring-boot-project/spring-boot-actuator-autoconfigure/src/main/java/org/springframework/boot/actuate/autoconfigure/metrics/export/signalfx/SignalFxPropertiesConfigAdapter.java

+1-1
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@
2525
*
2626
* @author Jon Schneider
2727
* @since 2.0.0
28-
* @deprecated since 3.5.0 for removal in 3.7.0
28+
* @deprecated since 3.5.0 for removal in 4.0.0
2929
*/
3030
@Deprecated(since = "3.5.0", forRemoval = true)
3131
@SuppressWarnings("removal")

spring-boot-project/spring-boot-actuator-autoconfigure/src/main/java/org/springframework/boot/actuate/autoconfigure/opentelemetry/OpenTelemetryResourceAttributes.java

+1-1
Original file line numberDiff line numberDiff line change
@@ -110,7 +110,7 @@ private String getApplicationName() {
110110
/**
111111
* Returns the application group.
112112
* @return the application group
113-
* @deprecated since 3.5.0 for removal in 3.7.0
113+
* @deprecated since 3.5.0 for removal in 4.0.0
114114
*/
115115
@Deprecated(since = "3.5.0", forRemoval = true)
116116
private String getApplicationGroup() {

spring-boot-project/spring-boot-actuator-autoconfigure/src/main/java/org/springframework/boot/actuate/autoconfigure/tracing/otlp/OtlpTracingConnectionDetails.java

+1-1
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ public interface OtlpTracingConnectionDetails extends ConnectionDetails {
3030
/**
3131
* Address to where tracing will be published.
3232
* @return the address to where tracing will be published
33-
* @deprecated since 3.4.0 for removal in 3.6.0 in favor of {@link #getUrl(Transport)}
33+
* @deprecated since 3.4.0 for removal in 4.0.0 in favor of {@link #getUrl(Transport)}
3434
*/
3535
@Deprecated(since = "3.4.0", forRemoval = true)
3636
default String getUrl() {

spring-boot-project/spring-boot-actuator-autoconfigure/src/test/java/org/springframework/boot/actuate/autoconfigure/metrics/export/signalfx/SignalFxMetricsExportAutoConfigurationTests.java

+1-1
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@
3333
* Tests for {@link SignalFxMetricsExportAutoConfiguration}.
3434
*
3535
* @author Andy Wilkinson
36-
* @deprecated since 3.5.0 for removal in 3.7.0
36+
* @deprecated since 3.5.0 for removal in 4.0.0
3737
*/
3838
@SuppressWarnings("removal")
3939
@Deprecated(since = "3.5.0", forRemoval = true)

spring-boot-project/spring-boot-actuator-autoconfigure/src/test/java/org/springframework/boot/actuate/autoconfigure/metrics/export/signalfx/SignalFxPropertiesConfigAdapterTests.java

+1-1
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@
2626
* Tests for {@link SignalFxPropertiesConfigAdapter}.
2727
*
2828
* @author Mirko Sobeck
29-
* @deprecated since 3.5.0 for removal in 3.7.0
29+
* @deprecated since 3.5.0 for removal in 4.0.0
3030
*/
3131
@SuppressWarnings("removal")
3232
@Deprecated(since = "3.5.0", forRemoval = true)

spring-boot-project/spring-boot-actuator-autoconfigure/src/test/java/org/springframework/boot/actuate/autoconfigure/metrics/export/signalfx/SignalFxPropertiesTests.java

+1-1
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@
2727
* Tests for {@link SignalFxProperties}.
2828
*
2929
* @author Stephane Nicoll
30-
* @deprecated since 3.5.0 for removal in 3.7.0
30+
* @deprecated since 3.5.0 for removal in 4.0.0
3131
*/
3232
@SuppressWarnings("removal")
3333
@Deprecated(since = "3.5.0", forRemoval = true)

spring-boot-project/spring-boot-actuator/src/main/java/org/springframework/boot/actuate/endpoint/AbstractExposableEndpoint.java

+1-1
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,7 @@ public abstract class AbstractExposableEndpoint<O extends Operation> implements
4141
* @param id the endpoint id
4242
* @param enabledByDefault if the endpoint is enabled by default
4343
* @param operations the endpoint operations
44-
* @deprecated since 3.4.0 for removal in 3.6.0 in favor of
44+
* @deprecated since 3.4.0 for removal in 4.0.0 in favor of
4545
* {@link #AbstractExposableEndpoint(EndpointId, Access, Collection)}
4646
*/
4747
@Deprecated(since = "3.4.0", forRemoval = true)

spring-boot-project/spring-boot-actuator/src/main/java/org/springframework/boot/actuate/endpoint/ExposableEndpoint.java

+1-1
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@ public interface ExposableEndpoint<O extends Operation> {
3737
/**
3838
* Returns if the endpoint is enabled by default.
3939
* @return if the endpoint is enabled by default
40-
* @deprecated since 3.4.0 for removal in 3.6.0 in favor of
40+
* @deprecated since 3.4.0 for removal in 4.0.0 in favor of
4141
* {@link #getDefaultAccess()}
4242
*/
4343
@Deprecated(since = "3.4.0", forRemoval = true)

spring-boot-project/spring-boot-actuator/src/main/java/org/springframework/boot/actuate/endpoint/annotation/AbstractDiscoveredEndpoint.java

+1-1
Original file line numberDiff line numberDiff line change
@@ -48,7 +48,7 @@ public abstract class AbstractDiscoveredEndpoint<O extends Operation> extends Ab
4848
* @param id the ID of the endpoint
4949
* @param enabledByDefault if the endpoint is enabled by default
5050
* @param operations the endpoint operations
51-
* @deprecated since 3.4.0 for removal in 3.6.0 in favor of
51+
* @deprecated since 3.4.0 for removal in 4.0.0 in favor of
5252
* {@link #AbstractDiscoveredEndpoint(EndpointDiscoverer, Object, EndpointId, Access, Collection)}
5353
*/
5454
@SuppressWarnings("removal")

spring-boot-project/spring-boot-actuator/src/main/java/org/springframework/boot/actuate/endpoint/annotation/Endpoint.java

+1-1
Original file line numberDiff line numberDiff line change
@@ -66,7 +66,7 @@
6666
/**
6767
* If the endpoint should be enabled or disabled by default.
6868
* @return {@code true} if the endpoint is enabled by default
69-
* @deprecated since 3.4.0 for removal in 3.6.0 in favor of {@link #defaultAccess()}
69+
* @deprecated since 3.4.0 for removal in 4.0.0 in favor of {@link #defaultAccess()}
7070
*/
7171
@Deprecated(since = "3.4.0", forRemoval = true)
7272
boolean enableByDefault() default true;

spring-boot-project/spring-boot-actuator/src/main/java/org/springframework/boot/actuate/endpoint/annotation/EndpointDiscoverer.java

+2-2
Original file line numberDiff line numberDiff line change
@@ -90,7 +90,7 @@ public abstract class EndpointDiscoverer<E extends ExposableEndpoint<O>, O exten
9090
* @param parameterValueMapper the parameter value mapper
9191
* @param invokerAdvisors invoker advisors to apply
9292
* @param endpointFilters endpoint filters to apply
93-
* @deprecated since 3.4.0 for removal in 3.6.0 in favor of
93+
* @deprecated since 3.4.0 for removal in 4.0.0 in favor of
9494
* {@link #EndpointDiscoverer(ApplicationContext, ParameterValueMapper, Collection, Collection, Collection)}
9595
*/
9696
@Deprecated(since = "3.4.0", forRemoval = true)
@@ -388,7 +388,7 @@ protected Class<? extends E> getEndpointType() {
388388
* @param enabledByDefault if the endpoint is enabled by default
389389
* @param operations the endpoint operations
390390
* @return a created endpoint (a {@link DiscoveredEndpoint} is recommended)
391-
* @deprecated since 3.4.0 for removal in 3.6.0 in favor of
391+
* @deprecated since 3.4.0 for removal in 4.0.0 in favor of
392392
* {@link #createEndpoint(Object, EndpointId, Access, Collection)}
393393
*/
394394
@Deprecated(since = "3.4.0", forRemoval = true)

spring-boot-project/spring-boot-actuator/src/main/java/org/springframework/boot/actuate/endpoint/jmx/annotation/JmxEndpoint.java

+1-1
Original file line numberDiff line numberDiff line change
@@ -51,7 +51,7 @@
5151
/**
5252
* If the endpoint should be enabled or disabled by default.
5353
* @return {@code true} if the endpoint is enabled by default
54-
* @deprecated since 3.4.0 for removal in 3.6.0 in favor of
54+
* @deprecated since 3.4.0 for removal in 4.0.0 in favor of
5555
*/
5656
@Deprecated(since = "3.4.0", forRemoval = true)
5757
@AliasFor(annotation = Endpoint.class)

spring-boot-project/spring-boot-actuator/src/main/java/org/springframework/boot/actuate/endpoint/jmx/annotation/JmxEndpointDiscoverer.java

+1-1
Original file line numberDiff line numberDiff line change
@@ -54,7 +54,7 @@ public class JmxEndpointDiscoverer extends EndpointDiscoverer<ExposableJmxEndpoi
5454
* @param parameterValueMapper the parameter value mapper
5555
* @param invokerAdvisors invoker advisors to apply
5656
* @param endpointFilters endpoint filters to apply
57-
* @deprecated since 3.4.0 for removal in 3.6.0 in favor of
57+
* @deprecated since 3.4.0 for removal in 4.0.0 in favor of
5858
* {@link #JmxEndpointDiscoverer(ApplicationContext, ParameterValueMapper, Collection, Collection, Collection)}
5959
*/
6060
@Deprecated(since = "3.4.0", forRemoval = true)

spring-boot-project/spring-boot-actuator/src/main/java/org/springframework/boot/actuate/endpoint/web/annotation/WebEndpoint.java

+1-1
Original file line numberDiff line numberDiff line change
@@ -51,7 +51,7 @@
5151
/**
5252
* If the endpoint should be enabled or disabled by default.
5353
* @return {@code true} if the endpoint is enabled by default
54-
* @deprecated since 3.4.0 for removal in 3.6.0 in favor of
54+
* @deprecated since 3.4.0 for removal in 4.0.0 in favor of {@link #defaultAccess()}
5555
*/
5656
@Deprecated(since = "3.4.0", forRemoval = true)
5757
@AliasFor(annotation = Endpoint.class)

spring-boot-project/spring-boot-actuator/src/main/java/org/springframework/boot/actuate/endpoint/web/annotation/WebEndpointDiscoverer.java

+1-1
Original file line numberDiff line numberDiff line change
@@ -67,7 +67,7 @@ public class WebEndpointDiscoverer extends EndpointDiscoverer<ExposableWebEndpoi
6767
* @param endpointPathMappers the endpoint path mappers
6868
* @param invokerAdvisors invoker advisors to apply
6969
* @param filters filters to apply
70-
* @deprecated since 3.4.0 for removal in 3.6.0 in favor of
70+
* @deprecated since 3.4.0 for removal in 4.0.0 in favor of
7171
* {@link #WebEndpointDiscoverer(ApplicationContext, ParameterValueMapper, EndpointMediaTypes, List, List, Collection, Collection, Collection)}
7272
*/
7373
@Deprecated(since = "3.4.0", forRemoval = true)

spring-boot-project/spring-boot-autoconfigure/src/main/java/org/springframework/boot/autoconfigure/condition/ConditionOutcome.java

+1-1
Original file line numberDiff line numberDiff line change
@@ -153,7 +153,7 @@ public String toString() {
153153
* @param outcome the outcome to inverse
154154
* @return the inverse of the condition outcome
155155
* @since 1.3.0
156-
* @deprecated since 3.5.0 for removal in 3.7.0 in favor of
156+
* @deprecated since 3.5.0 for removal in 4.0.0 in favor of
157157
* {@link #ConditionOutcome(boolean, ConditionMessage)}
158158
*/
159159
@Deprecated(since = "3.5.0", forRemoval = true)

spring-boot-project/spring-boot-autoconfigure/src/main/java/org/springframework/boot/autoconfigure/jms/DefaultJmsListenerContainerFactoryConfigurer.java

+1-1
Original file line numberDiff line numberDiff line change
@@ -101,7 +101,7 @@ void setJmsProperties(JmsProperties jmsProperties) {
101101
* Set the {@link ObservationRegistry} to use.
102102
* @param observationRegistry the {@link ObservationRegistry}
103103
* @since 3.2.1
104-
* @deprecated since 3.3.10 for removal in 3.6.0 as this should have been package
104+
* @deprecated since 3.3.10 for removal in 4.0.0 as this should have been package
105105
* private
106106
*/
107107
@Deprecated(since = "3.3.10", forRemoval = true)

spring-boot-project/spring-boot-autoconfigure/src/main/java/org/springframework/boot/autoconfigure/kafka/KafkaConnectionDetails.java

+4-4
Original file line numberDiff line numberDiff line change
@@ -94,7 +94,7 @@ default Configuration getStreams() {
9494
/**
9595
* Returns the list of bootstrap servers used for consumers.
9696
* @return the list of bootstrap servers used for consumers
97-
* @deprecated since 3.5.0 for removal in 3.7.0 in favor of {@link #getConsumer()}
97+
* @deprecated since 3.5.0 for removal in 4.0.0 in favor of {@link #getConsumer()}
9898
*/
9999
@Deprecated(since = "3.5.0", forRemoval = true)
100100
default List<String> getConsumerBootstrapServers() {
@@ -104,7 +104,7 @@ default List<String> getConsumerBootstrapServers() {
104104
/**
105105
* Returns the list of bootstrap servers used for producers.
106106
* @return the list of bootstrap servers used for producers
107-
* @deprecated since 3.5.0 for removal in 3.7.0 in favor of {@link #getProducer()}
107+
* @deprecated since 3.5.0 for removal in 4.0.0 in favor of {@link #getProducer()}
108108
*/
109109
@Deprecated(since = "3.5.0", forRemoval = true)
110110
default List<String> getProducerBootstrapServers() {
@@ -114,7 +114,7 @@ default List<String> getProducerBootstrapServers() {
114114
/**
115115
* Returns the list of bootstrap servers used for the admin.
116116
* @return the list of bootstrap servers used for the admin
117-
* @deprecated since 3.5.0 for removal in 3.7.0 in favor of {@link #getAdmin()}
117+
* @deprecated since 3.5.0 for removal in 4.0.0 in favor of {@link #getAdmin()}
118118
*/
119119
@Deprecated(since = "3.5.0", forRemoval = true)
120120
default List<String> getAdminBootstrapServers() {
@@ -124,7 +124,7 @@ default List<String> getAdminBootstrapServers() {
124124
/**
125125
* Returns the list of bootstrap servers used for Kafka Streams.
126126
* @return the list of bootstrap servers used for Kafka Streams
127-
* @deprecated since 3.5.0 for removal in 3.7.0 in favor of {@link #getStreams()}
127+
* @deprecated since 3.5.0 for removal in 4.0.0 in favor of {@link #getStreams()}
128128
*/
129129
@Deprecated(since = "3.5.0", forRemoval = true)
130130
default List<String> getStreamsBootstrapServers() {

spring-boot-project/spring-boot-autoconfigure/src/main/java/org/springframework/boot/autoconfigure/mongo/StandardMongoClientSettingsBuilderCustomizer.java

+1-1
Original file line numberDiff line numberDiff line change
@@ -55,7 +55,7 @@ public class StandardMongoClientSettingsBuilderCustomizer implements MongoClient
5555
* @param uuidRepresentation the uuid representation
5656
* @param ssl the ssl properties
5757
* @param sslBundles the ssl bundles
58-
* @deprecated since 3.5.0 for removal in 3.7.0 in favor of
58+
* @deprecated since 3.5.0 for removal in 4.0.0 in favor of
5959
* {@link #StandardMongoClientSettingsBuilderCustomizer(MongoConnectionDetails, UuidRepresentation)}
6060
*/
6161
@Deprecated(forRemoval = true, since = "3.5.0")

spring-boot-project/spring-boot-autoconfigure/src/main/java/org/springframework/boot/autoconfigure/orm/jpa/JpaBaseConfiguration.java

+1-1
Original file line numberDiff line numberDiff line change
@@ -159,7 +159,7 @@ public LocalContainerEntityManagerFactoryBean entityManagerFactory(EntityManager
159159
/**
160160
* Return the vendor-specific properties.
161161
* @return the vendor properties
162-
* @deprecated since 3.4.4 for removal in 3.6.0 in favor of
162+
* @deprecated since 3.4.4 for removal in 4.0.0 in favor of
163163
* {@link #getVendorProperties(DataSource)}
164164
*/
165165
@Deprecated(since = "3.4.4", forRemoval = true)

spring-boot-project/spring-boot-autoconfigure/src/main/java/org/springframework/boot/autoconfigure/security/oauth2/client/ClientsConfiguredCondition.java

+1-1
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@
3535
*
3636
* @author Madhura Bhave
3737
* @since 2.1.0
38-
* @deprecated since 3.5.0 for removal in 3.7.0 in favor of
38+
* @deprecated since 3.5.0 for removal in 4.0.0 in favor of
3939
* {@link ConditionalOnOAuth2ClientRegistrationProperties @ConditionalOnOAuth2ClientRegistrationConfigured}
4040
*/
4141
@Deprecated(since = "3.5.0", forRemoval = true)

spring-boot-project/spring-boot-autoconfigure/src/main/java/org/springframework/boot/autoconfigure/security/oauth2/resource/IssuerUriCondition.java

+1-1
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@
3030
*
3131
* @author Artsiom Yudovin
3232
* @since 2.1.0
33-
* @deprecated since 3.5.0 for removal in 3.7.0 in favor of
33+
* @deprecated since 3.5.0 for removal in 4.0.0 in favor of
3434
* {@link ConditionalOnIssuerLocationJwtDecoder @ConditionalOnIssuerLocationJwtDecoder}
3535
*/
3636
@Deprecated(since = "3.5.0", forRemoval = true)

spring-boot-project/spring-boot-autoconfigure/src/main/java/org/springframework/boot/autoconfigure/security/oauth2/resource/KeyValueCondition.java

+1-1
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@
2929
*
3030
* @author Madhura Bhave
3131
* @since 2.2.0
32-
* @deprecated since 3.5.0 for removal in 3.7.0 in favor of
32+
* @deprecated since 3.5.0 for removal in 4.0.0 in favor of
3333
* {@link ConditionalOnPublicKeyJwtDecoder @ConditionalOnPublicKeyJwtDecoder}
3434
*/
3535
@Deprecated(since = "3.5.0", forRemoval = true)

spring-boot-project/spring-boot-autoconfigure/src/main/java/org/springframework/boot/autoconfigure/security/servlet/AntPathRequestMatcherProvider.java

+1-1
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@
2626
*
2727
* @author Madhura Bhave
2828
* @since 2.1.8
29-
* @deprecated since 3.5.0 for removal in 3.8.0 along with {@link RequestMatcherProvider}
29+
* @deprecated since 3.5.0 for removal in 4.0.0 along with {@link RequestMatcherProvider}
3030
*/
3131
@Deprecated(since = "3.5.0", forRemoval = true)
3232
@SuppressWarnings("removal")

spring-boot-project/spring-boot-autoconfigure/src/main/java/org/springframework/boot/autoconfigure/security/servlet/RequestMatcherProvider.java

+1-1
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@
2424
*
2525
* @author Madhura Bhave
2626
* @since 2.0.5
27-
* @deprecated since 3.5.0 for removal in 3.7.0 in favor of
27+
* @deprecated since 3.5.0 for removal in 4.0.0 in favor of
2828
* {@code org.springframework.boot.actuate.autoconfigure.security.servlet.RequestMatcherProvider}
2929
*/
3030
@Deprecated(since = "3.5.0", forRemoval = true)

spring-boot-project/spring-boot-autoconfigure/src/main/java/org/springframework/boot/autoconfigure/web/reactive/function/client/ClientHttpConnectorAutoConfiguration.java

+1-1
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,7 @@
4141
* @author Brian Clozel
4242
* @author Phillip Webb
4343
* @since 2.1.0
44-
* @deprecated since 3.5.0 for removal in 3.7.0 in favor of
44+
* @deprecated since 3.5.0 for removal in 4.0.0 in favor of
4545
* {@link org.springframework.boot.autoconfigure.http.client.reactive.ClientHttpConnectorAutoConfiguration}
4646
* and to align with the deprecation of {@link ReactorNettyHttpClientMapper}
4747
*/

spring-boot-project/spring-boot-autoconfigure/src/main/java/org/springframework/boot/autoconfigure/web/reactive/function/client/ReactorNettyHttpClientMapper.java

+1-1
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@
3232
* @author Brian Clozel
3333
* @author Phillip Webb
3434
* @since 2.3.0
35-
* @deprecated since 3.5.0 for removal in 3.7.0 in favor of
35+
* @deprecated since 3.5.0 for removal in 4.0.0 in favor of
3636
* {@link ClientHttpConnectorBuilderCustomizer} or declaring a pre-configured
3737
* {@link ClientHttpConnectorBuilder} bean
3838
*/

spring-boot-project/spring-boot-devtools/src/main/java/org/springframework/boot/devtools/autoconfigure/OnEnabledDevToolsCondition.java

+1-1
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@
2828
*
2929
* @author Madhura Bhave
3030
* @since 2.2.0
31-
* @deprecated since 3.5.0 for removal in 3.7.0 in favor of
31+
* @deprecated since 3.5.0 for removal in 4.0.0 in favor of
3232
* {@link ConditionalOnEnabledDevTools @ConditionalOnEnabledDevTools}
3333
*/
3434
@Deprecated(since = "3.5.0", forRemoval = true)

spring-boot-project/spring-boot-test-autoconfigure/src/main/java/org/springframework/boot/test/autoconfigure/ConditionReportApplicationContextFailureProcessor.java

+1-1
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@
2929
* @author Phillip Webb
3030
* @author Scott Frederick
3131
* @since 3.0.0
32-
* @deprecated in 3.2.11 for removal in 3.6.0
32+
* @deprecated in 3.2.11 for removal in 4.0.0
3333
*/
3434
@Deprecated(since = "3.2.11", forRemoval = true)
3535
public class ConditionReportApplicationContextFailureProcessor implements ApplicationContextFailureProcessor {

spring-boot-project/spring-boot-test-autoconfigure/src/test/java/org/springframework/boot/test/autoconfigure/ConditionReportApplicationContextFailureProcessorTests.java

+1-1
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@
3535
*
3636
* @author Phillip Webb
3737
* @author Scott Frederick
38-
* @deprecated since 3.2.11 for removal in 3.6.0
38+
* @deprecated since 3.2.11 for removal in 4.0.0
3939
*/
4040
@ExtendWith(OutputCaptureExtension.class)
4141
@Deprecated(since = "3.2.11", forRemoval = true)

spring-boot-project/spring-boot-test/src/main/java/org/springframework/boot/test/context/runner/AbstractApplicationContextRunner.java

+1-1
Original file line numberDiff line numberDiff line change
@@ -121,7 +121,7 @@ public abstract class AbstractApplicationContextRunner<SELF extends AbstractAppl
121121
* @param contextFactory the factory used to create the actual context
122122
* @param instanceFactory the factory used to create new instance of the runner
123123
* @since 2.6.0
124-
* @deprecated since 3.4.0 for removal in 3.6.0 in favor of
124+
* @deprecated since 3.4.0 for removal in 4.0.0 in favor of
125125
* {@link #AbstractApplicationContextRunner(Function, Supplier, Class...)}
126126
*/
127127
@Deprecated(since = "3.4.0", forRemoval = true)

spring-boot-project/spring-boot-test/src/main/java/org/springframework/boot/test/mock/mockito/Definition.java

+1-1
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@
2323
*
2424
* @author Phillip Webb
2525
* @see DefinitionsParser
26-
* @deprecated since 3.4.0 for removal in 3.6.0
26+
* @deprecated since 3.4.0 for removal in 4.0.0
2727
*/
2828
@SuppressWarnings("removal")
2929
@Deprecated(since = "3.4.0", forRemoval = true)

spring-boot-project/spring-boot-test/src/main/java/org/springframework/boot/test/mock/mockito/DefinitionsParser.java

+1-1
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,7 @@
4141
*
4242
* @author Phillip Webb
4343
* @author Stephane Nicoll
44-
* @deprecated since 3.4.0 for removal in 3.6.0
44+
* @deprecated since 3.4.0 for removal in 4.0.0
4545
*/
4646
@SuppressWarnings("removal")
4747
@Deprecated(since = "3.4.0", forRemoval = true)

spring-boot-project/spring-boot-test/src/main/java/org/springframework/boot/test/mock/mockito/MockBean.java

+1-1
Original file line numberDiff line numberDiff line change
@@ -91,7 +91,7 @@
9191
* @author Phillip Webb
9292
* @since 1.4.0
9393
* @see MockitoPostProcessor
94-
* @deprecated since 3.4.0 for removal in 3.6.0 in favor of
94+
* @deprecated since 3.4.0 for removal in 4.0.0 in favor of
9595
* {@link org.springframework.test.context.bean.override.mockito.MockitoBean}
9696
*/
9797
@SuppressWarnings("removal")

spring-boot-project/spring-boot-test/src/main/java/org/springframework/boot/test/mock/mockito/MockBeans.java

+1-1
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@
3333
*
3434
* @author Phillip Webb
3535
* @since 1.4.0
36-
* @deprecated since 3.4.0 for removal in 3.6.0 in favor of
36+
* @deprecated since 3.4.0 for removal in 4.0.0 in favor of
3737
* {@link org.springframework.test.context.bean.override.mockito.MockitoBean}
3838
*/
3939
@SuppressWarnings("removal")

spring-boot-project/spring-boot-test/src/main/java/org/springframework/boot/test/mock/mockito/MockDefinition.java

+1-1
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@
3737
* A complete definition that can be used to create a Mockito mock.
3838
*
3939
* @author Phillip Webb
40-
* @deprecated since 3.4.0 for removal in 3.6.0
40+
* @deprecated since 3.4.0 for removal in 4.0.0
4141
*/
4242
@SuppressWarnings("removal")
4343
@Deprecated(since = "3.4.0", forRemoval = true)

0 commit comments

Comments
 (0)