WORKSPACE
code
load("@bazel_tools//tools/build_defs/repo:http.bzl", "http_archive")
http_archive(
name = "io_bazel_rules_go",
sha256 = "a729c8ed2447c90fe140077689079ca0acfb7580ec41637f312d650ce9d93d96",
urls = [
"https://mirror.bazel.build/github.com/bazel-contrib/rules_go/releases/download/v0.57.0/rules_go-v0.57.0.zip",
"https://github.com/bazel-contrib/rules_go/releases/download/v0.57.0/rules_go-v0.57.0.zip",
],
)
load("@io_bazel_rules_go//go:deps.bzl", "go_register_toolchains", "go_rules_dependencies")
go_rules_dependencies()
go_register_toolchains(version = "1.25.0")
# Create the host platform repository transitively required by rules_go.
load("@bazel_tools//tools/build_defs/repo:utils.bzl", "maybe")
load("@platforms//host:extension.bzl", "host_platform_repo")
maybe(
host_platform_repo,
name = "host_platform",
)
What's Changed
- wrap_sdk: make root_files a string_keyed_label_dict by @novas0x2a in #4419
- Fix generation of facts file when diagnostics are ignored by @lbcjbb in #4422
- Fix “deprecated” comments. by @phst in #4423
- Compile
cmd/pack
from source and update to Go 1.25 by @fmeum in #4425 - Find runfiles when a binary is executed from PATH by @fmeum in #4426
New Contributors
- @novas0x2a made their first contribution in #4419
- @lbcjbb made their first contribution in #4422
Full Changelog: v0.56.1...v0.57.0