-
Notifications
You must be signed in to change notification settings - Fork 17.9k
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
cmd/go: mod download modpath@HEAD erroneously resolves to a pseudo-version when HEAD is subsequently tagged #37336
Comments
The originally-derived pseudo-version The newly-derived pseudo-version |
I tested again with a clean module cache and git repository. I noted that the pseudo-version When I invoke When I use the version |
My best guess (and, to be clear, it's just a guess) is that we may have another bug in either the ...speaking of which, what |
|
In When I invoke
After releasing version
And after calling
|
Ok, I think I understand what's going on. During the first fetch, the tag doesn't exist, so the During the second fetch, After it fetches that history, |
I'm not sure what the right fix here is. We certainly need to fetch tags more aggressively, but we might not want to do that for every repo that we |
#27171 is somewhat related, in that we should fetch more data about tags even if we can theoretically produce a valid answer using only local information. |
Is there a reason why |
In the past we have tried to make the However, that has exposed a lot of |
In gopath mode, the |
However I remember a message from Russ where he mentioned that, if possible, he wanted to avoid receiving code from a remote repository due to possible security bugs with the |
At one point we did only fetch the heads and tags. However, the current version of the code fetches the refs and tags along with all ancestors of those commits: go/src/cmd/go/internal/modfetch/codehost/git.go Lines 407 to 437 in 2ed96d0
That's potentially a lot of data, but given the default |
What version of Go are you using (
go version
)?Does this issue reproduce with the latest release?
Yes.
What operating system and processor architecture are you using (
go env
)?go env
OutputWhat did you do?
First, I configured git with:
in order to test with local module paths.
In a new git repository with only 1 commit:
Now I release a version, without a new commit:
What did you expect to see?
Not sure.
But it is not clear why it fails, and the error message seems a bit confusing. Why is
go
trying to replace the canonicalv0.1.0
if this is the version that it is processing now?P.S.
The actual module path, as defined in
go.mod
, ismperillo.test/issue
and notmperillo.test/issue.git
. Can this be considered a bug?The
.git
extension was added to forcego
to don't try to gethttps://mperillo.test/issue?go-get=1
.The text was updated successfully, but these errors were encountered: