Skip to content

Commit

Permalink
release
Browse files Browse the repository at this point in the history
  • Loading branch information
bcrickboom committed Dec 5, 2024
1 parent cc82e89 commit 85f917c
Show file tree
Hide file tree
Showing 3 changed files with 14 additions and 2 deletions.
2 changes: 1 addition & 1 deletion minimal-setup/keycloak/docker-compose.yml
Original file line number Diff line number Diff line change
Expand Up @@ -132,7 +132,7 @@ services:


keycloak:
image: orthancteam/orthanc-keycloak:24.11.0
image: orthancteam/orthanc-keycloak:24.12.0
depends_on: [keycloak-db]
restart: unless-stopped
environment:
Expand Down
2 changes: 1 addition & 1 deletion release-notes.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ SPDX-FileCopyrightText: 2022 - 2024 Orthanc Team SRL <[email protected]>
SPDX-License-Identifier: GPL-3.0-or-later
-->

v x.x.x
v 24.12.0
========

- Upgraded OHIF from v3.9.0-beta.56 to v3.9.2
Expand Down
12 changes: 12 additions & 0 deletions sources/keycloak/regenerate-client-secret.sh
Original file line number Diff line number Diff line change
Expand Up @@ -32,6 +32,18 @@

cd /opt/keycloak/bin/

# exit if test mode
if [[ ${SKIP_CLIENT_SECRET_UPDATE_FOR_TESTS} == true ]]; then
echo -e "\n##################################################################################################################"
echo -e "WARNING ! WARNING ! WARNING ! WARNING !"
echo -e "Client Secret value is kept to default value!"
echo -e "This is a major security issue!"
echo -e "This mode should be used only for unit testing!"
echo -e "If you read this, you should probably restart your setup withtout the SKIP_CLIENT_SECRET_UPDATE_FOR_TESTS env var"
echo -e "##################################################################################################################\n"
exit 0
fi

# wait till Keycloak is ready

READY=0
Expand Down

0 comments on commit 85f917c

Please sign in to comment.