From 2c0c427fb03c1ccd93858a165447e42043b48b80 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 4 Mar 2024 10:25:08 +0000 Subject: [PATCH 1/2] Bump org.keycloak:keycloak-quarkus-server from 23.0.7 to 24.0.0 Bumps org.keycloak:keycloak-quarkus-server from 23.0.7 to 24.0.0. --- updated-dependencies: - dependency-name: org.keycloak:keycloak-quarkus-server dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] --- pom.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pom.xml b/pom.xml index 48542c6..2c6073b 100644 --- a/pom.xml +++ b/pom.xml @@ -66,7 +66,7 @@ 1.0.0 1.2.4 19.0.0 - 23.0.7 + 24.0.0 From b285a3db6bf41c5e80a0cf7f25e0a182d1e93d78 Mon Sep 17 00:00:00 2001 From: Stephan Schnabel Date: Mon, 4 Mar 2024 17:00:50 +0100 Subject: [PATCH 2/2] Fix tests --- README.md | 2 +- src/test/k3s/test/keycloak/files/kokuwa-realm.json | 4 ++++ src/test/k3s/test/keycloak/files/test-realm.json | 4 ++++ 3 files changed, 9 insertions(+), 1 deletion(-) diff --git a/README.md b/README.md index f9bdf77..190afc6 100644 --- a/README.md +++ b/README.md @@ -1,6 +1,6 @@ # Keycloak -Keycloak container image for Kokuwa. +[Keycloak](https://github.com/keycloak/keycloak) container image for Kokuwa. [![License](https://img.shields.io/github/license/kokuwaio/keycloak.svg?label=License)](https://github.com/kokuwaio/keycloak/blob/main/LICENSE) [![Build](https://img.shields.io/github/actions/workflow/status/kokuwaio/keycloak/build.yaml?branch=main&label=Build)](https://github.com/kokuwaio/keycloak/actions/workflows/build.yaml) diff --git a/src/test/k3s/test/keycloak/files/kokuwa-realm.json b/src/test/k3s/test/keycloak/files/kokuwa-realm.json index 0615764..5c34eb1 100644 --- a/src/test/k3s/test/keycloak/files/kokuwa-realm.json +++ b/src/test/k3s/test/keycloak/files/kokuwa-realm.json @@ -11,6 +11,8 @@ "id": "kokuwa-admin-id", "enabled": true, "username": "admin", + "firstName": "firstName", + "lastName": "lastName", "email": "admin@example.org", "credentials": [ { "type": "password", "value": "password" } ], "clientRoles": { "realm-management": [ "realm-admin" ] } @@ -18,6 +20,8 @@ "id": "kokuwa-horst-id", "enabled": true, "username": "horst", + "firstName": "firstName", + "lastName": "lastName", "email": "horst@example.org", "credentials": [ { "type": "password", "value": "password" } ] } diff --git a/src/test/k3s/test/keycloak/files/test-realm.json b/src/test/k3s/test/keycloak/files/test-realm.json index 04a6df0..2161920 100644 --- a/src/test/k3s/test/keycloak/files/test-realm.json +++ b/src/test/k3s/test/keycloak/files/test-realm.json @@ -10,6 +10,8 @@ "id": "test-admin-id", "enabled": true, "username": "admin", + "firstName": "firstName", + "lastName": "lastName", "email": "admin@example.org", "credentials": [ { "type": "password", "value": "password" } ], "clientRoles": { "realm-management": [ "realm-admin" ] } @@ -17,6 +19,8 @@ "id": "test-horst-id", "enabled": true, "username": "horst", + "firstName": "firstName", + "lastName": "lastName", "email": "horst@example.org", "credentials": [ { "type": "password", "value": "password" } ] }