bazelbuild/rules_go (github.com/bazelbuild/rules_go)
### [`v0.50.1`](https://redirect.github.com/bazelbuild/rules_go/releases/tag/v0.50.1)
[Compare Source](https://redirect.github.com/bazelbuild/rules_go/compare/v0.50.0...v0.50.1)
#### `WORKSPACE` code
load("@bazel_tools//tools/build_defs/repo:http.bzl", "http_archive")
http_archive(
name = "io_bazel_rules_go",
sha256 = "f4a9314518ca6acfa16cc4ab43b0b8ce1e4ea64b81c38d8a3772883f153346b8",
urls = [
"https://mirror.bazel.build/github.com/bazelbuild/rules_go/releases/download/v0.50.1/rules_go-v0.50.1.zip",
"https://github.com/bazelbuild/rules_go/releases/download/v0.50.1/rules_go-v0.50.1.zip",
],
)
load("@io_bazel_rules_go//go:deps.bzl", "go_register_toolchains", "go_rules_dependencies")
go_rules_dependencies()
go_register_toolchains(version = "1.23.0")
#### Fixes Included:
[#4081](https://redirect.github.com/bazelbuild/rules_go/issues/4081)
[#4082](https://redirect.github.com/bazelbuild/rules_go/issues/4082)
[#4083](https://redirect.github.com/bazelbuild/rules_go/issues/4083)
**Full Changelog**: https://github.com/bazelbuild/rules_go/compare/v0.50.0...v0.50.1
### [`v0.50.0`](https://redirect.github.com/bazelbuild/rules_go/releases/tag/v0.50.0)
[Compare Source](https://redirect.github.com/bazelbuild/rules_go/compare/v0.49.0...v0.50.0)
#### `WORKSPACE` code
load("@bazel_tools//tools/build_defs/repo:http.bzl", "http_archive")
http_archive(
name = "io_bazel_rules_go",
sha256 = "67b4d1f517ba73e0a92eb2f57d821f2ddc21f5bc2bd7a231573f11bd8758192e",
urls = [
"https://mirror.bazel.build/github.com/bazelbuild/rules_go/releases/download/v0.50.0/rules_go-v0.50.0.zip",
"https://github.com/bazelbuild/rules_go/releases/download/v0.50.0/rules_go-v0.50.0.zip",
],
)
load("@io_bazel_rules_go//go:deps.bzl", "go_register_toolchains", "go_rules_dependencies")
go_rules_dependencies()
go_register_toolchains(version = "1.23.0")
#### What's Changed
- Break reliance on GOROOT_FINAL by [@JacobOaks](https://redirect.github.com/JacobOaks) in [https://github.com/bazelbuild/rules_go/pull/3984](https://redirect.github.com/bazelbuild/rules_go/pull/3984)
- Migrate to macos_arm64 by [@meteorcloudy](https://redirect.github.com/meteorcloudy) in [https://github.com/bazelbuild/rules_go/pull/3990](https://redirect.github.com/bazelbuild/rules_go/pull/3990)
- Support matching release candidate toolchain versions by [@JacobOaks](https://redirect.github.com/JacobOaks) in [https://github.com/bazelbuild/rules_go/pull/3998](https://redirect.github.com/bazelbuild/rules_go/pull/3998)
- rm crosstool by [@sluongng](https://redirect.github.com/sluongng) in [https://github.com/bazelbuild/rules_go/pull/3986](https://redirect.github.com/bazelbuild/rules_go/pull/3986)
- fix(timeout.go): remove redundant leaked go func in RegisterTimeoutHandler by [@Roytangrb](https://redirect.github.com/Roytangrb) in [https://github.com/bazelbuild/rules_go/pull/4004](https://redirect.github.com/bazelbuild/rules_go/pull/4004)
- Run nogo in a separate validation action by [@fmeum](https://redirect.github.com/fmeum) in [https://github.com/bazelbuild/rules_go/pull/3995](https://redirect.github.com/bazelbuild/rules_go/pull/3995)
#### New Contributors
- [@JacobOaks](https://redirect.github.com/JacobOaks) made their first contribution in [https://github.com/bazelbuild/rules_go/pull/3984](https://redirect.github.com/bazelbuild/rules_go/pull/3984)
- [@Roytangrb](https://redirect.github.com/Roytangrb) made their first contribution in [https://github.com/bazelbuild/rules_go/pull/4004](https://redirect.github.com/bazelbuild/rules_go/pull/4004)
**Full Changelog**: https://github.com/bazelbuild/rules_go/compare/release-0.49...release-0.50
### [`v0.49.0`](https://redirect.github.com/bazelbuild/rules_go/releases/tag/v0.49.0)
[Compare Source](https://redirect.github.com/bazelbuild/rules_go/compare/v0.48.1...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](https://redirect.github.com/fmeum) in [https://github.com/bazelbuild/rules_go/pull/3915](https://redirect.github.com/bazelbuild/rules_go/pull/3915)
- Introduce rules_go_unsupported_feature by [@cramertj](https://redirect.github.com/cramertj) in [https://github.com/bazelbuild/rules_go/pull/3955](https://redirect.github.com/bazelbuild/rules_go/pull/3955)
- Automatically run `bazel mod tidy` in `@rules_go//go` by [@fmeum](https://redirect.github.com/fmeum) in [https://github.com/bazelbuild/rules_go/pull/3927](https://redirect.github.com/bazelbuild/rules_go/pull/3927)
- Fix revive warning in testmain.go files by [@EdSchouten](https://redirect.github.com/EdSchouten) in [https://github.com/bazelbuild/rules_go/pull/3958](https://redirect.github.com/bazelbuild/rules_go/pull/3958)
- Revert "feat(mode): add `purego` tag when `pure` ([#3901](https://redirect.github.com/bazelbuild/rules_go/issues/3901))" by [@fmeum](https://redirect.github.com/fmeum) in [https://github.com/bazelbuild/rules_go/pull/3961](https://redirect.github.com/bazelbuild/rules_go/pull/3961)
- prepare patch release 0.48.1 by [@tyler-french](https://redirect.github.com/tyler-french) in [https://github.com/bazelbuild/rules_go/pull/3963](https://redirect.github.com/bazelbuild/rules_go/pull/3963)
- Fix broken link to https://bazel.build/concepts/dependencies#data-dependencies by [@alexbozhenko](https://redirect.github.com/alexbozhenko) in [https://github.com/bazelbuild/rules_go/pull/3960](https://redirect.github.com/bazelbuild/rules_go/pull/3960)
- docs: Discourage use `go_sdk.host()` in bzlmod.md (see [#713](https://redirect.github.com/bazelbuild/rules_go/issues/713)) by [@vorburger](https://redirect.github.com/vorburger) in [https://github.com/bazelbuild/rules_go/pull/3968](https://redirect.github.com/bazelbuild/rules_go/pull/3968)
- Add linux/ppc64le to GOARCH constraints by [@c16a](https://redirect.github.com/c16a) in [https://github.com/bazelbuild/rules_go/pull/3975](https://redirect.github.com/bazelbuild/rules_go/pull/3975)
- gopackagesdriver: Make kind query regexes anchored by [@jscissr](https://redirect.github.com/jscissr) in [https://github.com/bazelbuild/rules_go/pull/3978](https://redirect.github.com/bazelbuild/rules_go/pull/3978)
- Add a full `fs.FS` implementation to `runfiles` by [@fmeum](https://redirect.github.com/fmeum) in [https://github.com/bazelbuild/rules_go/pull/3969](https://redirect.github.com/bazelbuild/rules_go/pull/3969)
- update readmes for latest release by [@tyler-french](https://redirect.github.com/tyler-french) in [https://github.com/bazelbuild/rules_go/pull/3988](https://redirect.github.com/bazelbuild/rules_go/pull/3988)
- prepare release 0.49.0 by [@tyler-french](https://redirect.github.com/tyler-french) in [https://github.com/bazelbuild/rules_go/pull/3989](https://redirect.github.com/bazelbuild/rules_go/pull/3989)
#### New Contributors
- [@cramertj](https://redirect.github.com/cramertj) made their first contribution in [https://github.com/bazelbuild/rules_go/pull/3955](https://redirect.github.com/bazelbuild/rules_go/pull/3955)
- [@alexbozhenko](https://redirect.github.com/alexbozhenko) made their first contribution in [https://github.com/bazelbuild/rules_go/pull/3960](https://redirect.github.com/bazelbuild/rules_go/pull/3960)
- [@vorburger](https://redirect.github.com/vorburger) made their first contribution in [https://github.com/bazelbuild/rules_go/pull/3968](https://redirect.github.com/bazelbuild/rules_go/pull/3968)
- [@c16a](https://redirect.github.com/c16a) made their first contribution in [https://github.com/bazelbuild/rules_go/pull/3975](https://redirect.github.com/bazelbuild/rules_go/pull/3975)
- [@jscissr](https://redirect.github.com/jscissr) made their first contribution in [https://github.com/bazelbuild/rules_go/pull/3978](https://redirect.github.com/bazelbuild/rules_go/pull/3978)
**Full Changelog**: https://github.com/bazelbuild/rules_go/compare/v0.48.0...v0.49.0
### [`v0.48.1`](https://redirect.github.com/bazelbuild/rules_go/releases/tag/v0.48.1)
[Compare Source](https://redirect.github.com/bazelbuild/rules_go/compare/v0.48.0...v0.48.1)
#### `WORKSPACE` code
load("@bazel_tools//tools/build_defs/repo:http.bzl", "http_archive")
http_archive(
name = "io_bazel_rules_go",
sha256 = "b2038e2de2cace18f032249cb4bb0048abf583a36369fa98f687af1b3f880b26",
urls = [
"https://mirror.bazel.build/github.com/bazelbuild/rules_go/releases/download/v0.48.1/rules_go-v0.48.1.zip",
"https://github.com/bazelbuild/rules_go/releases/download/v0.48.1/rules_go-v0.48.1.zip",
],
)
load("@io_bazel_rules_go//go:deps.bzl", "go_register_toolchains", "go_rules_dependencies")
go_rules_dependencies()
go_register_toolchains(version = "1.22.4")
**Full Changelog**: https://github.com/bazelbuild/rules_go/compare/v0.48.0...v0.48.1
### [`v0.48.0`](https://redirect.github.com/bazelbuild/rules_go/releases/tag/v0.48.0)
[Compare Source](https://redirect.github.com/bazelbuild/rules_go/compare/v0.47.1...v0.48.0)
#### Important Changes!
`--incompatible_enable_proto_toolchain_resolution` is now supported in `rules_go`. This means that protoc should now be supplied as a toolchain. `protoc` can be registered using https://github.com/aspect-build/toolchains_protoc, or a local proto toolchain can be added.
[`rules_proto`](https://redirect.github.com/bazelbuild/rules_proto) 6.0.0 is required to use Go proto rules.
#### `WORKSPACE` code
load("@bazel_tools//tools/build_defs/repo:http.bzl", "http_archive")
http_archive(
name = "io_bazel_rules_go",
sha256 = "33acc4ae0f70502db4b893c9fc1dd7a9bf998c23e7ff2c4517741d4049a976f8",
urls = [
"https://mirror.bazel.build/github.com/bazelbuild/rules_go/releases/download/v0.48.0/rules_go-v0.48.0.zip",
"https://github.com/bazelbuild/rules_go/releases/download/v0.48.0/rules_go-v0.48.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.3")
#### What's Changed
- Update docs to cover new FilePath ReplaceDirective Support by [@stefanpenner](https://redirect.github.com/stefanpenner) in [https://github.com/bazelbuild/rules_go/pull/3931](https://redirect.github.com/bazelbuild/rules_go/pull/3931)
- go_test: use different mnemonic for compilation by [@sluongng](https://redirect.github.com/sluongng) in [https://github.com/bazelbuild/rules_go/pull/3936](https://redirect.github.com/bazelbuild/rules_go/pull/3936)
- Add go.work support to the documentation by [@stefanpenner](https://redirect.github.com/stefanpenner) in [https://github.com/bazelbuild/rules_go/pull/3932](https://redirect.github.com/bazelbuild/rules_go/pull/3932)
- feat(mode): add `purego` tag when `pure` by [@mattyclarkson](https://redirect.github.com/mattyclarkson) in [https://github.com/bazelbuild/rules_go/pull/3901](https://redirect.github.com/bazelbuild/rules_go/pull/3901)
- generate_test_main: Move timeout handling back to bzltestutil by [@DolceTriade](https://redirect.github.com/DolceTriade) in [https://github.com/bazelbuild/rules_go/pull/3939](https://redirect.github.com/bazelbuild/rules_go/pull/3939)
- Add support for `--incompatible_enable_proto_toolchain_resolution` by [@fmeum](https://redirect.github.com/fmeum) in [https://github.com/bazelbuild/rules_go/pull/3919](https://redirect.github.com/bazelbuild/rules_go/pull/3919)
- Add exec_compatible_with to @go_sdk//:builder by [@EdSchouten](https://redirect.github.com/EdSchouten) in [https://github.com/bazelbuild/rules_go/pull/3943](https://redirect.github.com/bazelbuild/rules_go/pull/3943)
- prepare v0.48.0 release by [@tyler-french](https://redirect.github.com/tyler-french) in [https://github.com/bazelbuild/rules_go/pull/3946](https://redirect.github.com/bazelbuild/rules_go/pull/3946)
#### New Contributors
- [@stefanpenner](https://redirect.github.com/stefanpenner) made their first contribution in [https://github.com/bazelbuild/rules_go/pull/3931](https://redirect.github.com/bazelbuild/rules_go/pull/3931)
**Full Changelog**: https://github.com/bazelbuild/rules_go/compare/v0.47.1...v0.48.0
Configuration
📅 Schedule: Branch creation - At any time (no schedule defined), Automerge - At any time (no schedule defined).
🚦 Automerge: Disabled by config. Please merge this manually once you are satisfied.
♻ Rebasing: Whenever PR is behind base branch, or you tick the rebase/retry checkbox.
🔕 Ignore: Close this PR and you won't be reminded about these updates again.
[ ] If you want to rebase/retry this PR, check this box
This PR contains the following updates:
v0.47.1
->v0.50.1
v0.47.1
->v0.50.1
0.47.1
->0.50.1
Release Notes
bazelbuild/rules_go (github.com/bazelbuild/rules_go)
### [`v0.50.1`](https://redirect.github.com/bazelbuild/rules_go/releases/tag/v0.50.1) [Compare Source](https://redirect.github.com/bazelbuild/rules_go/compare/v0.50.0...v0.50.1) #### `WORKSPACE` code load("@bazel_tools//tools/build_defs/repo:http.bzl", "http_archive") http_archive( name = "io_bazel_rules_go", sha256 = "f4a9314518ca6acfa16cc4ab43b0b8ce1e4ea64b81c38d8a3772883f153346b8", urls = [ "https://mirror.bazel.build/github.com/bazelbuild/rules_go/releases/download/v0.50.1/rules_go-v0.50.1.zip", "https://github.com/bazelbuild/rules_go/releases/download/v0.50.1/rules_go-v0.50.1.zip", ], ) load("@io_bazel_rules_go//go:deps.bzl", "go_register_toolchains", "go_rules_dependencies") go_rules_dependencies() go_register_toolchains(version = "1.23.0") #### Fixes Included: [#4081](https://redirect.github.com/bazelbuild/rules_go/issues/4081) [#4082](https://redirect.github.com/bazelbuild/rules_go/issues/4082) [#4083](https://redirect.github.com/bazelbuild/rules_go/issues/4083) **Full Changelog**: https://github.com/bazelbuild/rules_go/compare/v0.50.0...v0.50.1 ### [`v0.50.0`](https://redirect.github.com/bazelbuild/rules_go/releases/tag/v0.50.0) [Compare Source](https://redirect.github.com/bazelbuild/rules_go/compare/v0.49.0...v0.50.0) #### `WORKSPACE` code load("@bazel_tools//tools/build_defs/repo:http.bzl", "http_archive") http_archive( name = "io_bazel_rules_go", sha256 = "67b4d1f517ba73e0a92eb2f57d821f2ddc21f5bc2bd7a231573f11bd8758192e", urls = [ "https://mirror.bazel.build/github.com/bazelbuild/rules_go/releases/download/v0.50.0/rules_go-v0.50.0.zip", "https://github.com/bazelbuild/rules_go/releases/download/v0.50.0/rules_go-v0.50.0.zip", ], ) load("@io_bazel_rules_go//go:deps.bzl", "go_register_toolchains", "go_rules_dependencies") go_rules_dependencies() go_register_toolchains(version = "1.23.0") #### What's Changed - Break reliance on GOROOT_FINAL by [@JacobOaks](https://redirect.github.com/JacobOaks) in [https://github.com/bazelbuild/rules_go/pull/3984](https://redirect.github.com/bazelbuild/rules_go/pull/3984) - Migrate to macos_arm64 by [@meteorcloudy](https://redirect.github.com/meteorcloudy) in [https://github.com/bazelbuild/rules_go/pull/3990](https://redirect.github.com/bazelbuild/rules_go/pull/3990) - Support matching release candidate toolchain versions by [@JacobOaks](https://redirect.github.com/JacobOaks) in [https://github.com/bazelbuild/rules_go/pull/3998](https://redirect.github.com/bazelbuild/rules_go/pull/3998) - rm crosstool by [@sluongng](https://redirect.github.com/sluongng) in [https://github.com/bazelbuild/rules_go/pull/3986](https://redirect.github.com/bazelbuild/rules_go/pull/3986) - fix(timeout.go): remove redundant leaked go func in RegisterTimeoutHandler by [@Roytangrb](https://redirect.github.com/Roytangrb) in [https://github.com/bazelbuild/rules_go/pull/4004](https://redirect.github.com/bazelbuild/rules_go/pull/4004) - Run nogo in a separate validation action by [@fmeum](https://redirect.github.com/fmeum) in [https://github.com/bazelbuild/rules_go/pull/3995](https://redirect.github.com/bazelbuild/rules_go/pull/3995) #### New Contributors - [@JacobOaks](https://redirect.github.com/JacobOaks) made their first contribution in [https://github.com/bazelbuild/rules_go/pull/3984](https://redirect.github.com/bazelbuild/rules_go/pull/3984) - [@Roytangrb](https://redirect.github.com/Roytangrb) made their first contribution in [https://github.com/bazelbuild/rules_go/pull/4004](https://redirect.github.com/bazelbuild/rules_go/pull/4004) **Full Changelog**: https://github.com/bazelbuild/rules_go/compare/release-0.49...release-0.50 ### [`v0.49.0`](https://redirect.github.com/bazelbuild/rules_go/releases/tag/v0.49.0) [Compare Source](https://redirect.github.com/bazelbuild/rules_go/compare/v0.48.1...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](https://redirect.github.com/fmeum) in [https://github.com/bazelbuild/rules_go/pull/3915](https://redirect.github.com/bazelbuild/rules_go/pull/3915) - Introduce rules_go_unsupported_feature by [@cramertj](https://redirect.github.com/cramertj) in [https://github.com/bazelbuild/rules_go/pull/3955](https://redirect.github.com/bazelbuild/rules_go/pull/3955) - Automatically run `bazel mod tidy` in `@rules_go//go` by [@fmeum](https://redirect.github.com/fmeum) in [https://github.com/bazelbuild/rules_go/pull/3927](https://redirect.github.com/bazelbuild/rules_go/pull/3927) - Fix revive warning in testmain.go files by [@EdSchouten](https://redirect.github.com/EdSchouten) in [https://github.com/bazelbuild/rules_go/pull/3958](https://redirect.github.com/bazelbuild/rules_go/pull/3958) - Revert "feat(mode): add `purego` tag when `pure` ([#3901](https://redirect.github.com/bazelbuild/rules_go/issues/3901))" by [@fmeum](https://redirect.github.com/fmeum) in [https://github.com/bazelbuild/rules_go/pull/3961](https://redirect.github.com/bazelbuild/rules_go/pull/3961) - prepare patch release 0.48.1 by [@tyler-french](https://redirect.github.com/tyler-french) in [https://github.com/bazelbuild/rules_go/pull/3963](https://redirect.github.com/bazelbuild/rules_go/pull/3963) - Fix broken link to https://bazel.build/concepts/dependencies#data-dependencies by [@alexbozhenko](https://redirect.github.com/alexbozhenko) in [https://github.com/bazelbuild/rules_go/pull/3960](https://redirect.github.com/bazelbuild/rules_go/pull/3960) - docs: Discourage use `go_sdk.host()` in bzlmod.md (see [#713](https://redirect.github.com/bazelbuild/rules_go/issues/713)) by [@vorburger](https://redirect.github.com/vorburger) in [https://github.com/bazelbuild/rules_go/pull/3968](https://redirect.github.com/bazelbuild/rules_go/pull/3968) - Add linux/ppc64le to GOARCH constraints by [@c16a](https://redirect.github.com/c16a) in [https://github.com/bazelbuild/rules_go/pull/3975](https://redirect.github.com/bazelbuild/rules_go/pull/3975) - gopackagesdriver: Make kind query regexes anchored by [@jscissr](https://redirect.github.com/jscissr) in [https://github.com/bazelbuild/rules_go/pull/3978](https://redirect.github.com/bazelbuild/rules_go/pull/3978) - Add a full `fs.FS` implementation to `runfiles` by [@fmeum](https://redirect.github.com/fmeum) in [https://github.com/bazelbuild/rules_go/pull/3969](https://redirect.github.com/bazelbuild/rules_go/pull/3969) - update readmes for latest release by [@tyler-french](https://redirect.github.com/tyler-french) in [https://github.com/bazelbuild/rules_go/pull/3988](https://redirect.github.com/bazelbuild/rules_go/pull/3988) - prepare release 0.49.0 by [@tyler-french](https://redirect.github.com/tyler-french) in [https://github.com/bazelbuild/rules_go/pull/3989](https://redirect.github.com/bazelbuild/rules_go/pull/3989) #### New Contributors - [@cramertj](https://redirect.github.com/cramertj) made their first contribution in [https://github.com/bazelbuild/rules_go/pull/3955](https://redirect.github.com/bazelbuild/rules_go/pull/3955) - [@alexbozhenko](https://redirect.github.com/alexbozhenko) made their first contribution in [https://github.com/bazelbuild/rules_go/pull/3960](https://redirect.github.com/bazelbuild/rules_go/pull/3960) - [@vorburger](https://redirect.github.com/vorburger) made their first contribution in [https://github.com/bazelbuild/rules_go/pull/3968](https://redirect.github.com/bazelbuild/rules_go/pull/3968) - [@c16a](https://redirect.github.com/c16a) made their first contribution in [https://github.com/bazelbuild/rules_go/pull/3975](https://redirect.github.com/bazelbuild/rules_go/pull/3975) - [@jscissr](https://redirect.github.com/jscissr) made their first contribution in [https://github.com/bazelbuild/rules_go/pull/3978](https://redirect.github.com/bazelbuild/rules_go/pull/3978) **Full Changelog**: https://github.com/bazelbuild/rules_go/compare/v0.48.0...v0.49.0 ### [`v0.48.1`](https://redirect.github.com/bazelbuild/rules_go/releases/tag/v0.48.1) [Compare Source](https://redirect.github.com/bazelbuild/rules_go/compare/v0.48.0...v0.48.1) #### `WORKSPACE` code load("@bazel_tools//tools/build_defs/repo:http.bzl", "http_archive") http_archive( name = "io_bazel_rules_go", sha256 = "b2038e2de2cace18f032249cb4bb0048abf583a36369fa98f687af1b3f880b26", urls = [ "https://mirror.bazel.build/github.com/bazelbuild/rules_go/releases/download/v0.48.1/rules_go-v0.48.1.zip", "https://github.com/bazelbuild/rules_go/releases/download/v0.48.1/rules_go-v0.48.1.zip", ], ) load("@io_bazel_rules_go//go:deps.bzl", "go_register_toolchains", "go_rules_dependencies") go_rules_dependencies() go_register_toolchains(version = "1.22.4") **Full Changelog**: https://github.com/bazelbuild/rules_go/compare/v0.48.0...v0.48.1 ### [`v0.48.0`](https://redirect.github.com/bazelbuild/rules_go/releases/tag/v0.48.0) [Compare Source](https://redirect.github.com/bazelbuild/rules_go/compare/v0.47.1...v0.48.0) #### Important Changes! `--incompatible_enable_proto_toolchain_resolution` is now supported in `rules_go`. This means that protoc should now be supplied as a toolchain. `protoc` can be registered using https://github.com/aspect-build/toolchains_protoc, or a local proto toolchain can be added. [`rules_proto`](https://redirect.github.com/bazelbuild/rules_proto) 6.0.0 is required to use Go proto rules. #### `WORKSPACE` code load("@bazel_tools//tools/build_defs/repo:http.bzl", "http_archive") http_archive( name = "io_bazel_rules_go", sha256 = "33acc4ae0f70502db4b893c9fc1dd7a9bf998c23e7ff2c4517741d4049a976f8", urls = [ "https://mirror.bazel.build/github.com/bazelbuild/rules_go/releases/download/v0.48.0/rules_go-v0.48.0.zip", "https://github.com/bazelbuild/rules_go/releases/download/v0.48.0/rules_go-v0.48.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.3") #### What's Changed - Update docs to cover new FilePath ReplaceDirective Support by [@stefanpenner](https://redirect.github.com/stefanpenner) in [https://github.com/bazelbuild/rules_go/pull/3931](https://redirect.github.com/bazelbuild/rules_go/pull/3931) - go_test: use different mnemonic for compilation by [@sluongng](https://redirect.github.com/sluongng) in [https://github.com/bazelbuild/rules_go/pull/3936](https://redirect.github.com/bazelbuild/rules_go/pull/3936) - Add go.work support to the documentation by [@stefanpenner](https://redirect.github.com/stefanpenner) in [https://github.com/bazelbuild/rules_go/pull/3932](https://redirect.github.com/bazelbuild/rules_go/pull/3932) - feat(mode): add `purego` tag when `pure` by [@mattyclarkson](https://redirect.github.com/mattyclarkson) in [https://github.com/bazelbuild/rules_go/pull/3901](https://redirect.github.com/bazelbuild/rules_go/pull/3901) - generate_test_main: Move timeout handling back to bzltestutil by [@DolceTriade](https://redirect.github.com/DolceTriade) in [https://github.com/bazelbuild/rules_go/pull/3939](https://redirect.github.com/bazelbuild/rules_go/pull/3939) - Add support for `--incompatible_enable_proto_toolchain_resolution` by [@fmeum](https://redirect.github.com/fmeum) in [https://github.com/bazelbuild/rules_go/pull/3919](https://redirect.github.com/bazelbuild/rules_go/pull/3919) - Add exec_compatible_with to @go_sdk//:builder by [@EdSchouten](https://redirect.github.com/EdSchouten) in [https://github.com/bazelbuild/rules_go/pull/3943](https://redirect.github.com/bazelbuild/rules_go/pull/3943) - prepare v0.48.0 release by [@tyler-french](https://redirect.github.com/tyler-french) in [https://github.com/bazelbuild/rules_go/pull/3946](https://redirect.github.com/bazelbuild/rules_go/pull/3946) #### New Contributors - [@stefanpenner](https://redirect.github.com/stefanpenner) made their first contribution in [https://github.com/bazelbuild/rules_go/pull/3931](https://redirect.github.com/bazelbuild/rules_go/pull/3931) **Full Changelog**: https://github.com/bazelbuild/rules_go/compare/v0.47.1...v0.48.0Configuration
📅 Schedule: Branch creation - At any time (no schedule defined), Automerge - At any time (no schedule defined).
🚦 Automerge: Disabled by config. Please merge this manually once you are satisfied.
♻ Rebasing: Whenever PR is behind base branch, or you tick the rebase/retry checkbox.
🔕 Ignore: Close this PR and you won't be reminded about these updates again.
This PR was generated by Mend Renovate. View the repository job log.