You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
$ go version
go version go1.18 linux/amd64
$ go mod tidy
$ git diff
$ git grep jwt
go.sum:github.com/dgrijalva/jwt-go v3.2.0+incompatible/go.mod h1:E3ru+11k8xSBh+hMPgOLZmtrrCbhqsmaPHjLKYnJCaQ=
$ go mod why github.com/dgrijalva/jwt-go
# github.com/dgrijalva/jwt-go
(main module does not need package github.com/dgrijalva/jwt-go)
$ find . -name go.mod
./go.mod
It's likely we're confused about something but it seems like either go mod why or go mod tidy should do something differently? Several of us are confused enough to file a bug.
If this is working as intended, feature request: go mod why --sum-too
The text was updated successfully, but these errors were encountered:
Our
go.sum
has an entry thatgo mod tidy
doesn't delete andgo mod why
doesn't explain.The
tailscale.com
module (https://github.com/tailscale/tailscale) at git rev c79c72c4fce75a37061d37b6b18e018e8a70b255:It's likely we're confused about something but it seems like either
go mod why
orgo mod tidy
should do something differently? Several of us are confused enough to file a bug.If this is working as intended, feature request:
go mod why --sum-too
The text was updated successfully, but these errors were encountered: