Skip to content

Commit c96835b

Browse files
committed
Merge branch '3.3.x' into 3.4.x
Closes gh-44992
2 parents d0612f5 + f2d367a commit c96835b

File tree

130 files changed

+137
-137
lines changed

Some content is hidden

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

130 files changed

+137
-137
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/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/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/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/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-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)

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

+1-1
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@
3535
* @author Phillip Webb
3636
* @since 1.4.0
3737
* @see ResetMocksTestExecutionListener
38-
* @deprecated since 3.4.0 for removal in 3.6.0 in favor of
38+
* @deprecated since 3.4.0 for removal in 4.0.0 in favor of
3939
* {@link org.springframework.test.context.bean.override.mockito.MockReset}
4040
*/
4141

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

+1-1
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@
2828
* A {@link ContextCustomizer} to add Mockito support.
2929
*
3030
* @author Phillip Webb
31-
* @deprecated since 3.4.0 for removal in 3.6.0
31+
* @deprecated since 3.4.0 for removal in 4.0.0
3232
*/
3333
@SuppressWarnings("removal")
3434
@Deprecated(since = "3.4.0", forRemoval = true)

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

+1-1
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@
2727
* A {@link ContextCustomizerFactory} to add Mockito support.
2828
*
2929
* @author Phillip Webb
30-
* @deprecated since 3.4.0 for removal in 3.6.0
30+
* @deprecated since 3.4.0 for removal in 4.0.0
3131
*/
3232
@SuppressWarnings("removal")
3333
@Deprecated(since = "3.4.0", forRemoval = true)

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

+1-1
Original file line numberDiff line numberDiff line change
@@ -78,7 +78,7 @@
7878
* @author Stephane Nicoll
7979
* @author Andreas Neiser
8080
* @since 1.4.0
81-
* @deprecated since 3.4.0 for removal in 3.6.0 in favor of Spring Framework's
81+
* @deprecated since 3.4.0 for removal in 4.0.0 in favor of Spring Framework's
8282
* {@link MockitoBean} and {@link MockitoSpyBean} support
8383
*/
8484
@SuppressWarnings("removal")

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

+1-1
Original file line numberDiff line numberDiff line change
@@ -48,7 +48,7 @@
4848
* @author Moritz Halbritter
4949
* @since 1.4.2
5050
* @see ResetMocksTestExecutionListener
51-
* @deprecated since 3.4.0 for removal in 3.6.0 in favor of Spring Framework's support for
51+
* @deprecated since 3.4.0 for removal in 4.0.0 in favor of Spring Framework's support for
5252
* {@link MockitoBean} and {@link MockitoSpyBean}.
5353
*/
5454
@SuppressWarnings("removal")

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

+1-1
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@
3434
* @author Phillip Webb
3535
* @author Stephane Nicoll
3636
* @see Definition
37-
* @deprecated since 3.4.0 for removal in 3.6.0
37+
* @deprecated since 3.4.0 for removal in 4.0.0
3838
*/
3939
@SuppressWarnings("removal")
4040
@Deprecated(since = "3.4.0", forRemoval = true)

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

+1-1
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,7 @@
4343
* @author Phillip Webb
4444
* @since 1.4.0
4545
* @see MockitoTestExecutionListener
46-
* @deprecated since 3.4.0 for removal in 3.6.0 in favor of
46+
* @deprecated since 3.4.0 for removal in 4.0.0 in favor of
4747
* {@link org.springframework.test.context.bean.override.mockito.MockitoResetTestExecutionListener}
4848
*/
4949
@SuppressWarnings("removal")

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

+1-1
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@
3131
*
3232
* @author Andy Wilkinson
3333
* @since 2.4.0
34-
* @deprecated since 3.4.0 for removal in 3.6.0 in favor of Spring Framework's
34+
* @deprecated since 3.4.0 for removal in 4.0.0 in favor of Spring Framework's
3535
* {@link MockitoBean} and {@link MockitoSpyBean}
3636
*/
3737
@Deprecated(since = "3.4.0", forRemoval = true)

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

+1-1
Original file line numberDiff line numberDiff line change
@@ -89,7 +89,7 @@
8989
* @author Phillip Webb
9090
* @since 1.4.0
9191
* @see MockitoPostProcessor
92-
* @deprecated since 3.4.0 for removal in 3.6.0 in favor of
92+
* @deprecated since 3.4.0 for removal in 4.0.0 in favor of
9393
* {@link org.springframework.test.context.bean.override.mockito.MockitoSpyBean}
9494
*/
9595
@SuppressWarnings("removal")

spring-boot-project/spring-boot-test/src/main/java/org/springframework/boot/test/mock/mockito/SpyBeans.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.MockitoSpyBean}
3838
*/
3939
@SuppressWarnings("removal")

