Skip to content

Commit 29f3e64

Browse files
committed
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 6118ef6 commit 29f3e64

File tree

6 files changed

+9
-1
lines changed

6 files changed

+9
-1
lines changed

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

Lines changed: 1 addition & 0 deletions
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);

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

Lines changed: 1 addition & 0 deletions
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,

gradle/libs.versions.toml

Lines changed: 1 addition & 1 deletion
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.1.1"
77
org-apache-directory-server = "1.5.5"

ldap/src/main/java/org/springframework/security/ldap/userdetails/LdapUserDetailsManager.java

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -284,7 +284,9 @@ public boolean userExists(String username) {
284284
* Creates a DN from a group name.
285285
* @param group the name of the group
286286
* @return the DN of the corresponding group, including the groupSearchBase
287+
* @deprecated
287288
*/
289+
@Deprecated
288290
protected DistinguishedName buildGroupDn(String group) {
289291
DistinguishedName dn = new DistinguishedName(this.groupSearchBase);
290292
dn.add(this.groupRoleAttributeName, group.toLowerCase());

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

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

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

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