Skip to content

Commit

Permalink
Merge pull request #17 from RoboJackets/renovate/major-keycloak.version
Browse files Browse the repository at this point in the history
Update dependency org.keycloak:keycloak-parent to v25
  • Loading branch information
renovate[bot] authored Jun 10, 2024
2 parents 70660c3 + 593075d commit c6b7e56
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 3 deletions.
2 changes: 1 addition & 1 deletion pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@
</developers>

<properties>
<keycloak.version>24.0.5</keycloak.version>
<keycloak.version>25.0.0</keycloak.version>

<maven.compiler.target>17</maven.compiler.target>
<maven.compiler.source>17</maven.compiler.source>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -211,10 +211,9 @@ private BrokeredIdentityContext getFederatedIdentity(
}
Success success = serviceResponse.getSuccess();

BrokeredIdentityContext user = new BrokeredIdentityContext(success.getUser());
BrokeredIdentityContext user = new BrokeredIdentityContext(success.getUser(), config);
user.setUsername(success.getUser());
user.getContextData().put(USER_ATTRIBUTES, success.getAttributes());
user.setIdpConfig(config);
user.setIdp(provider);
AuthenticationSessionModel authSession =
this.callback.getAndVerifyAuthenticationSession(state.replace(' ', '+'));
Expand Down

0 comments on commit c6b7e56

Please sign in to comment.