chore: bump version to 0.5.1 + fix CI#295
Merged
Merged
Conversation
… call Fixes CI failure after commit 39b5e0a. The run_build_ast_graph() function signature requires: - source_root (required) - kuzu_path (required) - verbose (required) ← was missing - quiet (optional) - env (optional) The call in installer.py was missing verbose and quiet args, causing: "internal error: run_build_ast_graph() missing 1 required keyword-only argument: 'verbose'" Added verbose=not quiet and quiet=quiet to match the pattern used in cli.py. Co-Authored-By: Claude Opus 4.7 <noreply@anthropic.com>
…tyle 1. Pass required `verbose=not quiet` and `quiet=quiet` to run_build_ast_graph() — the function gained a mandatory `verbose` parameter, which the installer call was missing, causing CI failure. 2. Revert the custom questionary Style from #292. The hardcoded fg:cyan/fg:blue colors were added to improve visibility on light terminal themes but broke dark themes. Questionary's defaults already use ●/○ indicator characters that are theme-independent, so a custom style is unnecessary and just creates a light-vs-dark conflict. Co-Authored-By: Claude Opus 4.7 <noreply@anthropic.com>
Co-Authored-By: Claude Opus 4.7 <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.
Summary
Bumps version to 0.5.1 and fixes CI failure after commit 39b5e0a.
Fixes
Missing verbose argument: Added
verbose=not quietandquiet=quiettorun_build_ast_graph()call ininstaller.py— the function gained a mandatoryverboseparameter that the installer was missing.Broken custom questionary style: Reverted the custom
fg:cyan/fg:bluecolors from fix(cli install): resolve tuple unpacking bug and UX issues (#291) #292 that broke dark terminal themes. Usesnoinheritstyle instead, relying on ●/○ indicators.Version
Bumped from 0.5.0 to 0.5.1. Published to PyPI: https://pypi.org/project/java-codebase-rag/0.5.1/
Test plan
🤖 Generated with Claude Code