cmd/gorelease: replace all self versions during load - #84
cmd/gorelease: replace all self versions during load#84shivanshgupta365 wants to merge 1 commit into
Conversation
|
Thanks for your pull request! It looks like this may be your first contribution to a Google open source project. Before we can look at your pull request, you'll need to sign a Contributor License Agreement (CLA). View this failed invocation of the CLA check for more information. For the most up to date status, view the checks section at the bottom of the pull request. |
7d62b2d to
e7979db
Compare
|
This PR (HEAD: e7979db) has been imported to Gerrit for code review. Please visit Gerrit at https://go-review.googlesource.com/c/exp/+/809440. Important tips:
|
|
Message from Gopher Robot: Patch Set 1: (1 comment) Please don’t reply on this GitHub thread. Visit golang.org/cl/809440. |
|
Message from Gopher Robot: Patch Set 1: Congratulations on opening your first change. Thank you for your contribution! Next steps: Most changes in the Go project go through a few rounds of revision. This can be Please don’t reply on this GitHub thread. Visit golang.org/cl/809440. |
When a module has a transitive dependency on a higher version of itself,
minimal version selection can ignore the version-scoped replacement added by
prepareLoadDir and load the cached module instead of the local checkout.
Use a wildcard replacement so every selected version resolves to the local
module directory.
Fixes golang/go#80497