Skip to content

Commit 8bab9bc

Browse files
committed
Polish whats-new.adoc
1 parent c8cea3f commit 8bab9bc

File tree

3 files changed

+5
-5
lines changed

3 files changed

+5
-5
lines changed

docs/modules/ROOT/pages/servlet/saml2/login/authentication-requests.adoc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ For example, if you were deployed to `https://rp.example.com` and you gave your
1212

1313
and the result would be a redirect that included a `SAMLRequest` parameter containing the signed, deflated, and encoded `<saml2:AuthnRequest>`.
1414

15-
[configuring-authentication-request-uri]
15+
[[configuring-authentication-request-uri]]
1616
== Configuring the `<saml2:AuthnRequest>` Endpoint
1717

1818
To configure the endpoint differently from the default, you can set the value in `saml2Login`:

docs/modules/ROOT/pages/servlet/saml2/metadata.adoc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ val openSamlEntityDescriptor: EntityDescriptor = details.getEntityDescriptor()
3232
----
3333
======
3434

35-
[using-assertingpartymetadatarepository]
35+
[[using-assertingpartymetadatarepository]]
3636
=== Using `AssertingPartyMetadataRepository`
3737

3838
You can also be more targeted than `RelyingPartyRegistrations` by using `AssertingPartyMetadataRepository`, an interface that allows for only retrieving the asserting party metadata.

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

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ Below are the highlights of the release, or you can view https://github.com/spri
66

77
== Method Security
88

9-
* All xref:servlet/authorization/method-security.adoc#using_metannotation-method-interceptors[method security annotations] now support {spring-framework-api-url}org/springframework/core/annotation/AliasFor.html[Framework's `@AliasFor`]
9+
* All xref:servlet/authorization/method-security.adoc#meta-annotations[method security annotations] now support {spring-framework-api-url}org/springframework/core/annotation/AliasFor.html[Framework's `@AliasFor`]
1010
* `@AuthenticationPrincipal` and `@CurrentSecurityContext` now support xref:servlet/authorization/method-security.adoc#_templating_meta_annotation_expressions[annotation templates].
1111
+
1212
This means that you can now use Spring's meta-annotation support like so:
@@ -169,7 +169,7 @@ fun api(val http: HttpSecurity): SecurityFilterChain {
169169
// ...
170170
}
171171
}
172-
return http.build();
172+
return http.build()
173173
}
174174
175175
@Bean
@@ -181,7 +181,7 @@ fun app(val http: HttpSecurity): SecurityFilterChain {
181181
// ...
182182
}
183183
}
184-
return http.build();
184+
return http.build()
185185
}
186186
----
187187
======

0 commit comments

Comments
 (0)