Add logfire auth logout command#1781
Merged
Viicos merged 3 commits intopydantic:mainfrom Mar 17, 2026
Merged
Conversation
Codecov Report✅ All modified and coverable lines are covered by tests. 📢 Thoughts on this report? Let us know! |
d8aa117 to
79d04ff
Compare
Viicos
reviewed
Mar 17, 2026
logfire auth logout commandlogfire auth logout command
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.
Description
This PR implements the
logfire auth logoutcommand, allowing users to remove their stored credentials from~/.logfire/default.tomldirectly via the CLI.Closes #1596
Changes
logout(base_url)method toUserTokenCollectioninlogfire/_internal/auth.pyto handle targeted and complete token removal.parse_logout()inlogfire/_internal/cli/auth.py.tests/test_auth.pyandtests/test_cli.py.Usage
Summary by cubic
Adds the
logfire auth logoutsubcommand to remove saved credentials in~/.logfire/default.tomlfor all regions or a specific region. Shows per-URL success, clear errors, and exits with code 1 on failure.UserTokenCollection.logout(base_url=None)to delete token(s), persist changes, return removed URL(s), and raiseLogfireConfigErrorwhen not logged in or URL not found.auth logout(parse_logout) underauth; respects--regionor logs out from all; prints per-URL confirmation and the final removal path; exits 1 on errors.logfire-apiand added tests for single/multiple removal, wrong/missing region, not-logged-in cases, and CLI outputs/exit codes.Written for commit 5327757. Summary will update on new commits.