Release Notes / Version 11.2301
Table Of Contents
With the update to Spring Boot 2.7 and Spring Security 5.8, the
org.springframework.security.config.annotation.web.configuration.WebSecurityConfigurerAdapter
is now deprecated. Hence, the
com.coremedia.springframework.component.security.EditingRestSecurityAutoConfiguration
has been migrated regarding to the Spring Boot 2.7 migration documentation. The migrated configuration now:
is a standard auto-configuration class that doesn't extend the
WebSecurityConfigurerAdapter
anymore.creates the
AuthenticationManager
bean.creates the
SecurityFilterChain
bean.
For further information see the provided migration guidelines:
(CMS-22460)