WORKSPACE
code
load("@bazel_tools//tools/build_defs/repo:http.bzl", "http_archive")
http_archive(
name = "io_bazel_rules_go",
sha256 = "b78f77458e77162f45b4564d6b20b6f92f56431ed59eaaab09e7819d1d850313",
urls = [
"https://mirror.bazel.build/github.com/bazel-contrib/rules_go/releases/download/v0.53.0/rules_go-v0.53.0.zip",
"https://github.com/bazel-contrib/rules_go/releases/download/v0.53.0/rules_go-v0.53.0.zip",
],
)
load("@io_bazel_rules_go//go:deps.bzl", "go_register_toolchains", "go_rules_dependencies")
go_rules_dependencies()
go_register_toolchains(version = "1.24.0")
What's Changed
- Improve the comment for
go_sdk.host()
in the installation docs by @stefanobaghino in #4230 - Use same Go SDK as Gazelle for
go_bazel_test
by @fmeum in #4231 - Allow .so files to have more extensions by @matshch in #4232
- Update documentation reference by @phst in #4237
- Update protoc plugins to support Protobuf Editions by @mering in #4236
- Fix bullet point format in readme by @bluec0re in #4239
- sdk: remove logic for Bazel versions below 6.4.0 by @sluongng in #4238
- Add new setting //go/toolchain:sdk_name to allow the selection of a specific Go toolchain by @bluec0re in #4242
- Mention
dev_dependency
ingo_sdk.host
error by @fmeum in #4246 - Keep order for PATH components by @lukasoyen in #4252
- Reporting subtests as they finish by @linzhp in #4250
- Capturing elapsed time of interrupted test cases due to timeout by @linzhp in #4253
- Fix upgrade-dep patching system by @stevebarrau in #4254
- Rewrite examples and new user documentation by @jayconrod in #4251
- Fixing a flaky test by @linzhp in #4257
- Sync test2json from upstream Go by @linzhp in #4261
- Populate timestamp in test.xml by @linzhp in #4259
New Contributors
- @stefanobaghino made their first contribution in #4230
- @matshch made their first contribution in #4232
- @bluec0re made their first contribution in #4239
- @lukasoyen made their first contribution in #4252
- @stevebarrau made their first contribution in #4254
Full Changelog: v0.52.0...v0.53.0