-
Notifications
You must be signed in to change notification settings - Fork 159
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
refactor: drop golang.org/x/lint #5130
Conversation
the dependency was used to install the golint tool. The golint tool is frozen and deprecated according to the upstream repository: https://github.com/golang/lint CI and automation are using golangci-lint and enable staticcheck which is mentioned as a valid replacement.
This pull request does not have a backport label. Could you fix it @kruskall? 🙏
NOTE: |
Pinging @elastic/elastic-agent-control-plane (Team:Elastic-Agent-Control-Plane) |
|
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Just a small comment/question on the leftover golang/x/lint
entries in go.sum, looks good otherwise
golang.org/x/lint v0.0.0-20200130185559-910be7a94367/go.mod h1:3xt1FjdF8hUf6vQPIChWIBhFzV8gjjsPE/fR3IyQdNY= | ||
golang.org/x/lint v0.0.0-20200302205851-738671d3881b/go.mod h1:3xt1FjdF8hUf6vQPIChWIBhFzV8gjjsPE/fR3IyQdNY= | ||
golang.org/x/lint v0.0.0-20201208152925-83fdc39ff7b5/go.mod h1:3xt1FjdF8hUf6vQPIChWIBhFzV8gjjsPE/fR3IyQdNY= | ||
golang.org/x/lint v0.0.0-20210508222113-6edffad5e616 h1:VLliZ0d+/avPrXXH+OakdXhpJuEoBZuwh1m2j7U6Iug= | ||
golang.org/x/lint v0.0.0-20210508222113-6edffad5e616/go.mod h1:3xt1FjdF8hUf6vQPIChWIBhFzV8gjjsPE/fR3IyQdNY= |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I was expecting for all the others golang.org/x/lint
entries to disappear as well as it doesn't seem like we have an indirect dependency according to go.mod. Is this something that would get cleaned up with a mage clean && go mod tidy
or we have those entries for some other reason ?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
nope, they are still there even after go mod tidy
.
They are still part of the full graph (can be seen with go mod graph
) so module pruning isn't leaving them out completely :(
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
++, to elaborate a bit, that's because there are still indirect dependencies on all these various versions of golang.org/x/lint
. You can see them if you run go mod graph | grep ' golang.org/x/lint'
. This article, particularly Listing 8, explains why older versions of a dependency might still hang around in go.sum
.
What does this PR do?
drop golang.org/x/lint dependency
Why is it important?
the dependency was used to install the golint tool. The golint tool is frozen and deprecatde according to the upstream repository: https://github.com/golang/lint
CI and automation are using golangci-lint and enable staticcheck which is mentioned as a valid replacement.
Checklist
./changelog/fragments
using the changelog toolDisruptive User Impact
How to test this PR locally
Related issues
Questions to ask yourself