v0.50.0
tyler-french
released this
30 Aug 18:56
·
4 commits
to release-0.50
since this release
WORKSPACE
code
load("@bazel_tools//tools/build_defs/repo:http.bzl", "http_archive")
http_archive(
name = "io_bazel_rules_go",
sha256 = "67b4d1f517ba73e0a92eb2f57d821f2ddc21f5bc2bd7a231573f11bd8758192e",
urls = [
"https://mirror.bazel.build/github.com/bazelbuild/rules_go/releases/download/v0.50.0/rules_go-v0.50.0.zip",
"https://github.com/bazelbuild/rules_go/releases/download/v0.50.0/rules_go-v0.50.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.0")
What's Changed
- Break reliance on GOROOT_FINAL by @JacobOaks in #3984
- Migrate to macos_arm64 by @meteorcloudy in #3990
- Support matching release candidate toolchain versions by @JacobOaks in #3998
- rm crosstool by @sluongng in #3986
- fix(timeout.go): remove redundant leaked go func in RegisterTimeoutHandler by @Roytangrb in #4004
- Run nogo in a separate validation action by @fmeum in #3995
New Contributors
- @JacobOaks made their first contribution in #3984
- @Roytangrb made their first contribution in #4004
Full Changelog: release-0.49...release-0.50