-
Notifications
You must be signed in to change notification settings - Fork 117
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
go.mod: restore Go 1.22 support #262
Conversation
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Thanks @AkihiroSuda
There's some crypto changes that need to be changed for this to pass. See the failing tests. |
https://github.com/diskfs/go-diskfs/actions/runs/11157473532/job/31122367815?pr=262
|
Go 1.22 has not reached its EOL yet. `math/rand/v2.(*Chacha8).Read` is replaced with `crypto/rand.Read`, as the former one is not available in Go 1.22. Signed-off-by: Akihiro Suda <[email protected]>
Yeah. See my comment on the other issue. Just switch it back to crypto/rand in this PR and it should be clean. |
All looks good. You ready for merge @AkihiroSuda ? |
Yes, thanks |
Thanks for driving this @AkihiroSuda |
Go 1.22 has not reached its EOL yet