Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

fix(stacktrace): support package name parsing for Go 1.20+ #730

Merged
merged 2 commits into from
Oct 9, 2023

Commits on Oct 5, 2023

  1. fix(stacktrace): support package name parsing for Go 1.20+

    Go 1.20+ changed reserved prefixes for compiler-generated symbols from
    "go." and "type." to "go:" and "type:" respectively.
    
    See: golang/go@0f8dffd
    
    This adds support for both kinds of compiler-generated symbols depending
    on the Go version by taking advantage of build tags.
    greywolve committed Oct 5, 2023
    Configuration menu
    Copy the full SHA
    30178d7 View commit details
    Browse the repository at this point in the history
  2. hopefully fix linting

    greywolve committed Oct 5, 2023
    Configuration menu
    Copy the full SHA
    84e2e87 View commit details
    Browse the repository at this point in the history