Skip to content
Permalink

Comparing changes

Choose two branches to see what’s changed or to start a new pull request. If you need to, you can also or learn more about diff comparisons.

Open a pull request

Create a new pull request by comparing changes across two branches. If you need to, you can also . Learn more about diff comparisons here.
base repository: kolkov/racedetector
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: v0.7.2
Choose a base ref
...
head repository: kolkov/racedetector
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: v0.8.1
Choose a head ref
  • 2 commits
  • 13 files changed
  • 1 contributor

Commits on Dec 19, 2025

  1. feat: v0.8.0 - Escape Analysis Integration (#26)

    * feat(instrument): add escape analysis integration and toolexec command
    
    Integrate compiler escape analysis to reduce false positives:
    - Add escape.go parser for 'go build -gcflags=-m' output
    - Skip instrumentation for stack-local variables (don't escape)
    - Reduce instrumentation by 30-50% on real codebases
    
    Add toolexec command for go build integration:
    - racedetector toolexec for use with go build -toolexec
    - Automatically skip stdlib and internal packages
    - Support escape analysis in toolexec mode
    
    Testing on zygomys (issue #17):
    - lexer.go: 14 writes/35 reads -> 9 writes/18 reads
    - Named return value false positives eliminated
    - Remaining races confirmed as real concurrent access
    
    Fixes: #17
    
    * docs: Update documentation for v0.8.0 release
    
    - CHANGELOG.md: Add v0.8.0 section with escape analysis and toolexec
    - README.md: Add toolexec usage example and v0.8.0 note
    - USAGE_GUIDE.md: Add toolexec command and escape analysis sections
    - ROADMAP.md: Update current status to v0.8.0, add release history
    kolkov authored Dec 19, 2025
    Configuration menu
    Copy the full SHA
    73395f3 View commit details
    Browse the repository at this point in the history
  2. fix(ci): add cmd/racedetector/main to gitignore

    GoReleaser fails on dirty state when tests create binary without extension.
    Fixes release workflow.
    kolkov committed Dec 19, 2025
    Configuration menu
    Copy the full SHA
    2379a6d View commit details
    Browse the repository at this point in the history
Loading