Rick-xuy
Rick-xuy
I found that package `github.com/danaugrs/go-tsne/tsne` is placed in module `github.com/danaugrs/go-tsne/tsne`. However, it seems that module `github.com/danaugrs/go-tsne/tsne` is not tagged. According to [Go Modules wiki](https://github.com/golang/go/wiki/Modules#is-it-possible-to-add-a-module-to-a-multi-module-repository), submodule should be tagged like `relative-path-to-root/vX.X.X`....
I found that package `github.com/biezhi/gorm-paginator/pagination` is placed in submodule `github.com/biezhi/gorm-paginator/pagination` instead of root module. However, it seems that submodule `github.com/biezhi/gorm-paginator/pagination` is not tagged. According to [Go Modules wiki](https://github.com/golang/go/wiki/Modules#is-it-possible-to-add-a-module-to-a-multi-module-repository), submodule should...
I found that package `github.com/rancher/system-upgrade-controller/pkg/apis/upgrade.cattle.io/v1` is placed in submodule `github.com/rancher/system-upgrade-controller/pkg/apis` instead of root module. However, it seems that submodule `github.com/rancher/system-upgrade-controller/pkg/apis` is not tagged. According to [Go Modules wiki](https://github.com/golang/go/wiki/Modules#is-it-possible-to-add-a-module-to-a-multi-module-repository), submodule should...
It seems that `v1` module of `github.com/antlr/antlr4/runtime/Go/antlr` has been deprecated. ``` // Deprecated: Please switch to the new v4 module path: github.com/antlr/antlr4/runtime/Go/antlr/v4 - see https://github.com/antlr/antlr4/blob/master/doc/go-target.md module github.com/antlr/antlr4/runtime/Go/antlr ``` The new...
It seems that `v1` module of `github.com/antlr/antlr4/runtime/Go/antlr` has been deprecated. ``` // Deprecated: Please switch to the new v4 module path: github.com/antlr/antlr4/runtime/Go/antlr/v4 - see https://github.com/antlr/antlr4/blob/master/doc/go-target.md module github.com/antlr/antlr4/runtime/Go/antlr ``` The new...
I found that some packages, say `github.com/awslabs/amazon-ecr-credential-helper/ecr-login/api`, are placed in submodule `github.com/awslabs/amazon-ecr-credential-helper/ecr-login` instead of root module. However, it seems that submodule `github.com/awslabs/amazon-ecr-credential-helper/ecr-login` is not tagged. According to [go docs](https://go.dev/doc/modules/managing-source#multiple-module-source), submodule...
I found that packages, say `github.com/open-policy-agent/frameworks/constraint/pkg/client`, are placed in submodule `github.com/open-policy-agent/frameworks/constraint` instead of root module. However, it seems that submodule `github.com/open-policy-agent/frameworks/constraint` is not tagged. According to [Go Modules wiki](https://github.com/golang/go/wiki/Modules#is-it-possible-to-add-a-module-to-a-multi-module-repository), submodule...
`v1`版本的模块“github.com/antlr/antlr4/runtime/Go/antlr”好像已经“deprecated”了 ``` // Deprecated: Please switch to the new v4 module path: github.com/antlr/antlr4/runtime/Go/antlr/v4 - see https://github.com/antlr/antlr4/blob/master/doc/go-target.md module github.com/antlr/antlr4/runtime/Go/antlr ``` 新的`v4`模块似乎对Go下游兼容性更好而且能有效避免`ambiguous import`的问题。
I found that package `github.com/hyperledger/aries-framework-go/spi/storage` is placed in submodule `github.com/hyperledger/aries-framework-go/spi` instead of root module. However, it seems that submodule `github.com/hyperledger/aries-framework-go/spi` is not tagged. According to [Go Modules wiki](https://github.com/golang/go/wiki/Modules#is-it-possible-to-add-a-module-to-a-multi-module-repository), submodule should...
There is a require line in go.mod pointing to module `github.com/ccding/go-stun/stun`. ``` github.com/ccding/go-stun/stun v0.0.0-20200514191101-4dc67bcdb029 ``` It is a submodule version introduced by mistake. `Ccding/go-stun` firstly created `go.mod` under directory `stun`...