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
go get github.com/FusionAuth/go-client/pkg/[email protected]
go: downloading github.com/FusionAuth/go-client v0.0.0-20191211173910-6751b41cf288
However, that still pins releases as a pseudo version.
The side effect of this, is it's hard to know from what's currently a work-in-progress on the main branch vs a stable release, and even harder to pin it correctly in a go.mod
To correctly use module versions, tags should be released in the format of v1.12.1, instead of the format being used 1.12.1 (missing the v prefix).
Can you please release the latest stable as a properly named tag?
Currently, if you
go get
this package, the value returned is:Which matches the latest sha in
main
20df799
, following pseudo-versions in go modules.https://pkg.go.dev/github.com/FusionAuth/go-client/pkg/fusionauth?tab=versions
This would normally not be a huge deal, except that the latest version is returning this error for my application:
Which we can still:
However, that still pins releases as a pseudo version.
The side effect of this, is it's hard to know from what's currently a work-in-progress on the
main
branch vs a stable release, and even harder to pin it correctly in ago.mod
To correctly use module versions, tags should be released in the format of
v1.12.1
, instead of the format being used1.12.1
(missing thev
prefix).Can you please release the latest stable as a properly named tag?
https://go.dev/ref/mod
The text was updated successfully, but these errors were encountered: