v0.49.0
WORKSPACE
code
load("@bazel_tools//tools/build_defs/repo:http.bzl", "http_archive")
http_archive(
name = "io_bazel_rules_go",
sha256 = "d93ef02f1e72c82d8bb3d5169519b36167b33cf68c252525e3b9d3d5dd143de7",
urls = [
"https://mirror.bazel.build/github.com/bazelbuild/rules_go/releases/download/v0.49.0/rules_go-v0.49.0.zip",
"https://github.com/bazelbuild/rules_go/releases/download/v0.49.0/rules_go-v0.49.0.zip",
],
)
load("@io_bazel_rules_go//go:deps.bzl", "go_register_toolchains", "go_rules_dependencies")
go_rules_dependencies()
go_register_toolchains(version = "1.22.5")
What's Changed
- Add support for path mapping by @fmeum in #3915
- Introduce rules_go_unsupported_feature by @cramertj in #3955
- Automatically run
bazel mod tidy
in@rules_go//go
by @fmeum in #3927 - Fix revive warning in testmain.go files by @EdSchouten in #3958
- Revert "feat(mode): add
purego
tag whenpure
(#3901)" by @fmeum in #3961 - prepare patch release 0.48.1 by @tyler-french in #3963
- Fix broken link to https://bazel.build/concepts/dependencies#data-dependencies by @alexbozhenko in #3960
- docs: Discourage use
go_sdk.host()
in bzlmod.md (see #713) by @vorburger in #3968 - Add linux/ppc64le to GOARCH constraints by @c16a in #3975
- gopackagesdriver: Make kind query regexes anchored by @jscissr in #3978
- Add a full
fs.FS
implementation torunfiles
by @fmeum in #3969 - update readmes for latest release by @tyler-french in #3988
- prepare release 0.49.0 by @tyler-french in #3989
New Contributors
- @cramertj made their first contribution in #3955
- @alexbozhenko made their first contribution in #3960
- @vorburger made their first contribution in #3968
- @c16a made their first contribution in #3975
- @jscissr made their first contribution in #3978
Full Changelog: v0.48.0...v0.49.0