Conversation
Coverage reportClick to see where and how coverage changed
The report is truncated to 25 files out of 29. To see the full report, please visit the workflow summary page. This report was generated by python-coverage-comment-action |
||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
bmos
force-pushed
the
bearer_auth
branch
2 times, most recently
from
September 9, 2026 19:29
7b0bd9a to
37fd0a0
Compare
bmos
added a commit
to bmos/parsons
that referenced
this pull request
Sep 13, 2026
bmos
force-pushed
the
bearer_auth
branch
6 times, most recently
from
September 18, 2026 16:13
19a7e2a to
d51fdd4
Compare
bmos
added a commit
to bmos/parsons
that referenced
this pull request
Sep 18, 2026
bmos
added a commit
to bmos/parsons
that referenced
this pull request
Sep 19, 2026
bmos
added a commit
to bmos/parsons
that referenced
this pull request
Sep 19, 2026
This branch has not been deployed
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.
What is this change?
Requests authentication handlers can be a useful way to handle common authorization solutions, and we have multiple connectors that all use header-based authentication tokens. Many with the exact same
"Authorization": "Bearer API_KEY"format.Add generic authentication handler for requests to support header-based token authentication without manually editing headers. Example:
Update existing connectors that use header-based token authentication to use this requests-native approach.
Considerations for discussion
BearerAuthor should it be something else since not all implementations use "Bearer" as the token name?How to test the changes (if needed)
Breaking Changes
Breaking changes are changes to our public API which may require existing users to change their code. If there are no breaking changes, any existing parsons user should not need to do anything after updating their parsons version.
Does this PR introduce breaking changes?
Details (if needed)