WORKSPACE
code
load("@bazel_tools//tools/build_defs/repo:http.bzl", "http_archive")
http_archive(
name = "io_bazel_rules_go",
sha256 = "80a98277ad1311dacd837f9b16db62887702e9f1d1c4c9f796d0121a46c8e184",
urls = [
"https://mirror.bazel.build/github.com/bazelbuild/rules_go/releases/download/v0.46.0/rules_go-v0.46.0.zip",
"https://github.com/bazelbuild/rules_go/releases/download/v0.46.0/rules_go-v0.46.0.zip",
],
)
load("@io_bazel_rules_go//go:deps.bzl", "go_register_toolchains", "go_rules_dependencies")
go_rules_dependencies()
go_register_toolchains(version = "1.22.0")
What's Changed
- Support custom
GOARM
architecture levels via platform constraints by @LINKIWI in #3837 - Emit nogo facts into a separate archive by @fmeum in #3789
- go_test: ensure external source compilation has data by @sluongng in #3848
- Fix invocation of assembler for go1.22 by @jquirke in #3756
- nogo: Create a go_register_nogo wrapper for WORKSPACE users. by @DolceTriade in #3842
- prepare minor release 0.46 by @tyler-french in #3854
New Contributors
Full Changelog: v0.45.1...v0.46.0