Преглед на файлове

Add Passkeys to What's New

Rob Winch преди 10 месеца
родител
ревизия
ae606d51f4
променени са 1 файла, в които са добавени 8 реда и са изтрити 4 реда
  1. 8 4
      docs/modules/ROOT/pages/whats-new.adoc

+ 8 - 4
docs/modules/ROOT/pages/whats-new.adoc

@@ -213,7 +213,7 @@ Java::
 +
 [source,java,role="primary"]
 ----
-@Bean 
+@Bean
 @Order(0)
 SecurityFilterChain api(HttpSecurity http) throws Exception {
     http
@@ -223,7 +223,7 @@ SecurityFilterChain api(HttpSecurity http) throws Exception {
     return http.build();
 }
 
-@Bean 
+@Bean
 @Order(1)
 SecurityFilterChain app(HttpSecurity http) throws Exception {
     http
@@ -239,7 +239,7 @@ Kotlin::
 +
 [source,kotlin,role="secondary"]
 ----
-@Bean 
+@Bean
 @Order(0)
 fun api(val http: HttpSecurity): SecurityFilterChain {
     http {
@@ -250,7 +250,7 @@ fun api(val http: HttpSecurity): SecurityFilterChain {
     return http.build()
 }
 
-@Bean 
+@Bean
 @Order(1)
 fun app(val http: HttpSecurity): SecurityFilterChain {
     http {
@@ -269,6 +269,10 @@ You can read more https://github.com/spring-projects/spring-security/issues/1522
 
 Spring Security now xref:servlet/authentication/onetimetoken.adoc[supports One-Time Token Login] via the `oneTimeTokenLogin()` DSL.
 
+== Passkeys
+
+Spring Security now has xref:servlet/authentication/passkeys.adoc[Passkeys] support.
+
 == Kotlin
 
 * The Kotlin DSL now supports https://github.com/spring-projects/spring-security/issues/14935[SAML 2.0] and https://github.com/spring-projects/spring-security/issues/15171[`GrantedAuthorityDefaults`] and https://github.com/spring-projects/spring-security/issues/15136[`RoleHierarchy`] ``@Bean``s