From 074e38d565990d1d040795957e4e1d531e9ae345 Mon Sep 17 00:00:00 2001 From: Steve Riesenberg Date: Wed, 1 Dec 2021 10:50:42 -0600 Subject: [PATCH] Add missing since Issue gh-7765 --- .../security/config/web/server/ServerHttpSecurity.java | 1 + 1 file changed, 1 insertion(+) diff --git a/config/src/main/java/org/springframework/security/config/web/server/ServerHttpSecurity.java b/config/src/main/java/org/springframework/security/config/web/server/ServerHttpSecurity.java index a5f6cc3548..8e3d7861a1 100644 --- a/config/src/main/java/org/springframework/security/config/web/server/ServerHttpSecurity.java +++ b/config/src/main/java/org/springframework/security/config/web/server/ServerHttpSecurity.java @@ -1689,6 +1689,7 @@ public class ServerHttpSecurity { * @param ipAddress the address or range of addresses from which the request * must come. * @return the {@link AuthorizeExchangeSpec} to configure + * @since 5.7 */ public AuthorizeExchangeSpec hasIpAddress(String ipAddress) { return access(IpAddressReactiveAuthorizationManager.hasIpAddress(ipAddress));