go: loading module retractions for upper.io/db.v3@v3.8.0+incompatible: reading upper.io/db.v3/go.mod at revision v1.0.2: unknown revision v1.0.2
I'm fairly new to Golang but my understanding is that incompatible versions do not have a go.mod which is where retractions are listed (can they be listed somewhere else)? I'm curious if this is an issue with the module index? How is go finding retractions? I noticed that the highest v1 tag is v1.0.1 in the repository but I have no clue where v1.0.2 is coming from.
Hi in Goland when fetching dependencies it runs:
and for me, is erroring out via:
I'm fairly new to Golang but my understanding is that incompatible versions do not have a
go.mod
which is where retractions are listed (can they be listed somewhere else)? I'm curious if this is an issue with the module index? How isgo
finding retractions? I noticed that the highest v1 tag isv1.0.1
in the repository but I have no clue wherev1.0.2
is coming from.