1
0
mirror of synced 2026-05-22 21:33:16 +00:00

Add Passkeys to What's New

This commit is contained in:
Rob Winch
2024-10-20 23:01:13 -05:00
parent b0e8730d70
commit ae606d51f4
+8 -4
View File
@@ -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