Skip to content

Latest commit

 

History

History
81 lines (65 loc) · 2.51 KB

File metadata and controls

81 lines (65 loc) · 2.51 KB

Summary

Changes

Privacy & redaction impact

Agent compatibility

Testing

$ go test -race -count=1 ./...
...
$ golangci-lint run ./...
...

Checklist

  • Commits follow Conventional Commits (feat:, fix:, perf:, refactor:, docs:, test:, etc.)
  • go build ./... passes
  • golangci-lint run ./... passes (no new lint findings, no nolint:… without justification)
  • go test -race -count=1 ./... passes locally
  • e2e impact considered (relevant e2e/ test added, updated, or verified) — n/a if change is contained to non-runtime code
  • Public APIs in cmd/trace/cli/... have godoc comments
  • CHANGELOG.md updated under ## [Unreleased] if user-visible
  • No regression in redact/ tests
  • No secrets, tokens, or PII added to the repo (test fixtures use synthetic values only)
  • No Co-authored-by: trailers (this is solo-developer work)