Skip to content

v0.45.0

Compare
Choose a tag to compare
@tyler-french tyler-french released this 12 Jan 19:59
· 4 commits to release-0.45 since this release
e2f0ae6

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