106 wires and counting

$ follow OpenClaw

Keep up with OpenClaw in about 3 minutes: what actually shipped โ€” the commits, pull requests, releases, and security advisories that matter.

or

fair warning: these emails are deeply technical. diffs, version numbers, CVEs, benchmark deltas. if that's not your idea of a good read, this isn't your newsletter.

Folds into your digest โ€” weekly by default, monthly if you prefer. Unsubscribe in one click.

$ status

wire 2026-08-10
stories 136

ยฉ 2026 RepoJournal Home Showcase Explore How it works Privacy

$ the-wire ยท showcase

Unified secret redaction and SSRF policy ownership, plus queue fixes to stop the DLQ bleed

By RepoJournal ยท Filed ยท About OpenClaw

OpenClaw unified secret-redaction and SSRF policy ownership to close a stale-redaction gap, while Clawsweeper throttled exact-review admission and deduped duplicate receipts to stop dead-lettering finished reviews at 20-30 per hour.

OpenClaw consolidated secret-redaction ownership under a single canonical redactor. Memory-host errors, including payment, card, and CVV coverage, now redact through the existing core facade instead of the stale local pattern table, while ACP error redaction flows through one barrel so the injected redactor no longer depends on module load order. This removes a class of security holes where sensitive data could leak through a stale fallback table [1]. Separately, the channel-turn dispatch naming layers were flattened, preserving dispatch contracts but removing export collisions; plugin SDK consumers should see no breaking change, though stale docs now point to the turn-defining modules [2]. Assistant avatars no longer render in chat transcripts unless explicitly set [3].

Clawsweeper's exact-review publication lane has been dead-lettering finished Codex reviews at roughly 20-30 per hour, with the dead-letter queue growing monotonically (retry_exhausted 719 -> 724 over 21 minutes) [4]. The fix keeps throttled batches on the transient retry budget, so they no longer exhaust and land in the DLQ. Additionally, scheduled exact-review admission dropped from 450/hour with a 120-item burst to 300/hour with a 30-item burst, reserving GitHub App quota for ingress, routing, apply, publication, and support lanes; typed throttle completions now pause scheduled and background admission without blocking interactive exact-event admission [5]. To cut the per-item API calls, apply now batches all label mutations into one `gh issue edit` per event and caches the repository label catalog [6]. Ingress deduplicates PR receipts across `opened` and `ready_for_review`, fixing the double-๐Ÿฆž๐Ÿ‘€ comments first reported in openclaw/openclaw#120966 [7]. As containment, hot target-fanout cadence is temporarily reduced from every 5 minutes to every 20 minutes, while other intake cadences remain unchanged [8].

The hot target-fanout reduction is a temporary containment measure; core hot intake, normal fanout, and audit schedules are untouched [8].

Action items

References

  1. [1] fix(security): unify secret-redaction and SSRF policy ownership (#121335) โ†— openclaw/openclaw
  2. [2] refactor(channels): flatten channel-turn dispatch naming layers (#121308) โ†— openclaw/openclaw
  3. [3] fix(ui): remove assistant avatars from chat transcripts (#121405) โ†— openclaw/openclaw
  4. [4] fix(publication): keep throttled batch publications on the transient retry budget โ†— openclaw/clawsweeper
  5. [5] fix(queue): preserve GitHub quota headroom โ†— openclaw/clawsweeper
  6. [6] fix(apply): batch exact publication labels โ†— openclaw/clawsweeper
  7. [7] fix(webhook): dedupe pull request receipts across opened and ready_for_review โ†— openclaw/clawsweeper
  8. [8] fix(review): reduce hot target fanout cadence โ†— openclaw/clawsweeper

Quick answers

What shipped in OpenClaw on August 10, 2026?
OpenClaw unified secret-redaction and SSRF policy ownership to close a stale-redaction gap, while Clawsweeper throttled exact-review admission and deduped duplicate receipts to stop dead-lettering finished reviews at 20-30 per hour. In total, 102 commits and 34 pull requests landed.
Who contributed to OpenClaw on August 10, 2026?
4 developers shipped this update, including Peter Steinberger, brokemac79, github-actions, and openclaw-docs-sync[bot].
What were the notable OpenClaw updates?
fix(security): unify secret-redaction and SSRF policy ownership (#121335), refactor(channels): flatten channel-turn dispatch naming layers (#121308), and fix(ui): remove assistant avatars from chat transcripts (#121405).