Skip to content

Commit 2caf1fb

Browse files
Kehrlannmarcusdacoregio
authored andcommitted
Bump io-spring-javaformat from 0.0.42 to 0.0.43
Bumps `io-spring-javaformat` from 0.0.42 to 0.0.43. Updates `io.spring.javaformat:spring-javaformat-checkstyle` from 0.0.42 to 0.0.43 - [Release notes](https://github.com/spring-io/spring-javaformat/releases) - [Commits](spring-io/[email protected]) Updates `io.spring.javaformat:spring-javaformat-gradle-plugin` from 0.0.42 to 0.0.43 - [Release notes](https://github.com/spring-io/spring-javaformat/releases) - [Commits](spring-io/[email protected]) --- updated-dependencies: - dependency-name: io.spring.javaformat:spring-javaformat-checkstyle dependency-type: direct:production update-type: version-update:semver-patch - dependency-name: io.spring.javaformat:spring-javaformat-gradle-plugin dependency-type: direct:production update-type: version-update:semver-patch ... --- Manual updates: - Adhere to rule where `@Deprecated` annotations and `@deprecated` javadoc comments MUST be used together Signed-off-by: dependabot[bot] <[email protected]>
1 parent 7055bdf commit 2caf1fb

File tree

8 files changed

+10
-1
lines changed

8 files changed

+10
-1
lines changed

Diff for: config/src/main/java/org/springframework/security/config/annotation/web/configurers/saml2/Saml2LoginConfigurer.java

+1
Original file line numberDiff line numberDiff line change
@@ -217,6 +217,7 @@ public Saml2LoginConfigurer<B> authenticationRequestResolver(
217217
* @since 6.0
218218
* @deprecated Use {@link #authenticationRequestUriQuery} instead
219219
*/
220+
@Deprecated
220221
public Saml2LoginConfigurer<B> authenticationRequestUri(String authenticationRequestUri) {
221222
return authenticationRequestUriQuery(authenticationRequestUri);
222223
}

Diff for: core/src/main/java/org/springframework/security/access/method/MethodSecurityMetadataSource.java

+1
Original file line numberDiff line numberDiff line change
@@ -34,6 +34,7 @@
3434
* {@code <method-security>} and {@code <intercept-methods>} instead or use
3535
* annotation-based or {@link AuthorizationManager}-based authorization
3636
*/
37+
@Deprecated
3738
public interface MethodSecurityMetadataSource extends SecurityMetadataSource {
3839

3940
Collection<ConfigAttribute> getAttributes(Method method, Class<?> targetClass);

Diff for: core/src/main/java/org/springframework/security/access/prepost/PrePostInvocationAttributeFactory.java

+1
Original file line numberDiff line numberDiff line change
@@ -26,6 +26,7 @@
2626
* @see org.springframework.security.authorization.method.AuthorizationManagerAfterMethodInterceptor
2727
* @deprecated Use delegation with {@link AuthorizationManager}
2828
*/
29+
@Deprecated
2930
public interface PrePostInvocationAttributeFactory extends AopInfrastructureBean {
3031

3132
PreInvocationAttribute createPreInvocationAttribute(String preFilterAttribute, String filterObject,

Diff for: gradle/libs.versions.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
[versions]
22
com-squareup-okhttp3 = "3.14.9"
33
io-rsocket = "1.1.4"
4-
io-spring-javaformat = "0.0.42"
4+
io-spring-javaformat = "0.0.43"
55
io-spring-nohttp = "0.0.11"
66
jakarta-websocket = "2.2.0"
77
org-apache-directory-server = "1.5.5"

Diff for: ldap/src/main/java/org/springframework/security/ldap/LdapUtils.java

+1
Original file line numberDiff line numberDiff line change
@@ -101,6 +101,7 @@ public static String getRelativeName(String fullDn, Context baseCtx) throws Nami
101101
/**
102102
* Gets the full dn of a name by prepending the name of the context it is relative to.
103103
* If the name already contains the base name, it is returned unaltered.
104+
* @deprecated Use {@link #getFullDn(LdapName, Context)}
104105
*/
105106
@Deprecated
106107
public static DistinguishedName getFullDn(DistinguishedName dn, Context baseCtx) throws NamingException {

Diff for: ldap/src/main/java/org/springframework/security/ldap/userdetails/LdapUserDetailsManager.java

+1
Original file line numberDiff line numberDiff line change
@@ -287,6 +287,7 @@ public boolean userExists(String username) {
287287
* Creates a DN from a group name.
288288
* @param group the name of the group
289289
* @return the DN of the corresponding group, including the groupSearchBase
290+
* @deprecated
290291
*/
291292
@Deprecated
292293
protected DistinguishedName buildGroupDn(String group) {

Diff for: oauth2/oauth2-resource-server/src/test/java/org/springframework/security/oauth2/server/resource/authentication/JwtIssuerAuthenticationManagerResolverDeprecatedTests.java

+2
Original file line numberDiff line numberDiff line change
@@ -49,6 +49,8 @@
4949

5050
/**
5151
* Tests for {@link JwtIssuerAuthenticationManagerResolver}
52+
*
53+
* @deprecated Superseded by {@link JwtIssuerAuthenticationManagerResolverTests}
5254
*/
5355
@Deprecated
5456
public class JwtIssuerAuthenticationManagerResolverDeprecatedTests {

Diff for: oauth2/oauth2-resource-server/src/test/java/org/springframework/security/oauth2/server/resource/authentication/JwtIssuerReactiveAuthenticationManagerResolverDeprecatedTests.java

+2
Original file line numberDiff line numberDiff line change
@@ -52,6 +52,8 @@
5252

5353
/**
5454
* Tests for {@link JwtIssuerReactiveAuthenticationManagerResolver}
55+
*
56+
* @deprecated Superseded by {@link JwtIssuerReactiveAuthenticationManagerResolverTests}
5557
*/
5658
@Deprecated
5759
public class JwtIssuerReactiveAuthenticationManagerResolverDeprecatedTests {

0 commit comments

Comments
 (0)