019: Dependencies maintenance in Go
I talk about dependencies management in Go. How to keep your dependencies up-to-date and how to check if there's any updates available. What to do when a package change their major version.
List all packages and latest versions:
$ go list -m -u all
Update all packages to their latest minor versions:
$ go get -u ./...
If you'd like to support this podcast consider buying a copy of my course Build SaaS apps in Go.
List all packages and latest versions:
$ go list -m -u all
Update all packages to their latest minor versions:
$ go get -u ./...
If you'd like to support this podcast consider buying a copy of my course Build SaaS apps in Go.
Creators and Guests
Host
Dominic St-Pierre
Go system builder - entrepreneur. I've been writing software systems since 2001. I love SaaS, building since 2008.