-
-
Notifications
You must be signed in to change notification settings - Fork 5.5k
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
Use vendored go-swagger #8087
Use vendored go-swagger #8087
Conversation
Codecov Report
@@ Coverage Diff @@
## master #8087 +/- ##
==========================================
- Coverage 41.78% 41.78% -0.01%
==========================================
Files 481 481
Lines 64425 64425
==========================================
- Hits 26919 26917 -2
- Misses 34036 34042 +6
+ Partials 3470 3466 -4
Continue to review full report at Codecov.
|
This seems like a maybe more proper solution thanks! I also worry a little that it seems something in the swagger dependency tree seems to ask for 'latest' version of things like x/sys so each swagger update always brings in whatever the last commit to those at the time which feels like it could introduce extra bugs for less tested low level code. For this example, why does this release of swagger from 2 weeks ago now require we use a commit of x/sys from a few hours ago? It seems like the dep should be on the latest release branch maybe, like https://github.com/golang/sys/tree/release-branch.go1.13 Or whatever version of go we are using maybe?: https://github.com/golang/sys/branches Maybe this is not a big deal because changes to those libraries are minimal or considered stable, but it seems like having a 'latest' version anywhere in the dependency tree is not right and causes us to just update some vendor libs unrelated to changes because something wrongly asked for the latest version (and could lead to extra harder to track bugs). |
Yes I don't known also because it doesn't seems to follow go.mod definition (even go-swagger go.mod). What I suspect is that an other deps doesn't lock those libs and when go get -u was triggered it update those libs but that seems strange. |
Right, but we will still add a dep on the latest commit for these libs when swagger is updated (like in this PR, which means we are now are using even newer x/sys code). So it will be good for now but happen again when we update to a new version of swagger. This probably happens for other deps too when they are updated in vendor. I don't mean to block the PR, but I think in general we should be aware if things are pulling in 'latest' versions of dependencies and try to understand why or avoid it if possible. I still like this PR for vendor swagger and that seems good idea going forward -- I just worry when changes also update low level libraries or other packages in an unrelated way. I'm not familiar with the go tools unfortunately, so it isn't obvious what is saying to get the latest version of something. Swagger go.mod doesn't require this version: But something else in the tree must. If anybody knows how to track that maybe it could be fixed upstream somewhere. |
Co-Authored-By: techknowlogick <[email protected]>
I will have time to do so in few hours. |
* Use vendored go-swagger * vendor go-swagger * revert un wanteed change * remove un-needed GO111MODULE * Update Makefile Co-Authored-By: techknowlogick <[email protected]>
* Use vendored go-swagger (#8087) * Use vendored go-swagger * vendor go-swagger * revert un wanteed change * remove un-needed GO111MODULE * Update Makefile Co-Authored-By: techknowlogick <[email protected]> * re-generate swagger file
Another solution to #8078. I think it is the recommended way to use vendored tools. (I will try to find the docs saying that)
Edit :
Docs link : https://github.com/golang/go/wiki/Modules#how-can-i-track-tool-dependencies-for-a-module