[KEYCLOAK-11282] - Release notes fixes to Spring Boot

This commit is contained in:
Pedro Igor 2020-03-16 16:45:13 -03:00 committed by Stian Thorgersen
parent c1a7c5a1d0
commit c201f92046

View file

@ -11,4 +11,12 @@ applications from the legacy/deprecated API to the native promise API.
== Reverted breaking API changes to LocaleSelectorSPI
In 9.0.0 a breaking API change was introduced to LocaleSelectorSPI. With 9.0.1 the changes to
this API is now reverted, and a new LocaleUpdatorSPI has been introduced.
this API is now reverted, and a new LocaleUpdatorSPI has been introduced.
== Fixed the automatic resolution of `KeycloakConfigResolver` instances for Spring Boot Applications
In previous releases, Spring Boot applications had to manually implement the `KeycloakConfigResolver` interface or extend the
built-in `org.keycloak.adapters.springboot.KeycloakSpringBootConfigResolver`.
This release fixes the backward compatibility issue by resolving instances automatically in case none is provided. As well as still
allowing applications to provide their own configuration resolver implementations.