Skip to content

Commit

Permalink
Merge pull request #19972 from sberyozkin/keycloak-15.0.2
Browse files Browse the repository at this point in the history
Bump Keycloak version to 15.0.2
  • Loading branch information
gastaldi authored Sep 9, 2021
2 parents 9b9d8e3 + 7045caf commit e656a26
Show file tree
Hide file tree
Showing 4 changed files with 5 additions and 3 deletions.
2 changes: 1 addition & 1 deletion bom/application/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -180,7 +180,7 @@
<jna.version>5.8.0</jna.version><!-- should satisfy both testcontainers and mongodb -->
<antlr.version>4.9.2</antlr.version>
<quarkus-security.version>1.1.4.Final</quarkus-security.version>
<keycloak.version>14.0.0</keycloak.version>
<keycloak.version>15.0.2</keycloak.version>
<logstash-gelf.version>1.14.1</logstash-gelf.version>
<jsch.version>0.1.55</jsch.version>
<jzlib.version>1.1.3</jzlib.version>
Expand Down
2 changes: 1 addition & 1 deletion build-parent/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -92,7 +92,7 @@

<!-- The image to use for tests that run Keycloak -->
<!-- IMPORTANT: If this is changed you must also update bom/application/pom.xml and KeycloakBuildTimeConfig/DevServicesConfig in quarkus-oidc/deployment to match the version -->
<keycloak.docker.image>quay.io/keycloak/keycloak:14.0.0</keycloak.docker.image>
<keycloak.docker.image>quay.io/keycloak/keycloak:15.0.2</keycloak.docker.image>

<unboundid-ldap.version>4.0.13</unboundid-ldap.version>

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,7 @@
import org.keycloak.jose.jws.JWSHeader;
import org.keycloak.json.StringListMapDeserializer;
import org.keycloak.json.StringOrArrayDeserializer;
import org.keycloak.protocol.oidc.representations.MTLSEndpointAliases;
import org.keycloak.protocol.oidc.representations.OIDCConfigurationRepresentation;
import org.keycloak.representations.AccessToken;
import org.keycloak.representations.AccessTokenResponse;
Expand Down Expand Up @@ -63,6 +64,7 @@ public void registerReflectionItems(BuildProducer<ReflectiveClassBuildItem> refl
ResourceOwnerRepresentation.class.getName(),
StringListMapDeserializer.class.getName(),
StringOrArrayDeserializer.class.getName(),
MTLSEndpointAliases.class.getName(),
OIDCConfigurationRepresentation.class.getName()));
}

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ public class DevServicesConfig {
/**
* The container image name to use, for container based DevServices providers.
*/
@ConfigItem(defaultValue = "quay.io/keycloak/keycloak:14.0.0")
@ConfigItem(defaultValue = "quay.io/keycloak/keycloak:15.0.2")
public String imageName;

/**
Expand Down

0 comments on commit e656a26

Please sign in to comment.