File tree Expand file tree Collapse file tree 1 file changed +6
-1
lines changed
src/test/java/com/scality/keycloak Expand file tree Collapse file tree 1 file changed +6
-1
lines changed Original file line number Diff line number Diff line change 6
6
import dasniko .testcontainers .keycloak .KeycloakContainer ;
7
7
import static java .lang .module .ModuleDescriptor .Version ;
8
8
9
+ import java .lang .module .ModuleDescriptor .Version ;
10
+
9
11
public class FullImageName {
10
12
enum Distribution {
11
13
quarkus
@@ -14,7 +16,10 @@ enum Distribution {
14
16
private static final Distribution KEYCLOAK_DIST = Distribution .valueOf (
15
17
System .getProperty ("keycloak.dist" , Distribution .quarkus .name ()));
16
18
17
- private static final String LATEST_VERSION = "latest" ;
19
+ // For now hardcode latest supported version to 24.0.5
20
+ // A breaking change is introduced in 25.0.0 where
21
+ // DefaultHostnameProviderFactory is replaced by DefaultHostnameProvider
22
+ private static final String LATEST_VERSION = "24.0.5" ;
18
23
private static final String NIGHTLY_VERSION = "nightly" ;
19
24
private static final String KEYCLOAK_VERSION = System .getProperty ("keycloak.version" , LATEST_VERSION );
20
25
You can’t perform that action at this time.
0 commit comments