Skip to content

v0.55.0

Compare
Choose a tag to compare
@tyler-french tyler-french released this 04 Jun 19:05
· 1 commit to release-0.55 since this release
8e7d9cd

WORKSPACE code

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

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

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

go_rules_dependencies()

go_register_toolchains(version = "1.24.3")

What's Changed

  • Checking test suite duration by @linzhp in #4323
  • Revert "Fail when expected files are not produced by protoc (#4287)" by @linzhp in #4324
  • Add imacros to absolutized cgo env list by @LaurenceTews in #4325
  • go_cross: allow transition on compilation_mode by @sluongng in #4320
  • Pass config to subanalyzers by @grzegorzsn in #4330
  • Update BCR presumit matrix by @linzhp in #4331
  • Work around incompatibility between zlib and clang 17 by @fmeum in #4332
  • Export new location of support files needed for using Go's WASM output. by @malt3 in #4322
  • Fix incompatibility with --incompatible_auto_exec_groups by @fmeum in #4141
  • Re-spawned test binary should not break PWD by @abhinav in #4336
  • Only emit patch file if nogo has fixes by @fmeum in #4269
  • Rename out to out_diagnostics by @fmeum in #4341
  • Remove rules_proto by @comius in #4339
  • Remove shadow analyzer from TOOLS_NOGO by @gpanders in #4344
  • Disable pkgfact analyzer by @fmeum in #4349
  • Discourage references to the default SDK by @fmeum in #4351
  • go/tools/gopackagesdriver: Adding Cgo support by @r-hang in #4338
  • Pass headers along as transitive dependencies by @patrickmscott in #4298
  • Allowing a go_proto_compiler to indicate whether it always generate files by @linzhp in #4364
  • fix: merge '-Wl,' with next value so extldflags can accept flags like " -Wl,xxxx" by @luzhanning in #4367

New Contributors

Full Changelog: v0.54.1...v0.55.0