spring-boot-project/spring-boot-test/src/main/java/org/springframework/boot/test/mock/mockito/SpyDefinition.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 spy.
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)

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

+1-1
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@
1717
/**
1818
* Mockito integration for Spring Boot tests.
1919
* <p>
20-
* Deprecated since 3.4.0 for removal in 3.6.0 in favor of Spring Framework's
20+
* Deprecated since 3.4.0 for removal in 4.0.0 in favor of Spring Framework's
2121
* {@link org.springframework.test.context.bean.override.mockito.MockitoBean} and
2222
* {@link org.springframework.test.context.bean.override.mockito.MockitoSpyBean}
2323
*/

spring-boot-project/spring-boot-test/src/main/java/org/springframework/boot/test/web/client/TestRestTemplate.java

+1-1
Original file line numberDiff line numberDiff line change
@@ -1060,7 +1060,7 @@ protected static class CustomHttpComponentsClientHttpRequestFactory extends Http
10601060
* Create a new {@link CustomHttpComponentsClientHttpRequestFactory} instance.
10611061
* @param httpClientOptions the {@link HttpClient} options
10621062
* @param settings the settings to apply
1063-
* @deprecated since 3.4.0 for removal in 3.6.0 in favor of
1063+
* @deprecated since 3.4.0 for removal in 4.0.0 in favor of
10641064
* {@link #CustomHttpComponentsClientHttpRequestFactory(HttpClientOption[], ClientHttpRequestFactorySettings)}
10651065
*/
10661066
@Deprecated(since = "3.4.0", forRemoval = true)

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

+1-1
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@
2020
* Concrete implementation of {@link AbstractMockBeanOnGenericTests}.
2121
*
2222
* @author Madhura Bhave
23-
* @deprecated since 3.4.0 for removal in 3.6.0
23+
* @deprecated since 3.4.0 for removal in 4.0.0
2424
*/
2525
@SuppressWarnings("removal")
2626
@Deprecated(since = "3.4.0", forRemoval = true)

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

+1-1
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@
3131
* @param <T> type of thing
3232
* @param <U> type of something
3333
* @author Madhura Bhave
34-
* @deprecated since 3.4.0 for removal in 3.6.0
34+
* @deprecated since 3.4.0 for removal in 4.0.0
3535
*/
3636
@SuppressWarnings("removal")
3737
@Deprecated(since = "3.4.0", forRemoval = true)

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

+1-1
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@
3636
* Tests for {@link DefinitionsParser}.
3737
*
3838
* @author Phillip Webb
39-
* @deprecated since 3.4.0 for removal in 3.6.0
39+
* @deprecated since 3.4.0 for removal in 4.0.0
4040
*/
4141
@SuppressWarnings("removal")
4242
@Deprecated(since = "3.4.0", forRemoval = true)

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

+1-1
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,7 @@
4242
* Tests for application context caching when using {@link MockBean @MockBean}.
4343
*
4444
* @author Andy Wilkinson
45-
* @deprecated since 3.4.0 for removal in 3.6.0
45+
* @deprecated since 3.4.0 for removal in 4.0.0
4646
*/
4747
@SuppressWarnings("removal")
4848
@Deprecated(since = "3.4.0", forRemoval = true)

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

+1-1
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@
3434
* Test {@link MockBean @MockBean} for a factory bean.
3535
*
3636
* @author Phillip Webb
37-
* @deprecated since 3.4.0 for removal in 3.6.0
37+
* @deprecated since 3.4.0 for removal in 4.0.0
3838
*/
3939
@SuppressWarnings("removal")
4040
@Deprecated(since = "3.4.0", forRemoval = true)

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

+1-1
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@
3535
* existing beans.
3636
*
3737
* @author Phillip Webb
38-
* @deprecated since 3.4.0 for removal in 3.6.0
38+
* @deprecated since 3.4.0 for removal in 4.0.0
3939
*/
4040
@SuppressWarnings("removal")
4141
@Deprecated(since = "3.4.0", forRemoval = true)

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

+1-1
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@
3434
* instances.
3535
*
3636
* @author Phillip Webb
37-
* @deprecated since 3.4.0 for removal in 3.6.0
37+
* @deprecated since 3.4.0 for removal in 4.0.0
3838
*/
3939
@SuppressWarnings("removal")
4040
@ExtendWith(SpringExtension.class)

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

+1-1
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@
3535
* used to replace existing beans.
3636
*
3737
* @author Phillip Webb
38-
* @deprecated since 3.4.0 for removal in 3.6.0
38+
* @deprecated since 3.4.0 for removal in 4.0.0
3939
*/
4040
@SuppressWarnings("removal")
4141
@ExtendWith(SpringExtension.class)

0 commit comments

Comments
 (0)