-
Notifications
You must be signed in to change notification settings - Fork 18.3k
cmd/go: add support for wildcards in 'go list -m' #45719
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
base: master
Are you sure you want to change the base?
Conversation
This PR (HEAD: 4374a74) has been imported to Gerrit for code review. Please visit https://go-review.googlesource.com/c/go/+/312950 to see it. Tip: You can toggle comments from me using the |
Message from Bryan C. Mills: Patch Set 1: (4 comments) Please don’t reply on this GitHub thread. Visit golang.org/cl/312950. |
Message from Raghavendra Nagaraj: Patch Set 1: (1 comment) Please don’t reply on this GitHub thread. Visit golang.org/cl/312950. |
Message from Raghavendra Nagaraj: Patch Set 1: (1 comment) Please don’t reply on this GitHub thread. Visit golang.org/cl/312950. |
Message from Bryan C. Mills: Patch Set 1: (1 comment) Please don’t reply on this GitHub thread. Visit golang.org/cl/312950. |
This PR (HEAD: 6824608) has been imported to Gerrit for code review. Please visit https://go-review.googlesource.com/c/go/+/312950 to see it. Tip: You can toggle comments from me using the |
Message from Raghavendra Nagaraj: Patch Set 2: (3 comments) Please don’t reply on this GitHub thread. Visit golang.org/cl/312950. |
Message from Bryan C. Mills: Patch Set 2: Run-TryBot+1 Code-Review+1 Trust+1 (2 comments) Please don’t reply on this GitHub thread. Visit golang.org/cl/312950. |
Message from Go Bot: Patch Set 2: (1 comment) Please don’t reply on this GitHub thread. Visit golang.org/cl/312950. |
Message from Go Bot: Patch Set 2: TryBot-Result+1 (1 comment) Please don’t reply on this GitHub thread. Visit golang.org/cl/312950. |
Message from Raghavendra Nagaraj: Patch Set 2: (2 comments) Please don’t reply on this GitHub thread. Visit golang.org/cl/312950. |
Message from Michael Matloob: Patch Set 2: Trust+1 Please don’t reply on this GitHub thread. Visit golang.org/cl/312950. |
Message from Bryan C. Mills: Patch Set 2: (1 comment) Please don’t reply on this GitHub thread. Visit golang.org/cl/312950. |
Message from Raghavendra Nagaraj: Patch Set 2: (1 comment) Please don’t reply on this GitHub thread. Visit golang.org/cl/312950. |
go list -m supports wildcards. however, when combined with version queries, it errors out. the commit makes it work when both are provided. Fixes golang#45485
…de review comments, bug fixes and adding more test cases
…de review comments
This PR (HEAD: 421ee96) has been imported to Gerrit for code review. Please visit https://go-review.googlesource.com/c/go/+/312950 to see it. Tip: You can toggle comments from me using the |
Message from Raghavendra Nagaraj: Patch Set 3: (2 comments) Please don’t reply on this GitHub thread. Visit golang.org/cl/312950. |
Message from Bryan C. Mills: Patch Set 1: (4 comments) Please don’t reply on this GitHub thread. Visit golang.org/cl/312950. |
Message from Raghavendra Nagaraj: Patch Set 1: (1 comment) Please don’t reply on this GitHub thread. Visit golang.org/cl/312950. |
Message from Raghavendra Nagaraj: Patch Set 1: (1 comment) Please don’t reply on this GitHub thread. Visit golang.org/cl/312950. |
Message from Bryan C. Mills: Patch Set 1: (1 comment) Please don’t reply on this GitHub thread. Visit golang.org/cl/312950. |
Message from Raghavendra Nagaraj: Patch Set 2: (3 comments) Please don’t reply on this GitHub thread. Visit golang.org/cl/312950. |
Message from Bryan C. Mills: Patch Set 2: Run-TryBot+1 Code-Review+1 Trust+1 (2 comments) Please don’t reply on this GitHub thread. Visit golang.org/cl/312950. |
Message from Go Bot: Patch Set 2: (1 comment) Please don’t reply on this GitHub thread. Visit golang.org/cl/312950. |
Message from Go Bot: Patch Set 2: TryBot-Result+1 (1 comment) Please don’t reply on this GitHub thread. Visit golang.org/cl/312950. |
Message from Raghavendra Nagaraj: Patch Set 2: (2 comments) Please don’t reply on this GitHub thread. Visit golang.org/cl/312950. |
Message from Michael Matloob: Patch Set 2: Trust+1 Please don’t reply on this GitHub thread. Visit golang.org/cl/312950. |
Message from Bryan C. Mills: Patch Set 2: (1 comment) Please don’t reply on this GitHub thread. Visit golang.org/cl/312950. |
Message from Raghavendra Nagaraj: Patch Set 2: (1 comment) Please don’t reply on this GitHub thread. Visit golang.org/cl/312950. |
Message from Raghavendra Nagaraj: Patch Set 3: (2 comments) Please don’t reply on this GitHub thread. Visit golang.org/cl/312950. |
go list -m supports wildcards. however, when combined with version queries, it errors out. the commit makes it work when both are provided.
Fixes #45485