MODULE.bazel
code
bazel_dep(name = "rules_go", version = "0.52.0")
WORKSPACE
code
load("@bazel_tools//tools/build_defs/repo:http.bzl", "http_archive")
http_archive(
name = "io_bazel_rules_go",
sha256 = "90fe8fb402dee957a375f3eb8511455bd738c7ed562695f4dd117ac7d2d833b1",
urls = [
"https://mirror.bazel.build/github.com/bazel-contrib/rules_go/releases/download/v0.52.0/rules_go-v0.52.0.zip",
"https://github.com/bazel-contrib/rules_go/releases/download/v0.52.0/rules_go-v0.52.0.zip",
],
)
load("@io_bazel_rules_go//go:deps.bzl", "go_register_toolchains", "go_rules_dependencies")
go_rules_dependencies()
go_register_toolchains(version = "1.23.4")
What's Changed
- Update embedding.md to correct typo by @mju in #4188
- Support Go 1.24's wasip1 reactors by @leonm1 in #4201
- fix: Make context.mode always be GoConfigInfo by @dzbarsky in #4203
- chore: remove Travis-specific install docs by @alexeagle in #4208
- Undo API-breaking change to go_sdk experiments attribute by @dzbarsky in #4210
- docs: update core link reference from .bzl to .rst by @athongsavath in #4214
- chore(docs): move WORKSPACE docs out of primary README by @alexeagle in #4209
- Disable mac CI, update Linux by @linzhp in #4220
- feat: Saving the nogo fixes by @peng3141 in #4102
- Build stdlib with msan support by @smertnik3sh in #4218
- Get
go_bazel_test
s to pass with Bzlmod by @fmeum in #4223
New Contributors
- @mju made their first contribution in #4188
- @leonm1 made their first contribution in #4201
- @athongsavath made their first contribution in #4214
- @peng3141 made their first contribution in #4102
- @smertnik3sh made their first contribution in #4218
Full Changelog: v0.51.0...v0.52.0