Skip to content

Commit

Permalink
chore(deps): Update Keycloak dependencies to 26.0.0
Browse files Browse the repository at this point in the history
Signed-off-by: Sven-Torben Janus <[email protected]>
  • Loading branch information
sventorben committed Oct 4, 2024
1 parent 57899bf commit 7f7f06e
Show file tree
Hide file tree
Showing 6 changed files with 12 additions and 12 deletions.
4 changes: 2 additions & 2 deletions .github/ISSUE_TEMPLATE/bug.yml
Original file line number Diff line number Diff line change
Expand Up @@ -38,8 +38,8 @@ body:
label: Version
description: |
examples:
- **Keycloak**: 25.0.6
- **This extension**: 25.0.0
- **Keycloak**: 26.0.0
- **This extension**: 26.0.0
value: |
- Keycloak:
- This extension:
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/buildAndTest.yml
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ jobs:
strategy:
fail-fast: false
matrix:
keycloak_version: [ 25.0.0, 25.0.1, 25.0.2, 25.0.3, 25.0.4, 25.0.5, 25.0.6, latest ]
keycloak_version: [ 25.0.6, 26.0.0, latest ]
keycloak_dist: [quarkus]
experimental: [false]
include:
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/matrix.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,8 +9,8 @@ jobs:
strategy:
fail-fast: false
matrix:
keycloak_version: [ 21.0.2, 21.1.2, 22.0.5, 23.0.7, 24.0.5, 25.0.0, 25.0.1, 25.0.2, 25.0.3, 25.0.4, 25.0.5, 25.0.6, latest, nightly ]
extension_version: [ 20.0.1, 21.0.0, 22.0.0, 23.0.0, 24.0.0, 25.0.0 ]
keycloak_version: [ 21.0.2, 21.1.2, 22.0.5, 23.0.7, 24.0.5, 25.0.6, 26.0.0, latest, nightly ]
extension_version: [ 20.0.1, 21.0.0, 22.0.0, 23.0.0, 24.0.0, 25.0.0, 26.0.0 ]
name: Compatibility (KC ${{ matrix.keycloak_version }}, Extension ${{ matrix.extension_version }})
steps:
- uses: actions/checkout@v4
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
This is a simple Keycloak authenticator to restrict user authorization on clients.

![GitHub release (latest SemVer)](https://img.shields.io/github/v/release/sventorben/keycloak-restrict-client-auth?sort=semver)
![Keycloak Dependency Version](https://img.shields.io/badge/Keycloak-25.0.6-blue)
![Keycloak Dependency Version](https://img.shields.io/badge/Keycloak-26.0.0-blue)
![GitHub Release Date](https://img.shields.io/github/release-date-pre/sventorben/keycloak-restrict-client-auth)
![Github Last Commit](https://img.shields.io/github/last-commit/sventorben/keycloak-restrict-client-auth)

Expand Down
6 changes: 3 additions & 3 deletions docker-compose.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,10 +2,10 @@ version: '3'
services:
keycloak:
container_name: keycloak
image: quay.io/keycloak/keycloak:25.0.6
image: quay.io/keycloak/keycloak:26.0.0
environment:
KEYCLOAK_ADMIN: admin
KEYCLOAK_ADMIN_PASSWORD: admin
KC_BOOTSTRAP_ADMIN_USERNAME: admin
KC_BOOTSTRAP_ADMIN_PASSWORD: admin
DEBUG_PORT: '*:8787'
DEBUG: 'true'
command: ['start-dev', '--debug', '--import-realm', '--features=client-policies']
Expand Down
6 changes: 3 additions & 3 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@

<groupId>de.sventorben.keycloak</groupId>
<artifactId>keycloak-restrict-client-auth</artifactId>
<version>25.0.1-SNAPSHOT</version>
<version>26.0.0-SNAPSHOT</version>

<name>Keycloak: Authenticator - Restrict client authentication</name>
<description>A Keycloak authenticator to restrict authentication on clients</description>
Expand Down Expand Up @@ -51,7 +51,7 @@
<maven.compiler.release>17</maven.compiler.release>

<!-- For compilation -->
<version.keycloak>25.0.6</version.keycloak>
<version.keycloak>26.0.0</version.keycloak>

<!-- For compatibility tests -->
<keycloak.version>${version.keycloak}</keycloak.version>
Expand Down Expand Up @@ -238,7 +238,7 @@
<dependency>
<groupId>org.keycloak</groupId>
<artifactId>keycloak-admin-client</artifactId>
<version>${version.keycloak}</version>
<version>25.0.6</version>
<scope>test</scope>
</dependency>
<!-- Logging -->
Expand Down

0 comments on commit 7f7f06e

Please sign in to comment.