Skip to content

Commit ae606d5

Browse files
committed
Add Passkeys to What's New
1 parent b0e8730 commit ae606d5

File tree

1 file changed

+8
-4
lines changed

1 file changed

+8
-4
lines changed

docs/modules/ROOT/pages/whats-new.adoc

Lines changed: 8 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -213,7 +213,7 @@ Java::
213213
+
214214
[source,java,role="primary"]
215215
----
216-
@Bean
216+
@Bean
217217
@Order(0)
218218
SecurityFilterChain api(HttpSecurity http) throws Exception {
219219
http
@@ -223,7 +223,7 @@ SecurityFilterChain api(HttpSecurity http) throws Exception {
223223
return http.build();
224224
}
225225
226-
@Bean
226+
@Bean
227227
@Order(1)
228228
SecurityFilterChain app(HttpSecurity http) throws Exception {
229229
http
@@ -239,7 +239,7 @@ Kotlin::
239239
+
240240
[source,kotlin,role="secondary"]
241241
----
242-
@Bean
242+
@Bean
243243
@Order(0)
244244
fun api(val http: HttpSecurity): SecurityFilterChain {
245245
http {
@@ -250,7 +250,7 @@ fun api(val http: HttpSecurity): SecurityFilterChain {
250250
return http.build()
251251
}
252252
253-
@Bean
253+
@Bean
254254
@Order(1)
255255
fun app(val http: HttpSecurity): SecurityFilterChain {
256256
http {
@@ -269,6 +269,10 @@ You can read more https://github.com/spring-projects/spring-security/issues/1522
269269

270270
Spring Security now xref:servlet/authentication/onetimetoken.adoc[supports One-Time Token Login] via the `oneTimeTokenLogin()` DSL.
271271

272+
== Passkeys
273+
274+
Spring Security now has xref:servlet/authentication/passkeys.adoc[Passkeys] support.
275+
272276
== Kotlin
273277

274278
* 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

0 commit comments

Comments
 (0)