Compare commits
2 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
45d21154cc | ||
|
|
46a618daea |
@@ -1,3 +1,10 @@
|
||||
## [1.2.1](https://git.tools.ldpt.fr/lucasdpt/spring-keycloak-starter/compare/1.2.0...1.2.1) (2025-09-26)
|
||||
|
||||
|
||||
### Bug Fixes
|
||||
|
||||
* update bean init ([46a618d](https://git.tools.ldpt.fr/lucasdpt/spring-keycloak-starter/commit/46a618daea7637c565240e468829294860cc6478))
|
||||
|
||||
# [1.2.0](https://git.tools.ldpt.fr/lucasdpt/spring-keycloak-starter/compare/v1.1.0...1.2.0) (2025-09-26)
|
||||
|
||||
|
||||
|
||||
2
pom.xml
2
pom.xml
@@ -6,7 +6,7 @@
|
||||
|
||||
<groupId>fr.lucasdupont</groupId>
|
||||
<artifactId>spring-keycloak-starter</artifactId>
|
||||
<version>1.2.0</version>
|
||||
<version>1.2.1</version>
|
||||
|
||||
<properties>
|
||||
<maven.compiler.source>21</maven.compiler.source>
|
||||
|
||||
@@ -6,7 +6,6 @@ import org.springframework.security.oauth2.jwt.Jwt;
|
||||
import org.springframework.security.oauth2.server.resource.authentication.JwtAuthenticationToken;
|
||||
import org.springframework.stereotype.Component;
|
||||
|
||||
@Component
|
||||
public class CallerIdResolver {
|
||||
|
||||
public CallerId get() throws IllegalAccessException {
|
||||
|
||||
@@ -43,4 +43,9 @@ public class KeycloakAutoConfiguration {
|
||||
return new RequiredRoleFilter(props);
|
||||
}
|
||||
|
||||
@Bean
|
||||
public CallerIdResolver callerIdResolver() {
|
||||
return new CallerIdResolver();
|
||||
}
|
||||
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user