-
Notifications
You must be signed in to change notification settings - Fork 9.8k
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
[3.5] Fix dependency inconsistency detection and add make verify-dep #18207
Merged
ahrtr
merged 4 commits into
etcd-io:release-3.5
from
henrybear327:ci/fix_dep_inconsistency
Jun 20, 2024
Merged
[3.5] Fix dependency inconsistency detection and add make verify-dep #18207
ahrtr
merged 4 commits into
etcd-io:release-3.5
from
henrybear327:ci/fix_dep_inconsistency
Jun 20, 2024
Conversation
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/cc @ivanvc |
Makefile's target `verify-dep` current behavior is to use `go list` to check consistent dependency versions from direct dependencies. Ignoring indirect dependencies in a multi-module project could lead to version mismatches. If module A imports module B, module B's dependency will be an indirect dependency in module A. Which can potentially have a version mismatch. Therefore, use `go mod edit` with indirect dependencies, too. So it can work with all dependencies defined in go.mod. Fix displaying dependencies with mismatches, as the old code was searching with grep just for the prefix, which would show other dependencies that shared the same prefix. Reference: - etcd-io#18205 Signed-off-by: Ivan Valdes <ivan@vald.es> Signed-off-by: Chun-Hung Tseng <henrybear327@gmail.com>
henrybear327
force-pushed
the
ci/fix_dep_inconsistency
branch
from
June 19, 2024 21:25
00413f7
to
fb3fe32
Compare
Discovered several inconsistencies
Update: fixed with subsequent commits |
Signed-off-by: Chun-Hung Tseng <henrybear327@gmail.com>
…on v0.0.0-20180306012644-bacd9c7ef1dd Signed-off-by: Chun-Hung Tseng <henrybear327@gmail.com>
Signed-off-by: Chun-Hung Tseng <henrybear327@gmail.com>
LGTM. Thanks, @henrybear327 |
ahrtr
changed the title
Fix dependency inconsistency detection and add make verify-dep
[3.5] Fix dependency inconsistency detection and add make verify-dep
Jun 20, 2024
ahrtr
approved these changes
Jun 20, 2024
jmhbnz
approved these changes
Jun 20, 2024
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.
LGTM - Thanks @henrybear327
Link to #18180 |
aneesh1
pushed a commit
to DataDog/etcd
that referenced
this pull request
Sep 24, 2024
…stency [3.5] Fix dependency inconsistency detection and add make verify-dep
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Makefile's target
verify-dep
current behavior is to usego list
to check consistent dependency versions from direct dependencies. Ignoring indirect dependencies in a multi-module project could lead to version mismatches. If module A imports module B, module B's dependency will be an indirect dependency in module A. Which can potentially have a version mismatch. Therefore, usego mod edit
with indirect dependencies, too. So it can work with all dependencies defined in go.mod.Fix displaying dependencies with mismatches, as the old code was searching with grep just for the prefix, which would show other dependencies that shared the same prefix.
Reference:
verify-dep
target #18205Please read https://github.com/etcd-io/etcd/blob/main/CONTRIBUTING.md#contribution-flow.