fix(display): verbatim hand-off prompt + refresh uv.lock files - #75
Merged
Conversation
The non-interactive hand-off prompt was printed with markup=False but highlighting left on, so Rich injected ANSI codes around path-like tokens in a real terminal. This broke the verbatim-copy contract and only showed up outside a TTY-less environment. Co-Authored-By: Claude Opus 4.8 <noreply@anthropic.com>
Co-Authored-By: Claude Opus 4.8 <noreply@anthropic.com>
Bundled workspace lock bumps dlt to 1.28.2 and pyarrow to 25.0.0; root lock refreshes the CLI's own dev toolchain. Co-Authored-By: Claude Opus 4.8 <noreply@anthropic.com>
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.
This branch bundles two independent changes.
1. Fix: print the hand-off prompt verbatim
print_verbatimprinted the non-interactive setup-error hand-off prompt withmarkup=Falsebut highlighting left on. In a real terminal Rich's highlighter injected ANSI codes around path-like tokens, breaking the verbatim-copy contract — and causingtest_non_interactive_login_failure_prints_resolve_promptto fail (the plain prompt was no longer a substring of stdout). It only passed in TTY-less environments where Rich emits no codes.Fix: pass
highlight=Falsetoconsole.printinprint_verbatim, so the text prints exactly as-is regardless of terminal.2. Chore: refresh both uv.lock files
Routine dependency refresh made locally:
dlt1.28.1 → 1.28.2 andpyarrow24.0.0 → 25.0.0, pluscyclopts,fastmcp,uvicorn,websockets, and others.mypy,ruff,pytest,click,sqlglot,setuptools, and others. Not user-observable, so no changelog line.Only the workspace-lock bump is called out in the CHANGELOG, per the user-facing-only convention.
Testing
make test— 168 passedFORCE_COLOR=1 make test— 168 passed (previously failed)🤖 Generated with Claude Code