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

Don't add auth token to git bundle view urls #48516

Merged
merged 2 commits into from
Mar 29, 2025

Conversation

jedcunningham
Copy link
Member

We definitely do not want to show auth tokens in the view urls generated by the git bundle. We strip them if they are present now.

We definitely do not want to show auth tokens in the view urls generated
by the git bundle. We strip them if they are present now.
Copy link
Contributor

@Copilot Copilot AI left a comment

Choose a reason for hiding this comment

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

Pull Request Overview

This PR ensures that authentication tokens are stripped from Git bundle view URLs so that sensitive credentials do not appear in the URL output.

  • Updated unit tests to include an extra connection kwargs parameter for authentication details.
  • Modified the view_url method in git.py to remove username and password from the URL before constructing the view URL.

Reviewed Changes

Copilot reviewed 2 out of 2 changed files in this pull request and generated no comments.

File Description
providers/git/tests/unit/git/bundles/test_git.py Expanded parameterization to confirm that auth tokens in connection kwargs are not included in the generated view URL
providers/git/src/airflow/providers/git/bundles/git.py Added logic to strip username and password from the URL using parsed_url, but lacks an assignment for cases with no credentials
Comments suppressed due to low confidence (1)

providers/git/src/airflow/providers/git/bundles/git.py:226

  • Ensure that 'url' is always defined. In its current state, if there are no credentials, 'url' may remain undefined. Consider setting 'url = self.host' (or an equivalent value) in an else block.
if parsed_url.username or parsed_url.password:

@kaxil kaxil merged commit 513bba7 into apache:main Mar 29, 2025
59 checks passed
@kaxil kaxil deleted the git_view_url_pat branch March 29, 2025 08:36
shubham-pyc pushed a commit to shubham-pyc/airflow that referenced this pull request Apr 2, 2025
We definitely do not want to show auth tokens in the view urls generated
by the git bundle. We strip them if they are present now.
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Projects
Development

Successfully merging this pull request may close these issues.

None yet

2 participants