deps(gazelle): Bump WORKSPACE gazelle version 0.36.0 --> 0.47.0 (to match MODULE.bazel)#3717
Conversation
Note that this implicitly updates go from 1.21.13 to 1.22.9 Steps taken to generate this commit: 1. Manually update go.mod 2. `go mod tidy` 3. bazel run //:gazelle_update_repos
There was a problem hiding this comment.
Code Review
This pull request bumps the bazel-gazelle dependency to 0.47.0 and updates the Go version to 1.22.9. It also removes numerous unused go_repository entries from gazelle/deps.bzl and updates buildtools and doublestar. Feedback was provided regarding the toolchain directive in go.mod, which specifies Go 1.24.13 and contradicts the intended Go 1.22.9 version, potentially causing compatibility issues for users.
|
|
||
| toolchain go1.24.13 |
There was a problem hiding this comment.
The toolchain directive specifies go1.24.13, which is inconsistent with the PR description and the go directive (both indicating a bump to 1.22.9). If the project intends to support Go 1.22.9 as the minimum version, this directive should be removed. Including a newer toolchain version here will force users to have Go 1.24+ installed or downloaded, which may not be desired if the project aims for Go 1.22 compatibility.
Note that this implicitly updates go from 1.21.13 to 1.22.9
Steps taken to generate this commit: