[go-nuts] Re: v1.13: Altered go.mod file in project after updating vim-go binaries

2019-09-05 Thread mihaibopublic
On Thursday, September 5, 2019 at 8:48:11 PM UTC+3, Michael Ellis wrote: > > I ran :GoUpdateBinaries. > > When I looked at git status, I saw that the go.mod and go.sum files had > changed. My go.mod now contains lines for all vim-go dependencies! > Running 'go get example.com/some/module'

[go-nuts] How to update a module's direct dependencies only

2019-09-04 Thread mihaibopublic
Hello, I am looking for a way to regularly update my Go module's direct dependencies. Without specifying indirect dependencies myself: let my direct dependencies specify what they need in their own go.mod. After reading relevant documentation, I could only come up with this partial