mirror of
https://github.com/spring-projects/spring-security.git
synced 2025-06-20 19:12:14 +00:00
Add Passkeys to What's New
This commit is contained in:
parent
b0e8730d70
commit
ae606d51f4
@ -213,7 +213,7 @@ Java::
|
|||||||
+
|
+
|
||||||
[source,java,role="primary"]
|
[source,java,role="primary"]
|
||||||
----
|
----
|
||||||
@Bean
|
@Bean
|
||||||
@Order(0)
|
@Order(0)
|
||||||
SecurityFilterChain api(HttpSecurity http) throws Exception {
|
SecurityFilterChain api(HttpSecurity http) throws Exception {
|
||||||
http
|
http
|
||||||
@ -223,7 +223,7 @@ SecurityFilterChain api(HttpSecurity http) throws Exception {
|
|||||||
return http.build();
|
return http.build();
|
||||||
}
|
}
|
||||||
|
|
||||||
@Bean
|
@Bean
|
||||||
@Order(1)
|
@Order(1)
|
||||||
SecurityFilterChain app(HttpSecurity http) throws Exception {
|
SecurityFilterChain app(HttpSecurity http) throws Exception {
|
||||||
http
|
http
|
||||||
@ -239,7 +239,7 @@ Kotlin::
|
|||||||
+
|
+
|
||||||
[source,kotlin,role="secondary"]
|
[source,kotlin,role="secondary"]
|
||||||
----
|
----
|
||||||
@Bean
|
@Bean
|
||||||
@Order(0)
|
@Order(0)
|
||||||
fun api(val http: HttpSecurity): SecurityFilterChain {
|
fun api(val http: HttpSecurity): SecurityFilterChain {
|
||||||
http {
|
http {
|
||||||
@ -250,7 +250,7 @@ fun api(val http: HttpSecurity): SecurityFilterChain {
|
|||||||
return http.build()
|
return http.build()
|
||||||
}
|
}
|
||||||
|
|
||||||
@Bean
|
@Bean
|
||||||
@Order(1)
|
@Order(1)
|
||||||
fun app(val http: HttpSecurity): SecurityFilterChain {
|
fun app(val http: HttpSecurity): SecurityFilterChain {
|
||||||
http {
|
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.
|
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
|
== 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
|
* 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
|
||||||
|
Loading…
x
Reference in New Issue
Block a user