Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Migration guide for CAS support removal #12240

Merged
merged 1 commit into from Nov 18, 2022
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
1 change: 1 addition & 0 deletions docs/modules/ROOT/nav.adoc
Expand Up @@ -11,6 +11,7 @@
*** xref:migration/servlet/authorization.adoc[Authorization]
*** xref:migration/servlet/oauth2.adoc[OAuth]
*** xref:migration/servlet/saml2.adoc[SAML]
*** xref:migration/servlet/cas.adoc[CAS]
** xref:migration/reactive.adoc[Reactive Migrations]
* xref:getting-spring-security.adoc[Getting Spring Security]
* xref:features/index.adoc[Features]
Expand Down
10 changes: 10 additions & 0 deletions docs/modules/ROOT/pages/migration/servlet/cas.adoc
@@ -0,0 +1,10 @@
= CAS Migrations

The following steps relate to changes around CAS support.

== Remove CAS support

In Spring Security 6.0, the CAS support https://github.com/spring-projects/spring-security/issues/10441[has been removed], see the linked issue for more information.
There is no direct replacement for it, however, it is possible to https://apereo.github.io/cas/6.6.x/authentication/OAuth-Authentication.html[configure your CAS server to act as an OAuth 2.0 Authentication Provider] and use the xref::servlet/oauth2/index.adoc[OAuth 2.0 support in Spring Security].

The support might be re-added in future versions of Spring Security, subscribe to https://github.com/spring-projects/spring-security/issues/11674[this issue] to receive updates.