Skip to content

v0.24.3

Pre-release
Pre-release
Compare
Choose a tag to compare
@jayconrod jayconrod released this 22 Sep 21:48
· 35 commits to release-0.24 since this release

Bug fixes

  • The GoPath action uses absolute paths to mitigate path length limits on Windows (thanks @Xjs).
  • The file lib/time/zoneinfo.zip is now exported from downloaded Go distributions (thanks @andrewtar).
  • Multiline package conflict error messages are correctly passed to the builder when Bazel param files are used.
  • Compiler errors are redirected from stdout to stderr.

WORKSPACE code

load("@bazel_tools//tools/build_defs/repo:http.bzl", "http_archive")

http_archive(
    name = "io_bazel_rules_go",
    sha256 = "b725e6497741d7fc2d55fcc29a276627d10e43fa5d0bb692692890ae30d98d00",
    urls = [
        "https://mirror.bazel.build/github.com/bazelbuild/rules_go/releases/download/v0.24.3/rules_go-v0.24.3.tar.gz",
        "https://github.com/bazelbuild/rules_go/releases/download/v0.24.3/rules_go-v0.24.3.tar.gz",
    ],
)

load("@io_bazel_rules_go//go:deps.bzl", "go_register_toolchains", "go_rules_dependencies")

go_rules_dependencies()

go_register_toolchains()