feat(oidc): optionally merge userinfo claims into auth session#5364
Merged
Conversation
erka
reviewed
Feb 6, 2026
Codecov Report❌ Patch coverage is
Additional details and impacted files@@ Coverage Diff @@
## v2 #5364 +/- ##
==========================================
- Coverage 60.54% 60.54% -0.01%
==========================================
Files 138 138
Lines 13584 13594 +10
==========================================
+ Hits 8225 8231 +6
- Misses 4662 4664 +2
- Partials 697 699 +2
Flags with carried forward coverage won't be shown. Click here to find out more. ☔ View full report in Codecov by Sentry. 🚀 New features to boost your workflow:
|
erka
approved these changes
Feb 6, 2026
Some OIDC providers keep ID token claims minimal and require calling the UserInfo endpoint to obtain additional attributes, especially when the group list is long. This patch adds an `include_user_info` provider option to fetch UserInfo during the callback flow and merge returned claims into the existing claim set. The default remains false to preserve existing behavior. This patch also removed unused UserInfo mocks from old tests. Signed-off-by: Edward Xu <[email protected]>
markphelps
approved these changes
Feb 6, 2026
markphelps
left a comment
Collaborator
There was a problem hiding this comment.
looks great! thanks again @gzxu
Contributor
Author
|
Thanks @erka and @markphelps ! By the way, when would we have the next official release of Flipt, are we releasing on a monthly or bi-monthly basis? 😄 |
Contributor
|
Mark planned to do a release this week, but we postponed it because of the Go release. I hope it will happen soon. @gzxu |
Contributor
Author
|
Sure, thanks so much! |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Summary
Some OIDC providers keep ID token claims minimal and require calling the UserInfo endpoint to obtain additional attributes (for example: email, display name, or group membership). This adds an opt-in
include_user_infoprovider option to fetch UserInfo during the callback flow and merge returned claims into the session claim set.closes #5363.
Changes
authentication.methods.oidc.providers.<provider>.include_user_infoIncludeUserInfoto OIDC provider config structBackward compatibility
falseTest plan