Running make go-run-community on a fresh checkout with Go 1.26.4 fails during compilation.
go.mod specifies Go 1.25.7 as the minimum supported version, and the development guide directs contributors to use the version from go.mod. However, building with the current stable Go release (1.26.4) fails because the project resolves github.com/bytedance/sonic v1.14.1.
This appears to be the same upstream compatibility issue tracked by the Sonic project for Go 1.26.
It may be helpful to either:
- explicitly document that Go 1.26 is not yet supported for local development, or
- update the dependency if Go 1.26 support is intended.
Running
make go-run-communityon a fresh checkout withGo 1.26.4fails during compilation.go.modspecifies Go 1.25.7 as the minimum supported version, and the development guide directs contributors to use the version from go.mod. However, building with the current stableGo release (1.26.4)fails because the project resolvesgithub.com/bytedance/sonic v1.14.1.This appears to be the same upstream compatibility issue tracked by the Sonic project for Go 1.26.
It may be helpful to either: