-
-
Notifications
You must be signed in to change notification settings - Fork 3k
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
chore: upgrade to go 1.23 #10486
chore: upgrade to go 1.23 #10486
Conversation
|
||
replace github.com/ipfs/kubo => ../../ | ||
|
||
require ( | ||
github.com/Kubuxu/gocovmerge v0.0.0-20161216165753-7ecaa51963cd | ||
github.com/golangci/golangci-lint v1.59.1 | ||
github.com/golangci/golangci-lint v1.60.2 |
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.
ℹ️ bumping linter and fixing reported complains made CI green
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.
LGTM
* chore: upgrade to go 1.23 https://tip.golang.org/doc/go1.23 * refactor: golangci-lint v1.60.2 (cherry picked from commit 2260e35)
* chore: add Kubo release * chore: update .tool-versions ipfs/kubo#10486
@@ -253,4 +253,4 @@ require ( | |||
lukechampine.com/blake3 v1.3.0 // indirect | |||
) | |||
|
|||
go 1.22 | |||
go 1.23 |
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.
Do we want to require go 1.23 to build kubo? I think we want to keep this at 1.22.
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.
I think its fine to require, we are not a library and https://github.com/ipfs/distributions/blob/master/.tool-versions uses 1.23 now.
GO 1.23 Release Notes: https://tip.golang.org/doc/go1.23
Kubo is not a library, so we can switch to latest version sooner.
This PR aims to see if there are any issues.