-
Notifications
You must be signed in to change notification settings - Fork 6.1k
Fix #8797: Add OAuth2AuthenticationException to allowlist #8827
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Conversation
@jgrandja here's my take on #8797, what do you think? Side note: I could not run the whole test suite locally to verify nothing else breaks. Master branch is failing locally with the same error as the CI build:
|
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
This looks great @napstr! I left a couple of minor comments.
After you update, please rebase on master before you push and it should be ready to merge.
.../org/springframework/security/oauth2/client/jackson2/OAuth2AuthenticationExceptionMixin.java
Outdated
Show resolved
Hide resolved
...ient/src/main/java/org/springframework/security/oauth2/client/jackson2/OAuth2ErrorMixin.java
Show resolved
Hide resolved
...ain/java/org/springframework/security/oauth2/client/jackson2/OAuth2ClientJackson2Module.java
Show resolved
Hide resolved
...springframework/security/oauth2/client/jackson2/OAuth2AuthenticationExceptionMixinTests.java
Outdated
Show resolved
Hide resolved
...springframework/security/oauth2/client/jackson2/OAuth2AuthenticationExceptionMixinTests.java
Outdated
Show resolved
Hide resolved
...springframework/security/oauth2/client/jackson2/OAuth2AuthenticationExceptionMixinTests.java
Outdated
Show resolved
Hide resolved
Add mixins for - OAuth2AuthenticationException - OAuth2Error Closes spring-projectsgh-8797
@jgrandja thanks for the detailed feedback. I think I have now addressed all your points, and expanded the test cases following the example set by other mixin tests. Please have another look. |
Thanks for the updates @napstr ! This is now in master and backported to 5.3.x |
Add mixins for
See #8797 for more details.