-
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: go get -u can't upgrade packages with invalid or non-existent versions in go.mod #45527
Comments
CC @bcmills |
@jayconrod @matloob too via owners. https://dev.golang.org/owners |
Just to confirm my understanding, is your intent to permanently change the module path (what we internally call a hard fork) or to temporarily fetch the module code from another location (soft fork)? Soft forks are commonly used to make small changes, sometimes intended to be upstreamed. A
You can add or remove Hard forks are more complicated. I wouldn't expect |
I think what is happening here is:
I'm making the module loader more tolerant to errors for #36460, and I wonder to what extent this problem will go away with lazy loading. If we know we're upgrading to |
TL;DR: I'm hopeful that #36460 will solve this, but I ought to revisit this scenario when that feature is complete to double-check. |
Sorry for the late reply here. Yes, I'm permanently changing the module path, but the upstream module's imports have already been adjusted from So both I don't know what the gitlab version number is yet, so I expected to be able to run Instead, because I have the old github version number, it's failing. This is probably the correct behavior in most cases because the version isn't valid for the gitlab repo, but I understand the meaning of |
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?
I'm changing the location of source code for one of my dependencies, so I change the module path in go.mod.
go.mod
Note that I'm just changing the name using a find and replace, not the version information.
I was expecting to be able to run:
And it would update to whatever
gitlab.com/org/dep
has as its latest. Unfortunately, you run into this:As a fallback, I try pointing to the SHA:
I still see the same error.
FYI, I'm not certain this error is repeatable, this might be specific to my mistake of not replacing the imports. Regardless of this particular error, you will always get an error for having an invalid version in there, you can try
v0.0.0-foo
and you'll be greeted with an error.What did you expect to see?
I feel like it's failing too early. In my mind, upgrade should automatically upgrade to a non-faulty version.
If
go.mod
needs to be validated to resolving semver, then at least pointing directly to a SHA/branch/latest should work regardless of what you have as a version ingo.mod
.What did you see instead?
I think it should perform the upgrade, then update go.mod. No error. The current workaround is to delete the dependency then run the command:
module github.com/org/repo go 1.16 - require github.com/org/dep v0.0.0-20210410204338-0d7a392d906a
This all seems a bit unnecessary.
The text was updated successfully, but these errors were encountered: