Hi community, I've realized that the used Golang v...
# talk-hydra
n
Hi community, I've realized that the used Golang version for the Hydra SDK is deprecated and not the same as inside the product itself. Did I miss something? Is there a plan, to update the versions?
s
n
But it is still the same deprecated Golang version 🙂
s
You can just use a different version, it is at go1.13 in go.mod for compatibility reasons Is there any point in raising that?
n
Okay, but I still don't understand why there are different versions inside the SDK and the product itself. Why is still 1.16 used by the product? 1.16 is deprecated and yes of course you can argue with the same decision as before (compatibility reasons) and it's possible to build with a higher version. For my understanding, it would be more clear if, if the used versions inside the
go. mod
is a non-deprecated and security vulnerability-based version.
s
The minimum version of Go required by the current module.
https://go.dev/doc/modules/gomod-ref It is just the minimal version, and there is no point in raising it You don't want to use go1.13? You don't have to 🤷
👍 1
n
Thank you very much for the information. Now I know, why you use Golang version 1.13 in the file. I was a bit confused that you use two different versions within the SDK and the product, now I know the reason. Thank you for the answer.
s
No problem 😉