Skip to content

feat: implement all v0.1.x open issues (#14-#21)#24

Merged
ajianaz merged 1 commit into
developfrom
feat/all-open-issues
May 30, 2026
Merged

feat: implement all v0.1.x open issues (#14-#21)#24
ajianaz merged 1 commit into
developfrom
feat/all-open-issues

Conversation

@ajianaz

@ajianaz ajianaz commented May 30, 2026

Copy link
Copy Markdown
Collaborator

Closes #14, #15, #16, #17, #18, #19, #20, #21

Summary

All 8 open issues from the v0.1.x milestone implemented in one batch:

# Issue Implementation
#14 Shell completion cora completion bash/zsh/fish/powershell via clap_complete
#15 Homebrew tap Release workflow auto-updates ajianaz/homebrew-cora formula
#16 Streaming responses cora review --stream with SSE parsing via futures-util
#17 GitHub Actions CI workflow (fmt + clippy + test) + multi-platform release
#18 Tests 151 tests: unit + integration
#19 Incremental scan cora scan --incremental with content hash cache
#20 Multi-provider detect cora providers + auto-detection (OpenAI/Anthropic/Groq/Ollama/ZAI)
#21 SARIF upload cora upload-sarif + cora review --upload to GitHub Code Scanning

Stats

  • +2970 lines across 31 files
  • 151 tests passing
  • Zero warnings

- #14 Shell completion (bash, zsh, fish, powershell)
- #15 Homebrew tap support (release workflow auto-generates formula)
- #16 Streaming LLM responses (--stream flag for cora review)
- #17 GitHub Action CI/CD + multi-platform release workflow
- #18 Comprehensive tests (151 tests: unit + integration)
- #19 Incremental scan (--incremental flag, cache in ~/.cora/)
- #20 Multi-provider auto-detection (openai, anthropic, groq, ollama, zai)
- #21 SARIF upload to GitHub Code Scanning (cora upload-sarif + --upload)
@ajianaz
ajianaz merged commit caf41b5 into develop May 30, 2026
1 of 3 checks passed
@coderabbitai

coderabbitai Bot commented May 30, 2026

Copy link
Copy Markdown

Warning

Review limit reached

@ajianaz, we couldn't start this review because you've reached your PR review rate limit.

More reviews will be available in 1 minute and 14 seconds. Learn how PR review limits work.

Your organization has run out of usage credits. Purchase more in the billing tab.

⌛ How to resolve this issue?

After more reviews become available, a review can be triggered using the @coderabbitai review command as a PR comment. Alternatively, push new commits to this PR.

We recommend that you space out your commits to avoid hitting the rate limit.

🚦 How do rate limits work?

CodeRabbit enforces hourly rate limits for each developer per organization.

Our paid plans include higher PR review limits than trial, open-source, and free plans. In all cases, reviews become available again over time. During sustained high-volume PR review activity, CodeRabbit may temporarily slow when the next review becomes available.

Please see our Fair Usage Limits Policy for further information.

ℹ️ Review info
⚙️ Run configuration

Configuration used: defaults

Review profile: CHILL

Plan: Pro

Run ID: 8afba055-ef78-441d-b5d1-86f25af6034f

📥 Commits

Reviewing files that changed from the base of the PR and between a9293a6 and 0226293.

⛔ Files ignored due to path filters (1)
  • Cargo.lock is excluded by !**/*.lock
📒 Files selected for processing (30)
  • .github/workflows/ci.yml
  • .github/workflows/release.yml
  • Cargo.toml
  • src/commands/auth.rs
  • src/commands/completion.rs
  • src/commands/hook_cmd.rs
  • src/commands/mod.rs
  • src/commands/providers.rs
  • src/commands/review.rs
  • src/commands/scan.rs
  • src/commands/upload.rs
  • src/config/loader.rs
  • src/config/mod.rs
  • src/config/providers.rs
  • src/config/schema.rs
  • src/engine/llm.rs
  • src/engine/review.rs
  • src/engine/scanner.rs
  • src/engine/types.rs
  • src/formatters/compact.rs
  • src/formatters/json_fmt.rs
  • src/formatters/mod.rs
  • src/formatters/pretty.rs
  • src/formatters/sarif.rs
  • src/git/diff.rs
  • src/git/files.rs
  • src/hook/install.rs
  • src/main.rs
  • tests/cli_basic.rs
  • tests/config_loading.rs
✨ Finishing Touches
🧪 Generate unit tests (beta)
  • Create PR with unit tests
  • Commit unit tests in branch feat/all-open-issues

Thanks for using CodeRabbit! It's free for OSS, and your support helps us grow. If you like it, consider giving us a shout-out.

❤️ Share

Comment @coderabbitai help to get the list of available commands and usage tips.

@ajianaz
ajianaz deleted the feat/all-open-issues branch May 30, 2026 10:40
ajianaz added a commit that referenced this pull request Jul 16, 2026
* perf: resolve scan/review pipeline performance bottlenecks (P2)

Fix 10 performance issues — all 'repeated work in loops' patterns:

#41 - Pre-compile regex patterns once per rule instead of per line
#5  - Batch DB queries in handle_find_affected_tests (single IN clause)
#13 - Batch symbol fetch for Affected command (single query)
#14 - Prepare SQL statement once outside test-pattern loop
#59 - Early cutoff in secrets scanner when max_findings reached
#70 - Break out of all loops when symbol cap hit per file
#67 - Cache file reads during sibling search in resolver
#3  - Reuse single Tokio runtime for MCP tool calls (static LazyLock)
#22 - Static LazyLock regexes in detect_function_entry
#24 - Single transaction for prune_deleted instead of per-file

Refs #335

* fix(ci): resolve clippy + security audit failures

- clippy: remove redundant borrow in format! arg (llm.rs:456 &user_prompt)
- security: bump anyhow 1.0.102 -> 1.0.103 (RUSTSEC-2026-0190, downcast_mut unsoundness)
- security: bump crossbeam-epoch 0.9.18 -> 0.9.20 (RUSTSEC-2026-0204, fmt::Pointer null deref)

Refs #335

---------

Co-authored-by: ajianaz <ajianaz@users.noreply.github.com>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

None yet

Projects

None yet

Development

Successfully merging this pull request may close these issues.

Add shell completion (bash, zsh, fish)

1 participant