Skip to content
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

fix: apply strategy filters in identifier first as well #4352

Merged
merged 1 commit into from
Mar 25, 2025

Conversation

aeneasr
Copy link
Member

@aeneasr aeneasr commented Mar 20, 2025

No description provided.

@aeneasr aeneasr requested a review from a team as a code owner March 20, 2025 12:02
Copy link

codecov bot commented Mar 21, 2025

Codecov Report

Attention: Patch coverage is 77.77778% with 22 lines in your changes missing coverage. Please review.

Project coverage is 78.57%. Comparing base (5f47ac4) to head (067540f).
Report is 4 commits behind head on master.

Files with missing lines Patch % Lines
selfservice/strategy/oidc/strategy_login.go 73.91% 3 Missing and 3 partials ⚠️
selfservice/strategy/oidc/strategy.go 58.33% 2 Missing and 3 partials ⚠️
selfservice/flow/login/organizations.go 80.00% 3 Missing ⚠️
selfservice/flow/registration/oragnizations.go 72.72% 3 Missing ⚠️
driver/config/testhelpers/config.go 50.00% 1 Missing and 1 partial ⚠️
selfservice/strategy/oidc/types.go 71.42% 1 Missing and 1 partial ⚠️
selfservice/flow/login/handler.go 66.66% 0 Missing and 1 partial ⚠️
Additional details and impacted files
@@            Coverage Diff             @@
##           master    #4352      +/-   ##
==========================================
+ Coverage   78.56%   78.57%   +0.01%     
==========================================
  Files         366      369       +3     
  Lines       27168    27207      +39     
==========================================
+ Hits        21344    21378      +34     
+ Misses       4198     4197       -1     
- Partials     1626     1632       +6     

☔ View full report in Codecov by Sentry.
📢 Have feedback on the report? Share it here.

🚀 New features to boost your workflow:
  • ❄️ Test Analytics: Detect flaky tests, report on failures, and find test suite problems.
  • 📦 JS Bundle Analysis: Save yourself from yourself by tracking and limiting bundle sizes in JS merges.

@aeneasr aeneasr requested a review from hperl March 21, 2025 16:16
@aeneasr aeneasr force-pushed the fix-org-filter branch 3 times, most recently from 9202604 to 953a39d Compare March 24, 2025 09:33
Copy link
Member Author

@aeneasr aeneasr left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

I addressed your comments!

@aeneasr aeneasr force-pushed the fix-org-filter branch 3 times, most recently from bc35eb8 to 8288f7a Compare March 25, 2025 11:21
@@ -837,7 +846,7 @@ func (s *Strategy) linkCredentials(ctx context.Context, i *identity.Identity, to
creds, err := i.ParseCredentials(s.ID(), &conf)
if errors.Is(err, herodot.ErrNotFound) {
var err error
if creds, err = identity.NewCredentialsOIDC(tokens, provider, subject, organization); err != nil {
if creds, err = identity.NewOIDCLikeCredentials(tokens, s.ID(), provider, subject, organization); err != nil {
Copy link
Member Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

@hperl this was using OIDC credentials, the workaround was only possible in a very specific scenario prior.

Copy link
Contributor

@hperl hperl left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

LGTM, I just have a question about counting org SSO credentials.

@aeneasr aeneasr merged commit ec3ecc5 into master Mar 25, 2025
28 of 29 checks passed
@aeneasr aeneasr deleted the fix-org-filter branch March 25, 2025 15:15
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

3 participants