Spring Security OAuth2 Auto-config 2.0.6 & 2.1.0 Released
I’m pleased to announce on behalf of the community Spring Security OAuth2 Boot Auto-config 2.0.6 and 2.1.0.
Both releases primarily deliver bug fixes and dependency version updates along with some minor improvements. Of particular note is that these align with recent releases of Spring Boot.
Note that for 2.1.0, gaps in configuration of keys between Resource Server and Authorization Server were brought into parity. Now, it’s possible on the Authorization Server side to configure a single key:
security:
oauth2:
authorization:
jwt:
key-value: ${PRIVATE_KEY}
similar to…