Skip to content
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

Merged
merged 2 commits into from
Jul 19, 2024
Merged

Conversation

kruskall
Copy link
Member

@kruskall kruskall commented Jul 12, 2024

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

NOTE: Golint is golang/go#38968. There's no drop-in replacement for it, but tools such as Staticcheck and go vet should be used instead.

CI and automation are using golangci-lint and enable staticcheck which is mentioned as a valid replacement.

Checklist

  • My code follows the style guidelines of this project
  • I have commented my code, particularly in hard-to-understand areas
  • I have made corresponding changes to the documentation
  • I have made corresponding change to the default configuration files
  • I have added tests that prove my fix is effective or that my feature works
  • I have added an entry in ./changelog/fragments using the changelog tool
  • I have added an integration test or an E2E test

Disruptive User Impact

How to test this PR locally

Related issues

Questions to ask yourself

  • How are we going to support this in production?
  • How are we going to measure its adoption?
  • How are we going to debug this?
  • What are the metrics I should take care of?
  • ...

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.
Copy link
Contributor

mergify bot commented Jul 12, 2024

This pull request does not have a backport label. Could you fix it @kruskall? 🙏
To fixup this pull request, you need to add the backport labels for the needed
branches, such as:

  • backport-v./d./d./d is the label to automatically backport to the 8./d branch. /d is the digit

NOTE: backport-skip has been added to this pull request.

@pierrehilbert pierrehilbert added the Team:Elastic-Agent-Control-Plane Label for the Agent Control Plane team label Jul 12, 2024
@elasticmachine
Copy link
Contributor

Pinging @elastic/elastic-agent-control-plane (Team:Elastic-Agent-Control-Plane)

Copy link

Quality Gate passed Quality Gate passed

Issues
0 New issues
0 Fixed issues
0 Accepted issues

Measures
0 Security Hotspots
No data about Coverage
No data about Duplication

See analysis details on SonarQube

Copy link
Member

@pchila pchila left a 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

Comment on lines 1739 to 1742
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=
Copy link
Member

@pchila pchila Jul 15, 2024

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 ?

Copy link
Member Author

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 :(

Copy link
Contributor

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.

@kruskall kruskall merged commit 883c686 into elastic:main Jul 19, 2024
13 checks passed
@kruskall kruskall deleted the drop/golint branch July 19, 2024 11:44
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Projects
None yet
Development

Successfully merging this pull request may close these issues.

5 participants