haunt98 / go-mod-upgrade

Update outdated Go dependencies interactively

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

go-mod-upgrade

Build Status License Release

Update outdated Go dependencies interactively

Screenshot

Note that only patch and minor updates are supported for now.

Why

The Go wiki has a great section on How to Upgrade and Downgrade Dependencies. One can run the command

go list -u -f '{{if (and (not (or .Main .Indirect)) .Update)}}{{.Path}}: {{.Version}} -> {{.Update.Version}}{{end}}' -m all 2> /dev/null

to view available upgrades for direct dependencies. Unfortunately, the output is not actionable, i.e. we can't easily use it to update multiple dependencies.

This tool is an attempt to make it easier to update multiple dependencies interactively. This is similar to yarn upgrade-interactive, but for Go.

Install

Pre-compiled binaries for Windows, OS X and Linux are available in the releases page.

Alternatively, with the Go toolchain, you can do

$ go get -u github.com/oligot/go-mod-upgrade

Usage

In a Go project which uses modules, you can now run

$ go-mod-upgrade

Colors in module names help identify the update type:

  • green for a minor update
  • yellow for a patch update
  • red for a prerelease update

About

Update outdated Go dependencies interactively

License:MIT License


Languages

Language:Go 92.2%Language:Makefile 7.8%