After many years working with Ruby, I migrate to Go without much experience with the language. My first friction was with dependency management because I always find it bad, with fuzzy commands and, the worst, without distinction between development and production dependencies, since both of them are included in the binary. Let’s take a look at a go.mod
from a PoC:
module github.com/mfbmina/poc_circuit_breaker
go 1.24
require github.com/sony/gobreaker/v2 v2.0.0 // indirect
Time goes by, these issues were solved, I was able to understand how this management worked, and I’m still working mainly with Go. When I read that the 1.24 version will bring the “go tool” feature, I was excited about it, and usually I’m not the kind of guy that follows the upcoming versions, but after testing it out, I was disappointed.