-
Notifications
You must be signed in to change notification settings - Fork 485
feat: add debug option for auth client #804
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
feat: add debug option for auth client #804
Conversation
Pull Request Test Coverage Report for Build 5495303954
💛 - Coveralls |
@astoiccoder Can you please remove the package.json and package-lock.json files as they conflict and we'll merge this! |
@hf thanks a lot for having a look! Resolved the conflicts now |
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.
Congrats on your first contribution! 🎉
Pull Request Test Coverage Report for Build 5495303954Warning: This coverage report may be inaccurate.This pull request's base commit is no longer the HEAD commit of its target branch. This means it includes changes from outside the original pull request, including, potentially, unrelated coverage changes.
Details
💛 - Coveralls |
Pull Request Test Coverage Report for Build 5648782960Warning: This coverage report may be inaccurate.This pull request's base commit is no longer the HEAD commit of its target branch. This means it includes changes from outside the original pull request, including, potentially, unrelated coverage changes.
Details
💛 - Coveralls |
1 similar comment
Pull Request Test Coverage Report for Build 5648782960Warning: This coverage report may be inaccurate.This pull request's base commit is no longer the HEAD commit of its target branch. This means it includes changes from outside the original pull request, including, potentially, unrelated coverage changes.
Details
💛 - Coveralls |
What kind of change does this PR introduce?
Feature to introduce the option to pass a debug flag down to gotrue client.
Bumps
gotrue-js
to v2.39.1.What is the current behavior?
Currently it is not possible to pass the debug flag to the authentication client.
The debug flag was recently introduced here and first released in v2.35.0.
What is the new behavior?
gotrue-js
has been bumped to v2.39.1 in order to make the debug flag option available inSupabaseAuthClientOptions
.Introduce debug flag in
auth
settings forSupabaseClientOptions
and pass it on to theSupabaseAuthClient
.Additional context
This is my first try of a contribution, so please let me know if I did something wrong. Since this was faster implemented than described, I went straight to implementation instead of raising a discussion first.
If I should split the version bump in a separate PR please let me know as well.
Currently I have an issue with authentication in
supabase-js
client and I believe having this debug option could help me understand the issue better.