github bazelbuild/rules_go v0.45.0

latest releases: v0.47.0, v0.46.0, v0.45.1...
3 months ago

WORKSPACE code

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

http_archive(
    name = "io_bazel_rules_go",
    sha256 = "de7974538c31f76658e0d333086c69efdf6679dbc6a466ac29e65434bf47076d",
    urls = [
        "https://mirror.bazel.build/github.com/bazelbuild/rules_go/releases/download/v0.45.0/rules_go-v0.45.0.zip",
        "https://github.com/bazelbuild/rules_go/releases/download/v0.45.0/rules_go-v0.45.0.zip",
    ],
)

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

go_rules_dependencies()

go_register_toolchains(version = "1.21.6")

What's Changed

  • nogo: use original source files instead of coverage-instrumented by @emmaxy in #3770
  • Allow compilers to be overwritten in go_grpc_library() by @mering in #3812
  • update documentation for 0.44 by @tyler-french in #3813
  • Temporarily undo deprecation of //proto:go_grpc by @fmeum in #3818
  • Rename bazel_features polyfill to prevent conflicts by @fmeum in #3817
  • Handle prerelease versions in polyfill by @illicitonion in #3821
  • Extend gomock to allow passing an source_importpath instead of library when operating in source mode by @therve in #3822
  • Fix coverage collection with modified COVERAGE_DIR env variable by @fmeum in #3820
  • improving logging for subcommand failure by @linzhp in #3824
  • release rules go 0.45.0 by @tyler-french in #3825

New Contributors

Full Changelog: v0.44.2...v0.45.0

Don't miss a new rules_go release

NewReleases is sending notifications on new releases.