Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

1093 added support for KC26.1.0 #1094

Open
wants to merge 2 commits into
base: main
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 7 additions & 0 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -64,6 +64,7 @@ jobs:
strategy:
matrix:
keycloak-version:
- '26.1.0'
- '26.0.8'
- '25.0.6'
- '24.0.5'
Expand All @@ -89,6 +90,11 @@ jobs:
terraform_wrapper: false
terraform_version: 1.9.8

- name: Setup Gradle
uses: gradle/actions/setup-gradle@v3
- name: Build user-federation-example with Gradle
run: make user-federation-example

- name: Start Keycloak Container
run: |
docker run -d --name keycloak \
Expand All @@ -99,6 +105,7 @@ jobs:
-e KEYCLOAK_ADMIN_PASSWORD=password \
-e KC_FEATURES=preview \
-v $PWD/provider/misc:/opt/keycloak/misc:z \
-v $PWD/custom-user-federation-example/build/libs/custom-user-federation-example-all.jar:/opt/keycloak/providers/custom-user-federation-example-all.jar:z \
quay.io/keycloak/keycloak:${{ matrix.keycloak-version }} start-dev

- name: Initialize Keycloak
Expand Down
5 changes: 3 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,8 @@ This provider will officially support the latest three major versions of Keycloa

The following versions are used when running acceptance tests in CI:

- 26.0.8 (latest)
- 26.1.0 (latest)
- 26.0.8
- 25.0.6
- 24.0.5
- 23.0.7
Expand All @@ -71,7 +72,7 @@ build you can use the `linux_amd64` build as long as `libc6-compat` is installed

## Development

This project requires Go 1.22 and Terraform 1.4.1.
This project requires Go 1.22 and Terraform 1.9.8.
This project uses [Go Modules](https://github.com/golang/go/wiki/Modules) for dependency management, which allows this project to exist outside an existing GOPATH.

After cloning the repository, you can build the project by running `make build`.
Expand Down
2 changes: 1 addition & 1 deletion custom-user-federation-example/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ plugins {
}

ext {
keycloakVersion = '26.0.8'
keycloakVersion = '26.1.0'
}

dependencies {
Expand Down
2 changes: 1 addition & 1 deletion docker-compose.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ services:
environment:
LDAP_PORT_NUMBER: 389
keycloak:
image: quay.io/keycloak/keycloak:26.0.8
image: quay.io/keycloak/keycloak:26.1.0
command: --verbose start-dev --features=preview
depends_on:
- postgres
Expand Down
Loading