-
Notifications
You must be signed in to change notification settings - Fork 878
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Go Module Support #447
Comments
I don't have time (and I imagine Julien has even less 😉 ) to implement this but as long as it doesn't break existing users, it'd be great to have this. |
I can try taking some time out for this. I couldn't quite gather what |
It uses govend |
Note that adopting modules require to have tags in this specific semver format: |
see also #540 |
I think this can be closed by #566 |
Go Modules don't officially land until Go 1.13, but it would be helpful to preemptively support it.
There is currently an issue when attempting to use SOPS/decrypt due to a dependency with
contrib.go.opencensus.io/exporter/ocagent
. The go toolchain will pull the most recent release,v0.4.8
, but actually requiresv0.4.5
.Locking the dependency in a
go.mod
tocontrib.go.opencensus.io/exporter/ocagent v0.4.5 // indirect
solves this problem.To be fair, this is an issue with Azure's package. However, it's a good opportunity to make the package work right out of the box.
The text was updated successfully, but these errors were encountered: