You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Currently, spring-authorization-server is not compatible with spring-security:5.4.5. Setting springSecurityVersion=5.4.5 in gradle.properties make the tests fail.
This is due to Spring Security 5.4.5 downgrading com.nimbusds:nimbus-jose-jwt to 8+ from 9+ ; and spring-authorization-server pins com.nimbusds:nimbus-jose-jwt to 9.1.3 .
For info, Spring Boot 2.4.3 pulls in Security 5.4.5.
For reference, see issue about downgrading nimbus-jose-jwt: spring-projects/spring-security#9399
We should align whichever version is bundled with Spring-Security.
The text was updated successfully, but these errors were encountered:
- Spring Security 5.4.5 downgraded nimbus-jose-jwt to 8.+ from 9.+,
which breaks NimbusJwsEncoder.
- Bump Security to 5.4.5, and Boot to 2.4.3 to match Security
Closesspring-projectsgh-256
Currently,
spring-authorization-server
is not compatible withspring-security:5.4.5
. SettingspringSecurityVersion=5.4.5
ingradle.properties
make the tests fail.This is due to Spring Security 5.4.5 downgrading
com.nimbusds:nimbus-jose-jwt
to 8+ from 9+ ; andspring-authorization-server
pinscom.nimbusds:nimbus-jose-jwt
to 9.1.3 .For info, Spring Boot 2.4.3 pulls in Security 5.4.5.
For reference, see issue about downgrading
nimbus-jose-jwt
: spring-projects/spring-security#9399We should align whichever version is bundled with Spring-Security.
The text was updated successfully, but these errors were encountered: