docs(signal-protocol): document own-device exclusion from sender-key warm mark - #395
Conversation
…warm mark (whatsapp-rust#999)
|
Preview deployment for your docs. Learn more about Mintlify Previews.
💡 Tip: Enable Workflows to automatically generate PRs for you. |
|
You have reached your Codex usage limits for code reviews. You can see your limits in the Codex usage dashboard. |
|
Warning Review limit reached
Next review available in: 42 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. Review details⚙️ Run configurationConfiguration used: Organization UI Review profile: ASSERTIVE Plan: Pro Plus Run ID: 📒 Files selected for processing (1)
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 |
There was a problem hiding this comment.
No issues found across 1 file
Confidence score: 5/5
- Automated review surfaced no issues in the provided summaries.
- No files require special attention.
Auto-approved: Documentation-only change to signal-protocol.mdx explaining own-device exclusion from sender-key warm mark. No code, config, or infrastructure changes.
Re-trigger cubic
There was a problem hiding this comment.
0 issues found across 1 file (changes from recent commits).
Auto-approved: Documentation update to signal-protocol guide explaining own-device exclusion from sender-key warm mark.
Re-trigger cubic
What
Updates
advanced/signal-protocol.mdxto document whatsapp-rust#999: the group sender-key "warm mark" (update_sender_key_devices) now excludes the account's own companion devices, mirroring WhatsApp Web's!isMeDeviceguard onmarkHasSenderKey.Why
This closes a residual noted in the existing docs for #996: the warm mark previously recorded the full SKDM distribution target — including own companions — as
has_key=true, regardless of whether that device's pairwise encryption actually succeeded. Since the forget path already excludes own devices (to stop an inbound retry receipt from tearing down our own session), an own companion whose one SKDM encryption failed could never be un-marked — a permanent orphan. #999 fixes this by excluding own devices from the warm mark too, so they're never memoized and get a fresh SKDM on every send.Changes
<Note>under "Parallelized group encrypt fan-out" (which already chronicled the #996 fix and flagged this exact residual) with a paragraph closing the loop: #999 excludes own devices from the warm mark, closing the orphan window entirely.<Note>under "Incremental targeting" cross-referencing the above, so readers following thehas_keydiff logic see the own-device exclusion where it's most relevant.No other guides (
group-management.mdx,sending-messages.mdx) reference this internal tracking mechanism, so no other files needed updates. Changelog is intentionally untouched.Ref: oxidezap/whatsapp-rust#999
Generated by Claude Code
Summary by cubic
Update Signal Protocol docs to state that the group sender-key warm mark excludes the account’s own companion devices (mirrors WhatsApp Web’s
!isMeDevice) and fix a link’s text to match its heading. This prevents orphaned own devices by never marking themhas_key=trueso they get a freshSKDMon every send; external members are unaffected.Written for commit 4f5c8f1. Summary will update on new commits.