Rob Winch
85d7cc1335
Document requireProofKey
...
Issue gh-16386
11 months ago
Steve Riesenberg
ea5bc28773
Polish OAuth2 docs
1 year ago
Steve Riesenberg
8982851355
Document RestClient-based implementations
...
Closes gh-15938
1 year ago
Marcus Hert Da Coregio
08f11f06ab
Revert unnecessary commits from main
...
Issue gh-15016
2 years ago
Josh Cummings
4c44de7db2
Update What's New in 6.3
...
Closes gh-14918
2 years ago
Steve Riesenberg
313619fec3
Polish OAuth2 Client docs
...
Issue gh-14698
2 years ago
Steve Riesenberg
f3c745c65b
Add reference documentation for Token Exchange
...
Closes gh-14698
2 years ago
Rob Winch
39c43159f4
Convert to Asciidoctor Tabs
...
Closes gh-13403
3 years ago
moli
b6f3cb71e6
Add Missing AuthorizationRequestRepository in Snippet
...
Closes PR-13099
3 years ago
Joshua Sattler
040111ae9e
Remove Configuration meta-annotation from Enable* annotations
...
Before, Spring Security's @Enable* annotations were meta-annotated with @Configuration .
While convenient, this is not consistent with the rest of the Spring projects and most notably
Spring Framework's @Enable annotations. Additionally, the introduction of support for
@Configuration(proxyBeanMethods=false) in Spring Framework provides a compelling reason to
remove @Configuration meta-annotation from Spring Security's @Enable annotations and allow
users to opt into their preferred configuration mode.
Closes gh-6613
Signed-off-by: Joshua Sattler <joshua.sattler@mailbox.org>
3 years ago
Joe Grandja
54b033078b
Allow configuring PKCE for confidential clients
...
Closes gh-6548
4 years ago
Joe Grandja
a2ffc88294
Allow configuring PKCE for confidential clients
...
Closes gh-6548
4 years ago
Eleftheria Stein
4142f06259
Replace WebSecurityConfigurerAdapter with SecurityFilterChain in docs
...
Closes gh-10003
4 years ago
Eleftheria Stein
4492e5b667
Replace WebSecurityConfigurerAdapter with SecurityFilterChain in docs
...
Closes gh-10003
4 years ago
Joe Grandja
525f40490c
Allow Jwt assertion to be resolved
...
Closes gh-9812
4 years ago
Joe Grandja
214cfe807e
Allow Jwt assertion to be resolved
...
Closes gh-9812
4 years ago
Josh Cummings
b60020a40c
Use authorizeHttpRequests in Docs
...
Issue gh-8900
4 years ago
Josh Cummings
812d6f7b18
Use authorizeHttpRequests in Docs
...
Issue gh-8900
4 years ago
Josh Cummings
82696918ae
Separate OAuth 2.0 Client Servlet Docs
...
Issue gh-10367
4 years ago
Steve Riesenberg
e350c8a852
Document parameters converter in oauth2 client servlet docs
...
Closes gh-10467
4 years ago
Steve Riesenberg
efa2fab061
Document authentication helper method in WebClient integration
...
Closes gh-10120
4 years ago
Josh Cummings
76ebbb84f7
Separate Namespace Servlet Docs
...
Issue gh-10367
4 years ago
Josh Cummings
8c508d6afa
Separate OAuth 2.0 Client Servlet Docs
...
Issue gh-10367
4 years ago
Steve Riesenberg
b27c7e17f4
Document parameters converter in oauth2 client servlet docs
...
Closes gh-10467
4 years ago
Steve Riesenberg
49f3c0ce53
Document authentication helper method in WebClient integration
...
Closes gh-10120
4 years ago
Josh Cummings
869e379099
Separate Namespace Servlet Docs
...
Issue gh-10367
4 years ago
Rob Winch
e681e44268
overview/ -> ../
4 years ago
Rob Winch
1f90df6a14
mkdir -p build/ids
...
find -name "*.adoc" | xargs -I{file} awk -v file={file} '/\[\[/ { gsub("\[|\]", ""); id=$0; gsub("./docs/modules/ROOT/pages/", "", file); gsub("\[|\]", ""); id=$0;getline;text=$0; sub("^=+ ","", text); print file > "build/ids/"id".id"; print text > "build/ids/"id".text" }' {file}
find docs/modules -name "*.adoc"|while read adoc_file_to_replace; do
echo "Replacing $adoc_file_to_replace"
for id_file in build/ids/*.id; do
id=$(basename $id_file | sed 's/\.id$//')
xref_page=$(cat $id_file)
if [[ "$adoc_file_to_replace" -ef "./docs/modules/ROOT/pages/$xref_page" ]]
then
echo " - Skipping same page refid $id "
else
sed -i -E "s%<<$id(|,([^,>]+))>>%xref:${xref_page}#${id}[\2]%g" $adoc_file_to_replace
fi
done
done
4 years ago
Rob Winch
c3dfb1711d
Remove includes
4 years ago
Rob Winch
f01a13aa52
Antora
...
mkdir -p docs/modules/ROOT/
mkdir -p docs/modules/ROOT/pages/
git checkout antora-2.x docs/antora.yml
git checkout antora-2.x docs/modules/ROOT/nav.adoc
mv docs/manual/src/docs/asciidoc/images docs/modules/ROOT/
mv docs/manual/src/docs/asciidoc/_includes/* docs/modules/ROOT/pages/
cp ~/code/rwinch/spring-reference/*antora* ~/code/spring-projects/spring-security/
mv docs/modules/ROOT/pages/about docs/modules/ROOT/pages/overview
4 years ago
Steve Riesenberg
bfe94f9a80
Update deprecated usage in reference docs
...
Closes gh-10063
4 years ago
Jay Bryant
7171521b47
Further changes based on feedback
...
Mostly restoring the formatting of admonitions.
5 years ago
Jay Bryant
9219cbf9d1
Editing pass
...
I went through everything to get it to fit with Spring's docuemntation standard.
Lots of small changes for punctuation, grammar, usage, voice, and so on.
Also added some links, mostly to the API Javadoc.
5 years ago
Eleftheria Stein
30a203ed7a
Add Kotlin samples for Jwt Client Authentication
...
Issue gh-9578
5 years ago
Joe Grandja
e51ca79954
Document Jwt Client Authentication support
...
Closes gh-9578
5 years ago
Joe Grandja
f874a12ddb
Document jwt-bearer authorization grant
...
Closes gh-9580
5 years ago
Joe Grandja
58e3235093
Deprecate ClientAuthenticationMethod BASIC and POST
...
Closes gh-9220
5 years ago
Eleftheria Stein
69e0552c30
Add servlet OAuth2 client Kotlin samples
...
Issue gh-8172
5 years ago
Joe Grandja
0ed919f072
Deprecate ClientRegistration.redirectUriTemplate
...
Closes gh-8906
5 years ago
Joe Grandja
c1abc9b134
Polish gh-8501
6 years ago
Joe Grandja
2dd40c7de5
Document OAuth2Authorization success and failure handlers
...
Fixes gh-8073
6 years ago
Joe Grandja
d1dbd92903
Document OAuth2Authorization success and failure handlers
...
Fixes gh-8073
6 years ago
Joe Grandja
5bff741c31
Document AuthorizedClientServiceOAuth2AuthorizedClientManager
...
Fixes gh-8152
6 years ago
Joe Grandja
512ad9e7e4
Document AuthorizedClientServiceOAuth2AuthorizedClientManager
...
Fixes gh-8152
6 years ago
Joe Grandja
200829fa7a
Document AuthorizedClientServiceOAuth2AuthorizedClientManager
...
Fixes gh-8152
6 years ago
Joe Grandja
60838b0739
Document OAuth2AuthorizationRequest customization improvements
...
Fixes gh-8071
6 years ago
Joe Grandja
4da7235d9b
Document OAuth2AuthorizationRequest customization improvements
...
Fixes gh-8071
6 years ago
Joe Grandja
6a324c2363
Document OAuth 2.0 Client XML Support
...
Fixes gh-8074
6 years ago
Joe Grandja
e00a030621
Document OAuth 2.0 Client XML Support
...
Fixes gh-8074
6 years ago
Joe Grandja
b42f0f50ab
Document JdbcOAuth2AuthorizedClientService
...
Fixes gh-8061
6 years ago