49 lines
2.3 KiB
Text
49 lines
2.3 KiB
Text
= Monorepo
|
|
|
|
In the past Keycloak was maintained across multiple GitHub repositories:
|
|
|
|
* https://github.com/keycloak/keycloak-documentation[Documentation repository]
|
|
* https://github.com/keycloak/keycloak-ui[UI repository]
|
|
* https://github.com/keycloak/keycloak-nodejs-admin-client[Node.js admin client repository]
|
|
|
|
Having multiple repositories introduced a lot of complexity and toil. For example frequently multiple pull requests had to be sent
|
|
to different repositories for a single change.
|
|
|
|
To simplify things we have now migrated everything into the https://github.com/keycloak/keycloak[main repository].
|
|
|
|
= FIPS 140-2 support
|
|
|
|
FIPS 140-2 support in Keycloak, which was preview in the previous release, is now promoted to be officially supported.
|
|
|
|
= Experimental Account Console version 3
|
|
|
|
The Account Console version 3 is now available as an experimental feature in Keycloak. This version supports custom fields created with the 'User Profile' feature. If you are looking to try it out and provide us with some early feedback you can enable it as follows:
|
|
|
|
```
|
|
bin/kc.sh start-dev --features=account3
|
|
```
|
|
= Changes to Keycloak Authorization Services support in Keycloak Java-based Adapters
|
|
|
|
As part of the removal of the https://www.keycloak.org/2023/03/adapter-deprecation-update[deprecated] adapters, the Keycloak Policy Enforcer was extracted from the adapters code base
|
|
into a separate dependency:
|
|
|
|
[source,xml]
|
|
----
|
|
<dependency>
|
|
<groupId>org.keycloak</groupId>
|
|
<artifactId>keycloak-policy-enforcer</artifactId>
|
|
<version>21.1.0</version>
|
|
</dependency>
|
|
----
|
|
|
|
By providing this dependency, we expect making it possible to integrate the policy enforcer with the Java stack of your preference.
|
|
|
|
It also provides built-in support for enabling the policy enforcer to Jakarta applications protected with https://docs.wildfly.org/26/Admin_Guide.html#Elytron_OIDC_Client[Wildfly Elytron].
|
|
|
|
For now, this dependency is not yet GA as we are still working on the quickstarts and documentation.
|
|
|
|
This work should not impact existing applications using the deprecated adapters.
|
|
= Javascript engine available by default
|
|
|
|
In the previous version, when Keycloak was used on Java 17 with Javascript providers it was needed to add the Nashorn
|
|
javascript engine to the distribution. This is no longer needed as Nashorn javascript engine is available in Keycloak server by default.
|