Sergey Petrov

Results 3 issues of Sergey Petrov

https://github.com/getsentry/sentry-go/blob/4dddaaad5cc53f38de4928e98126dfbabd315423/stacktrace.go#L257-L262 This code as exptected will ignore parsing for functions which name starts from "go" however this is sometimes a valid package name. For example [zap](https://pkg.go.dev/go.uber.org/zap) library: `go.uber.org/zap/zapcore.(*CheckedEntry).Write` will not...

## Summary Replace type assertions with `reflect.ValueOf(...).Int()` to fix comparison for aliased types ## Changes - `obj1.(int)` => `reflect.ValueOf(obj1).Int()` - Reduce number of cases since we can handle different types...

revisit
pkg-assert
internal/cleanup

## Erroneous Behavior Upgrade nix step is broken on nix 2.21.0 and higher ``` warning: Package name '.*' does not match any packages in the profile. warning: No packages to...

C-bug