docs(audit): v0.15.3 — correct stale references across CLAUDE.md and docs site#163
Merged
Conversation
…docs site CLAUDE.md: - Fix Go download URL: go1.22 → go1.24 - Add burst pacing mode to architecture notes - Add internal/output and internal/pcap to key packages table docs/_index.md: - Add burst to pacing modes description in sections table docs/dependencies.md: - Remove howett.net/plist from direct dependencies (it is indirect) - Correct dependency count: 13 → 12 - Remove plist from licence compatibility table Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
The Go fuzz engine occasionally reports "context deadline exceeded" and exits non-zero when -fuzztime expires, instead of exiting cleanly. This is a known Go fuzz engine behaviour unrelated to actual test failures. Add scripts/fuzz.sh — a thin wrapper around go test -fuzz that: - Passes on clean exit (exit 0) - Passes on non-zero exit if output contains "context deadline exceeded" but no "Failing input written to" (the marker for a real finding) - Fails on any other non-zero exit or if a corpus entry was written Update all fuzz steps in ci.yml to use the wrapper. Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Summary
Docs audit before v1.0.0 TUI work, plus a fix for the recurring flaky fuzz CI check.
Docs fixes (all staleness from features added after docs were last updated):
CLAUDE.md: fix Go download URL (go1.22→go1.24); addburstto pacing modes; addinternal/outputandinternal/pcapto key packages tabledocs/_index.md: addburstto pacing modes description in the sections tabledocs/dependencies.md: removehowett.net/plistfrom direct dependencies (it is// indirectingo.mod); correct count 13 → 12; remove from licence tableCI fix:
scripts/fuzz.sh: thin wrapper aroundgo test -fuzzthat tolerates the Go fuzz engine's known behaviour of reportingcontext deadline exceededon-fuzztimeexpiry. Real findings (corpus entries written) are still caught and fail the job.ci.ymlupdated to use the wrapper.Cutting as v0.15.3 patch release after merge.
Test plan
🤖 Generated with Claude Code