MicahParks / keyfunc

Create a jwt.Keyfunc for JWT parsing with a JWK Set or given cryptographic keys (like HMAC) in Golang.
Apache License 2.0
265 stars 46 forks source link

Remove patch version from go directive in go.mod #105

Closed joshkaplinsky closed 8 months ago

joshkaplinsky commented 8 months ago

Is it possible to remove the patch version from the go directive in the go.mod file (e.g., 1.21.5 -> 1.21)? This requires users of this package to specify a Go version greater than or equal to the required version. In our workflow, we do not always have the latest patch version immediately available to build against.

MicahParks commented 8 months ago

Yeah, I can remove that later today (eastern USA). I don't think it would be considered a breaking change.

joshkaplinsky commented 8 months ago

Thanks, much appreciated! I agree, it shouldn't be a breaking change. Any patch version would be compatible with the same minor version.

MicahParks commented 8 months ago

This change was made in this PR: https://github.com/MicahParks/keyfunc/pull/106

Please see the newest tag v3.2.4

joshkaplinsky commented 8 months ago

Thank you for the fast response!