chore: superseded by current-base KPI ledger PR #339 - #330
Conversation
|
Warning Review limit reached
Next review available in: 56 minutes You've used all free OSS reviews for now. Wait for the free limit to reset to keep reviewing this public repository. 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. Review details⚙️ Run configurationConfiguration used: Organization UI Review profile: CHILL Plan: Pro Plus Run ID: 📒 Files selected for processing (2)
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 |
|
@opencode-agent @cwl-noema-review Please independently review exact current head |
|
@coderabbitai review |
|
@coderabbitai review Please review exact current head |
🧩 Analysis chain🏁 Script executed: #!/bin/bash
set -euo pipefail
expected_head='66c7afc6eeb1e5862e414d14e7d236e275536082'
expected_main='83ec6f7fe2b04bdcd28bf98ec350e41e55730a18'
echo '== Checked-out revision =='
git rev-parse HEAD
git status --short
git cat-file -e "${expected_head}^{commit}"
git cat-file -e "${expected_main}^{commit}"
if [ "$(git rev-parse HEAD)" != "$expected_head" ]; then
echo "ERROR: checked-out HEAD differs from requested exact head" >&2
exit 2
fi
echo '== Merge-base and changed paths =='
base="$(git merge-base "$expected_main" "$expected_head")"
printf 'merge-base: %s\n' "$base"
git diff --name-status "$expected_main" "$expected_head"
git diff --check "$expected_main" "$expected_head"
echo '== Java file map =='
fd -t f -e java . | sort | rg 'KpiSnapshotLedger|KpiSnapshot|Ledger'
echo '== Production structure =='
prod="$(fd -t f -e java 'KpiSnapshotLedger.java' . | head -n 1)"
test="$(fd -t f -e java 'KpiSnapshotLedgerTest.java' . | head -n 1)"
printf 'production: %s\ntest: %s\n' "$prod" "$test"
ast-grep outline "$prod" --items all
ast-grep outline "$test" --items all
echo '== Exact-head diff =='
git diff --unified=80 "$expected_main" "$expected_head" -- "$prod" "$test"
echo '== Relevant replay and exception references =='
rg -n -C 5 --type java \
'Double\.parseDouble|isFinite|conversionSuccessRate|p95TimeToPreviewMs|IllegalArgumentException|invalid.*line|Invalid.*line|read|load|replay|parse' \
"$prod" "$test"Length of output: 38341 🏁 Script executed: #!/bin/bash
set -euo pipefail
expected_head='66c7afc6eeb1e5862e414d14e7d236e275536082'
prod='src/main/java/com/clearfolio/viewer/analytics/KpiSnapshotLedger.java'
echo '== Replay field mapping and load propagation =='
nl -ba "$prod" | sed -n '90,145p'
nl -ba "$prod" | sed -n '205,252p'
echo '== Snapshot record structure =='
record="$(fd -t f -e java 'KpiSnapshotRecord.java' src | head -n 1)"
printf '%s\n' "$record"
ast-grep outline "$record" --items all
nl -ba "$record" | sed -n '1,180p'
echo '== Ledger construction and exception handling call sites =='
rg -n -C 4 --type java \
'new\s+KpiSnapshotLedger\s*\(|KpiSnapshotLedger\s*\(' \
src/main src/test
echo '== Live pull request state =='
gh pr view 330 --repo ContextualWisdomLab/clearfolio \
--json number,state,isDraft,headRefOid,baseRefOid,mergeStateStatus,reviewDecision,statusCheckRollup \
--jq '{
number, state, isDraft, headRefOid, baseRefOid, mergeStateStatus, reviewDecision,
checks: [.statusCheckRollup[] | {name, status, conclusion}]
}'
echo '== Requested commit identity =='
git show -s --format='commit=%H%nparents=%P%nsubject=%s' "$expected_head"Length of output: 1536 🏁 Script executed: #!/bin/bash
set -euo pipefail
expected_head='66c7afc6eeb1e5862e414d14e7d236e275536082'
prod='src/main/java/com/clearfolio/viewer/analytics/KpiSnapshotLedger.java'
echo '== Replay field mapping and load propagation =='
sed -n '90,145p' "$prod"
sed -n '205,252p' "$prod"
echo '== Snapshot record structure =='
record="$(fd -t f -e java 'KpiSnapshotRecord.java' src | head -n 1)"
printf '%s\n' "$record"
ast-grep outline "$record" --items all
sed -n '1,180p' "$record"
echo '== Ledger construction call sites =='
rg -n -C 4 --type java \
'new\s+KpiSnapshotLedger\s*\(' \
src/main src/test || true
echo '== Live pull request state =='
gh pr view 330 --repo ContextualWisdomLab/clearfolio \
--json number,state,isDraft,headRefOid,baseRefOid,mergeStateStatus,reviewDecision,statusCheckRollup \
--jq '{
number, state, isDraft, headRefOid, baseRefOid, mergeStateStatus, reviewDecision,
checks: [.statusCheckRollup[] | {name, status, conclusion}]
}'
echo '== Requested commit identity =='
git show -s --format='commit=%H%nparents=%P%nsubject=%s' "$expected_head"Length of output: 17379
No findings in the requested scope.
|
|
Pull request was closed
Superseded by clean current-base reconstruction
Closed in favor of PR #339.
Fresh patch comparison proves PR #339 applies the same two bounded semantic hunks as this predecessor:
rate(...)rejects non-finite values and rates outside[0.0, 1.0];nullableLong(...)rejects negative values;PR #339 applies those hunks to protected
main55d7ae8647208e301f282350f076eeddaba61d11, preserving #270-era ledger changes rather than copying stale file blobs. Its exact head1fb6382dcc5a64ea93bbf28f0b8efb1ac1d41150is GREEN on CI31389439496, Security Scan31389439807, SAST31389440805, and fuzz31389439662; auto-merge is enabled through normal protection.Keeping both PRs would duplicate semantics, path ownership, checks, and review traffic. Issue #329 remains open until the protected replacement integrates; issue #327 and issue #326 remain separate.