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
At the moment of this writing, supported Go version are 1.18 and 1.19. Golang has a support policy of N-1. From their docs:
Each major Go release is supported until there are two newer major releases.
One benefit of playing this story is a reduced go.sum file, which in turn will "fix" CVEs in security scanners. Note these scanners would report CVEs in old EOL'ed Go versions, the client library code is fine.
In Go 1.18 we can also replace interface{} with any, and explore the option of using generic functions.
The text was updated successfully, but these errors were encountered:
At the moment of this writing, supported Go version are 1.18 and 1.19. Golang has a support policy of N-1. From their docs:
One benefit of playing this story is a reduced
go.sum
file, which in turn will "fix" CVEs in security scanners. Note these scanners would report CVEs in old EOL'ed Go versions, the client library code is fine.In Go 1.18 we can also replace
interface{}
withany
, and explore the option of using generic functions.The text was updated successfully, but these errors were encountered: