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
tellmewhy is a tool that detects a go.mod version "bump" and explains which dependency is responsible for the change.
Example from that project's README:
$ tellmewhyError: Go version mismatchThe required Go version has been updated to 1.21.This change is due to an update in the module: github.com/ClickHouse/clickhouse-go/v2
Output from one of the repos I work with (I rolled back to an earlier tag before we upgraded the project to Go 1.22):
$ tellmewhymodule github.com/carlmjohnson/requests has new version: v0.23.5go: upgraded go 1.20 => 1.22go: added toolchain go1.22.6go: upgraded github.com/carlmjohnson/requests v0.23.5 => v0.24.1go: upgraded golang.org/x/net v0.24.0 => v0.28.0go: upgraded golang.org/x/sys v0.19.0 => v0.23.0Error: Go version mismatchThe required Go version has been updated to 1.22.This change is due to an update in the module: github.com/carlmjohnson/requests
The text was updated successfully, but these errors were encountered:
tellmewhy
is a tool that detects a go.mod version "bump" and explains which dependency is responsible for the change.Example from that project's README:
Output from one of the repos I work with (I rolled back to an earlier tag before we upgraded the project to Go 1.22):
The text was updated successfully, but these errors were encountered: