Closed KateGo520 closed 4 years ago
@liqiang-fit2cloud @q4speed Could you help me review this issue? Thx :p
Hi, We have just migrated to go mod from go dep and upgrade the module github.com/urfave/cli/ to the latest version v2.2.0. Please check out these two commits https://github.com/KubeOperator/webkubectl/commit/1db4d60e87b4a543b6b7f2f78405ff7dc2d9f22f https://github.com/KubeOperator/webkubectl/commit/ecb3ed43b20668c3df76bb7f1156940f9348d949 Hope this would help you 😄
@liqiang-fit2cloud Thank you very much for doing this. It helped a lot! By the way, I see your latest version is v2.5.0, so comply with the specification of "Releasing Modules for v2 or higher" available in the Modules documentation. Quoting the specification:
A package that has migrated to Go Modules must include the major version in the import path to reference any v2+ modules. For example, Repo github.com/my/module migrated to Modules on version v3.x.y. Then this repo should declare its module path with MAJOR version suffix "/v3" (e.g., module
github.com/my/module/v3
), and its downstream project should use"github.com/my/module/v3/mypkg"
to import this repo’s package.
Maybe, you need to add "/v2" in your module path, if you tag with version v2+. Hope this would help you. Wish you every success in migrating to Go Modules!
Ok, we will do it sometime.
(The purpose of this report is to alert
KubeOperator/webkubectl
to the possible problems whenKubeOperator/webkubectl
try to upgrade the following dependencies)An error will happen when upgrading library github.com/codegangsta/cli:
github.com/codegangsta/cli
-Now Moved To: github.com/urfave/cli -Latest Version: v2.2.0 (Latest commit d648edd on 6 Mar) -Where did you use it: https://github.com/KubeOperator/webkubectl/search?q=codegangsta%2Fcli&unscoped_q=codegangsta%2Fcli -Detail:
NOTICE HERE The
github.com/codegangsta/cli
makes it very difficult for downstream module users to useKubeOperator/webkubectl
. Force downstream module users to use vendor if they want to useKubeOperator/webkubectl
.I investigated the libraries (urfave/cli >= v1.22.1) release information and found the root cause of this issue is that----
These dependencies all added Go modules in the recent versions.
They all comply with the specification of "Releasing Modules for v2 or higher" available in the Modules documentation. Quoting the specification:
This "github.com/my/module/v3/mypkg" is not the
physical path
. So earlier versions of Go (including those that don't have minimal module awareness) plus all tooling (like dep, glide, govendor, etc) don't haveminimal module awareness
as of now and therefore don't handle import paths correctly See golang/dep#1962, golang/dep#2139.Solution
1. Migrate to Go Modules.
Go Modules is the general trend of ecosystem, if you want a better upgrade package experience, migrating to Go Modules is a good choice.
Migrate to modules will be accompanied by the introduction of virtual paths(It was discussed above).
Then the downstream projects might be negatively affected in their building if they are module-unaware (Go versions older than 1.9.7 and 1.10.3; Or use third-party dependency management tools, such as: Dep, glide, govendor…).
2. Maintaining v2+ libraries that use Go Modules in Vendor directories.
If
KubeOperator/webkubectl
want to keep using the dependency manage tools (like dep, glide, govendor, etc), and still want to upgrade the dependencies, can choose this fix strategy. Manually download the dependencies into the vendor directory and do compatibility dispose(materialize the virtual path or delete the virtual part of the path). Avoid fetching the dependencies by virtual import paths. This may add some maintenance overhead compared to using modules.As the import paths have different meanings between the projects adopting module repos and the non-module repos, materialize the virtual path is a better way to solve the issue, while ensuring compatibility with downstream module users. A textbook example provided by repo
github.com/moby/moby
is here: https://github.com/moby/moby/blob/master/VENDORING.md https://github.com/moby/moby/blob/master/vendor.conf In the vendor directory,github.com/moby/moby
adds the /vN subdirectory in the corresponding dependencies. This will help more downstream module users to work well with your package.3. Request upstream to do compatibility processing.
The
codegangsta/cli
have 225 module-unaware users in github, such as: FINTLabs/fint-oauth-token, rancher/share-mnt, wushuai826/wushuai… https://github.com/search?q=codegangsta%2Fcli+filename%3Avendor.conf+filename%3Avendor.json+filename%3Aglide.toml+filename%3AGodep.toml+filename%3AGodep.jsonSummary
You can make a choice when you meet this DM issues by balancing your own development schedules/mode against the affects on the downstream projects.
For this issue, Solution 1 can maximize your benefits and with minimal impacts to your downstream projects the ecosystem.
References
Do you plan to upgrade the libraries in near future? Hope this issue report can help you ^_^ Thank you very much for your attention.
Best regards, Kate