You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
When I do a get on this package, I get errors indicating that the go.mod had non v11 module path.
This also results in other side effects for teams that have rennovate bot in their workflow.'
This will not work as the module path doesn't have v11 suffix
Expected behavior
go get gopkg.in/asaskevich/govalidator v11.0.1 and go get gopkg.in/asaskevich/govalidator.v11 should work
Current behavior
go get gopkg.in/asaskevich/govalidator.v11
go: gopkg.in/asaskevich/[email protected]: invalid version: go.mod has non-....v11 module path "github.com/asaskevich/govalidator" at revision v11.0.1
go get gopkg.in/asaskevich/govalidator v11.0.1
go: gopkg.in/asaskevich/govalidator: unrecognized import path "gopkg.in": parse https://gopkg.in/?go-get=1: no go-import meta tags ()
go: unrecognized import path "v11.0.1": https fetch: Get "https://v11.0.1/?go-get=1": dial tcp: lookup v11.0.1: no such host
How to reproduce
Run either of these commands
go get gopkg.in/asaskevich/govalidator v11.0.1
go get gopkg.in/asaskevich/govalidator v11.0.1
Is there a reason for not versioning the module path ?
The text was updated successfully, but these errors were encountered:
BC Break Report
This package is not versioned in the go.mod
Summary
When I do a get on this package, I get errors indicating that the go.mod had non v11 module path.
This also results in other side effects for teams that have rennovate bot in their workflow.'
For example:
This will not work as the module path doesn't have v11 suffix
Expected behavior
go get gopkg.in/asaskevich/govalidator v11.0.1
andgo get gopkg.in/asaskevich/govalidator.v11
should workCurrent behavior
How to reproduce
Run either of these commands
Is there a reason for not versioning the module path ?
The text was updated successfully, but these errors were encountered: