Keycloak
22 строки · 1.1 Кб
1= Highlights
2
3== PromiseType removed from JavaScript adapter
4
5The promiseType init option has been removed from the JavaScript adapter. Instead a promise that supports
6both native promise API and legacy Keycloak promise API is returned. This allows gradually migration of
7applications from the legacy/deprecated API to the native promise API.
8
9= Other improvements
10
11== Reverted breaking API changes to LocaleSelectorSPI
12
13In 9.0.0 a breaking API change was introduced to LocaleSelectorSPI. With 9.0.1 the changes to
14this API is now reverted, and a new LocaleUpdaterSPI has been introduced.
15
16== Fixed the automatic resolution of `KeycloakConfigResolver` instances for Spring Boot Applications
17
18In previous releases, Spring Boot applications had to manually implement the `KeycloakConfigResolver` interface or extend the
19built-in `org.keycloak.adapters.springboot.KeycloakSpringBootConfigResolver`.
20
21This release fixes the backward compatibility issue by resolving instances automatically in case none is provided. As well as still
22allowing applications to provide their own configuration resolver implementations.
23