Skip to content

Commit 100f671

Browse files
authored
(chore) bump keycloak to 26.5.3 (#543)
1 parent 81db181 commit 100f671

File tree

5 files changed

+12
-6
lines changed

5 files changed

+12
-6
lines changed

CHANGELOG.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,10 @@ and this project adheres to
88

99
## [Unreleased]
1010

11+
### Changed
12+
13+
- Bump keycloak to 26.5.3 #543
14+
1115
## [0.2.0] - 2026-02-03
1216

1317
### Added

compose.yaml

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -337,7 +337,7 @@ services:
337337
pull_policy: build
338338

339339
keycloak:
340-
image: quay.io/keycloak/keycloak:26.2.5
340+
image: quay.io/keycloak/keycloak:26.5.3
341341
volumes:
342342
- ./src/keycloak/realm.json:/opt/keycloak/data/import/realm.json:ro
343343
- ./src/keycloak/themes/dsfr-2.2.1.jar:/opt/keycloak/providers/keycloak-theme.jar:ro
@@ -348,7 +348,8 @@ services:
348348
- start-dev
349349
- --features=preview
350350
- --import-realm
351-
- --proxy=edge
351+
- --proxy-headers=xforwarded
352+
- --http-enabled=true
352353
- --hostname=$${HOST}
353354
- --hostname-admin=$${ADMIN_HOST}
354355
- --http-port=8802

src/e2e/compose.yaml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -54,7 +54,8 @@ services:
5454
- start-dev
5555
- --features=preview
5656
- --import-realm
57-
- --proxy=edge
57+
- --proxy-headers=xforwarded
58+
- --http-enabled=true
5859
- --hostname=$${HOST}
5960
- --hostname-admin=$${ADMIN_HOST}
6061
- --http-port=8802

src/keycloak/Dockerfile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ fi
1313
zip -r /custom-scripts.jar META-INF *.js
1414
EOR
1515

16-
FROM quay.io/keycloak/keycloak:26.4.7 AS builder
16+
FROM quay.io/keycloak/keycloak:26.5.3 AS builder
1717

1818
WORKDIR /opt/keycloak
1919
COPY --chown=keycloak:keycloak --chmod=644 themes/dsfr-2.2.1.jar /opt/keycloak/providers/dsfr.jar
@@ -25,7 +25,7 @@ ARG KC_DB=postgres
2525

2626
RUN /opt/keycloak/bin/kc.sh build
2727

28-
FROM quay.io/keycloak/keycloak:26.4.7
28+
FROM quay.io/keycloak/keycloak:26.5.3
2929

3030
COPY --from=builder /opt/keycloak/ /opt/keycloak/
3131
ENTRYPOINT ["/opt/keycloak/bin/kc.sh"]

src/keycloak/buildpack/scalingo_postcompile.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
set -e
44

5-
KEYCLOAK_VERSION="26.2.1"
5+
KEYCLOAK_VERSION="26.5.3"
66
KEYCLOAK_DIST="https://github.com/keycloak/keycloak/releases/download/${KEYCLOAK_VERSION}/keycloak-${KEYCLOAK_VERSION}.tar.gz"
77

88
echo "-----> Downloading Keycloak $KEYCLOAK_VERSION"

0 commit comments

Comments
 (0)