saml
saml copied to clipboard
Unable to go get samlidp package
go get -v github.com/crewjam/saml/samlidp go: github.com/crewjam/saml/[email protected] requires github.com/crewjam/[email protected]: invalid version: unknown revision 000000000000
Cannot use the samlidp module in version v0.4.8 or v0.4.7 downgrading my version in go.mod to v0.4.6 allows me to use the samlidp module
same mistake
same here
A bit of a hack, but I've worked around this using the replace directive:
go 1.18
require (
github.com/crewjam/saml v0.0.0-00010101000000-000000000000
github.com/crewjam/saml/samlidp v0.0.0-20220625143334-5e0ffd290abf
)
replace github.com/crewjam/saml v0.0.0-00010101000000-000000000000 => github.com/crewjam/saml v0.4.8
An example showing it's broken: https://go.dev/play/p/7X9mO34y5lf
@crewjam we really can't upgrade to
github.com/crewjam/saml v0.4.10
still stuck at v0.4.6
This is not fixed yet. I will be fixed as soon as you (@crewjam ) create a fresh release. Please do so! Thanks.
done. :)
This is still broken, @crewjam.