docs: compact version support matrix with single-row 'All platforms' format#124
Conversation
…in support matrix
|
Warning Review limit reached
Next review available in: 37 minutes Enable usage-based reviews in Billing to review now. Otherwise, wait until the next included review is available. How can I continue?After more reviews become available, a review can be triggered using the To avoid repeated limits, reduce automatic review volume by pausing incremental auto-reviews earlier, using label-based review opt-in, excluding WIP or generated PR titles, or requesting reviews manually when the PR is ready. If your team needs uninterrupted high-volume reviews, an organization admin can enable usage-based reviews. How do review limits work?CodeRabbit enforces per-developer PR review limits for each organization. Most developers receive the normal plan review availability. For paid Pro and Pro+ PR reviews, CodeRabbit uses adaptive limits for sustained high-volume activity. When a developer's recent PR review activity reaches the 95th percentile or higher among CodeRabbit users, additional reviews become available more gradually as earlier reviews age out of the rolling window. Please refer docs for additional details. 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. Comment |
Problem
The version support matrix had 31 rows: each of the 5 original tools was expanded into 6 individual platform rows (Linux x86-64, Linux ARM64, macOS x86_64, macOS ARM64, Windows x86-64, Windows ARM64), even though coverage was identical across all platforms. Newly added tools (
llvm-cov,llvm-profdata,llvm-symbolizer,clang-scan-deps) followed a compact single-row format, creating inconsistency.Solution
Unified the entire table into a compact single-row-per-tool format using
All platforms¹, with a footnote explaining the six platforms. This is possible because every tool has identical coverage across all supported platforms.Before: 31 rows (5 tools × 6 platforms + 1 extra for header)
After: 10 rows (9 tools + 1 header)
Changes
clang-format,clang-tidy,clang-query,clang-apply-replacements,clang-include-cleanerfrom 6 platform rows each → single rowllvm-cov,llvm-profdata,llvm-symbolizer,clang-scan-deps(already inbuild.pyTOOLS, missing from docs)¹defining the six supported platformsNote
clang-include-cleanerretains its ❌ markers for LLVM ≤17 — this version constraint is visible directly in the row without needing extra notes.