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

Lines changed: 1 addition & 1 deletion
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

Lines changed: 1 addition & 1 deletion
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

Lines changed: 1 addition & 1 deletion
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

Lines changed: 1 addition & 1 deletion
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

Lines changed: 1 addition & 1 deletion
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

Lines changed: 1 addition & 1 deletion
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

Lines changed: 1 addition & 1 deletion
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

Lines changed: 2 additions & 2 deletions
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

Lines changed: 1 addition & 1 deletion
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

Lines changed: 1 addition & 1 deletion
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)

0 commit comments

Comments
 (0)