From cb84efd06d4fd373f46e8a660fdf1fa709b68ddc Mon Sep 17 00:00:00 2001 From: y-tomida Date: Wed, 24 Jan 2024 15:42:49 +0900 Subject: [PATCH 1/3] Fix command in CONTRIBUTING.adoc --- CONTRIBUTING.adoc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/CONTRIBUTING.adoc b/CONTRIBUTING.adoc index ad08a4116b..f9bc67c9ef 100644 --- a/CONTRIBUTING.adoc +++ b/CONTRIBUTING.adoc @@ -79,7 +79,7 @@ See https://github.com/spring-projects/spring-security/tree/main#building-from-s The wiki pages https://github.com/spring-projects/spring-framework/wiki/Code-Style[Code Style] and https://github.com/spring-projects/spring-framework/wiki/IntelliJ-IDEA-Editor-Settings[IntelliJ IDEA Editor Settings] define the source file coding standards we use along with some IDEA editor settings we customize. -To format the code as well as check the style, run `./gradle format check`. +To format the code as well as check the style, run `./gradlew format check`. [[submit-a-pull-request]] === Submit a Pull Request From fbb35a1e3d3f1afb6091eabfbcffd5d87bb1e4b2 Mon Sep 17 00:00:00 2001 From: Habin Song <83588265+boulce@users.noreply.github.com> Date: Tue, 30 Jan 2024 22:52:03 +0900 Subject: [PATCH 2/3] Typo: Update ldap.adoc there is no word like 'byusing'. I fixed 'byusing' to 'by using'. --- .../ROOT/pages/servlet/authentication/passwords/ldap.adoc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/modules/ROOT/pages/servlet/authentication/passwords/ldap.adoc b/docs/modules/ROOT/pages/servlet/authentication/passwords/ldap.adoc index fed7b325b6..33661f72d6 100644 --- a/docs/modules/ROOT/pages/servlet/authentication/passwords/ldap.adoc +++ b/docs/modules/ROOT/pages/servlet/authentication/passwords/ldap.adoc @@ -614,7 +614,7 @@ You need only supply the domain name and an LDAP URL that supplies the address o [NOTE] ==== -It is also possible to obtain the server's IP address byusing a DNS lookup. +It is also possible to obtain the server's IP address by using a DNS lookup. This is not currently supported, but hopefully will be in a future version. ==== From 49f447f3d0ddb2750aa0609bed1924ed294ff610 Mon Sep 17 00:00:00 2001 From: Habin Song <83588265+boulce@users.noreply.github.com> Date: Wed, 31 Jan 2024 18:09:40 +0900 Subject: [PATCH 3/3] Update session-management.adoc lambda expression typo. I changed '(session) - session' to '(session) -> session' --- .../ROOT/pages/servlet/authentication/session-management.adoc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/modules/ROOT/pages/servlet/authentication/session-management.adoc b/docs/modules/ROOT/pages/servlet/authentication/session-management.adoc index d46b9ffeb9..8d670a885f 100644 --- a/docs/modules/ROOT/pages/servlet/authentication/session-management.adoc +++ b/docs/modules/ROOT/pages/servlet/authentication/session-management.adoc @@ -788,7 +788,7 @@ Java:: @Bean public SecurityFilterChain filterChain(HttpSecurity http) { http - .sessionManagement((session) - session + .sessionManagement((session) -> session .sessionFixation((sessionFixation) -> sessionFixation .newSession() )