Introduction
Hi, DEV people! π Sometimes, when you publish a new version of your Go package, pkg.go.dev may still give away an old version for a long time.
This also means, that if other people are using your package, not be able to update to the new version until the cache is updated.
Let's fix this! π
π Table of contents
A little story from real-life
That's what we did at Fiber Go web framework a few months ago.
After fixed a major bug, a new Fiber version could not be installed on users projects for about a couple of hours, because the cache was not updated. But the press release for the fix was already out (in official repository, Twitter, etc.) and users wanted to update and could not.
Worst-case scenario, isn't it? π¨
Solution
Save this command to a Makefile
(or a task manager you're using now):
# ...
update-pkg-cache:
GOPROXY=https://proxy.golang.org GO111MODULE=on \
go get github.com/$(USER)/$(PACKAGE)@v$(VERSION)
# ...
And use it, like this:
make update-pkg-cache USER=gofiber PACKAGE=fiber VERSION=1.12.4
Where:
USER
your GitHub user or organization namePACKAGE
a name of your package to update cacheVERSION
a version number to update cache
It's that simple and clear!
P.S.
If you want more articles (like this) on this blog, then post a comment below and subscribe to me. Thanks! π»
βοΈ You can support me on Boosty, both on a permanent and on a one-time basis. All proceeds from this way will go to support my OSS projects and will energize me to create new products and articles for the community.
And of course, you can help me make developers' lives even better! Just connect to one of my projects as a contributor. It's easy!
My main projects that need your help (and stars) π
- π₯ gowebly: A next-generation CLI tool that makes it easy to create amazing web applications with Go on the backend, using htmx, hyperscript or Alpine.js and the most popular CSS frameworks on the frontend.
- β¨ create-go-app: Create a new production-ready project with Go backend, frontend and deploy automation by running one CLI command.
Top comments (1)
Hey Vic, nice write up. I've had the same problem earlier this year and came up with a Github Action that does pretty much the same every time a new package version is released: github.com/marketplace/actions/go-...