Skip to content

Commit ff241b7

Browse files
authored
Merge pull request #135 from fschmtt/drop-support-for-old-keycloak-versions
chore: drop support for older keycloak versions
2 parents 0427bd5 + a56e26a commit ff241b7

File tree

5 files changed

+2
-62
lines changed

5 files changed

+2
-62
lines changed

.github/workflows/php-integration-legacy.yml

-48
This file was deleted.

.github/workflows/php-integration.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ jobs:
1212

1313
strategy:
1414
matrix:
15-
keycloak: [ 17.0.0, 18.0.0, 19.0.0, 20.0.0, 21.0.0, 22.0.0, 22.0.5, 23.0.0, 24.0.0, 25.0.0, 26.0.0 ]
15+
keycloak: [ 24.0.0, 25.0.0, 26.0.0 ]
1616
php: [ 8.1 ]
1717

1818
env:

README.md

-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,6 @@
22
![PHP Analysis](https://github.com/fschmtt/keycloak-rest-api-client-php/actions/workflows/php-analysis.yml/badge.svg?branch=main)
33
![PHP Unit](https://github.com/fschmtt/keycloak-rest-api-client-php/actions/workflows/php-unit.yml/badge.svg?branch=main)
44
![PHP Integration (Keycloak compatibility)](https://github.com/fschmtt/keycloak-rest-api-client-php/actions/workflows/php-integration.yml/badge.svg?branch=main)
5-
![PHP Legacy (Keycloak compatibility)](https://github.com/fschmtt/keycloak-rest-api-client-php/actions/workflows/php-integration-legacy.yml/badge.svg?branch=main)
65

76
# Keycloak Admin REST API Client
87

compose.yaml

+1-1
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ services:
66
working_dir: /app
77

88
keycloak:
9-
image: quay.io/keycloak/keycloak:25.0.0
9+
image: quay.io/keycloak/keycloak:26.0.0
1010
command: start-dev
1111
environment:
1212
KEYCLOAK_ADMIN: admin

tests/Unit/Serializer/AttributeNormalizerTest.php

-11
Original file line numberDiff line numberDiff line change
@@ -113,17 +113,6 @@ public function testMemoizesFilteredPropertiesOfRepresentation(): void
113113

114114
public static function supportedKeycloakVersions(): Generator
115115
{
116-
yield ['13.0.0'];
117-
yield ['14.0.0'];
118-
yield ['15.0.0'];
119-
yield ['16.0.0'];
120-
yield ['17.0.0'];
121-
yield ['18.0.0'];
122-
yield ['19.0.0'];
123-
yield ['20.0.0'];
124-
yield ['21.0.0'];
125-
yield ['22.0.0'];
126-
yield ['23.0.0'];
127116
yield ['24.0.0'];
128117
yield ['25.0.0'];
129118
yield ['26.0.0'];

0 commit comments

Comments
 (0)