v0.54.0
·
2 commits
to release-0.54
since this release
WORKSPACE
code
load("@bazel_tools//tools/build_defs/repo:http.bzl", "http_archive")
http_archive(
name = "io_bazel_rules_go",
sha256 = "f2d15bea3e241aa0e3a90fb17a82e6a8ab12214789f6aeddd53b8d04316d2b7c",
urls = [
"https://mirror.bazel.build/github.com/bazel-contrib/rules_go/releases/download/v0.54.0/rules_go-v0.54.0.zip",
"https://github.com/bazel-contrib/rules_go/releases/download/v0.54.0/rules_go-v0.54.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.2")
What's Changed
- Mark gomock() hidden targets manual by @EdSchouten in #4265
- Bump golang.org/x/tools to a version that supports Go 1.24.0. by @benjaminp in #4266
- Avoid Gazelle recognizing an internal repo as a Go SDK repo by @fmeum in #4264
- Generate exports for stdlib by @jgautier-dd in #4244
- Don't swallow errors when running nogo by @fmeum in #4271
- gopackagesdriver: skip root packages that can't be built by @jayconrod in #3806
- Grouping subtests using test suites in test.xml by @linzhp in #4275
- Update Go SDKs by @fmeum in #4272
- Preserve
nogo
runfiles by @fmeum in #4270 - Generate facts for targets not in nogo scope by @fmeum in #4268
- Use upstream definitions, fix gopackagesdriver by @rv32ima in #4185
- Bug fix: proto: add gofeaturespb as well-known type; Go Protobuf ships it by @stapelberg in #4279
- Calculating the test suite duraion from timestamps by @linzhp in #4281
- Stop using Label.workspace_name by @EdSchouten in #4282
- Fail when expected files are not produced by protoc by @linzhp in #4287
- add workspaceFiles to vim configuration documentation by @rv32ima in #4290
- Fix goos and goarch options in go_wrap_sdk by @patrickmscott in #4295
- Escape backslashes and newlines in response files by @alopezz in #4297
- Add wrap extension tag to implement go_wrap_sdk by @patrickmscott in #4301
- fix the reporting message for getFixes by @peng3141 in #4299
- Producing "fail" event when a test case panics by @linzhp in #4306
- fix(cgo): exclude crypto/internal/sysrand/internal/seccomp from SDK srcs by @adam-azarchs in #4311
- fix(gomock): add missing mnemonic to gomock action by @tyler-french in #4313
- go_sdk: Pick a consistent repo name to improve cachability by @zecke in #4314
- Add
go_sdk.from_file
to read the SDK version fromgo.mod
. by @jaqx0r in #4305 - deps: Get repositories.bzl in sync with go.mod by @adam-azarchs in #4316
New Contributors
- @jgautier-dd made their first contribution in #4244
- @rv32ima made their first contribution in #4185
- @stapelberg made their first contribution in #4279
- @alopezz made their first contribution in #4297
- @jaqx0r made their first contribution in #4305
Full Changelog: v0.53.0...v0.54.0