#otel dependencies are aged
1 messages · Page 1 of 1 (latest)
➜ go mod why go.opentelemetry.io/otel/log
# go.opentelemetry.io/otel/log
ghe.metrumrg.com/metworx/core/magefiles
dagger.io/dagger
dagger.io/dagger/internal/engineconn
dagger.io/dagger/telemetry
go.opentelemetry.io/otel/log
I believe those dependencies are updated at each release of the dagger go sdk. What version of dagger are you using?
otel libraries are famously unstable and tend to break without warning. So in this case it's not necessarily a good idea to blindly update
I had a go get script in mage that pulls and updates deps. I modified it today to only updated Required packages, not //indirect ones.
This is why I isolate magefiles into its own package in our monorepo
I resolved to pin otel modules with replaces in our monorepo
in my case, I'm isolated with my magefiles also being its own go module
@mystic glen 👋 might be of interest to you