We provide a nightly release of Keycloak that serves of a preview of what is coming in the next release. The aim is to get early feedback from the community on new features, on bug fixes, or other enhancements. We also encourage extension developers to continuously test their extensions with the nightly release.
The nightly release is built every night from main branches, and will overwrite the previous nightly release.
Keycloak | ZIP TAR.GZ |
Container image | quay.io/keycloak/keycloak:nightly |
Operator | quay.io/keycloak/keycloak-operator:nightly |
Guides |
Documentation |
JavaDoc |
For extension development and client adapters all Maven artifacts are included in the nightly release. Use the
version 999.0.0-SNAPSHOT
to the nightly release artifacts.
You also need to enable Sonatype Snapshots repository by adding the following to the pom.xml
file:
<repositories> <repository> <id>sonatype-snapshots</id> <name>Sonatype Snapshots</name> <url>https://s01.oss.sonatype.org/content/repositories/snapshots/</url> <snapshots> <enabled>true</enabled> <updatePolicy>daily</updatePolicy> </snapshots> </repository> </repositories>