Commit d950762
authored
chore(deps): update dependency rules_go to v0.60.0 (#672)
This PR contains the following updates:
| Package | Type | Update | Change |
|---|---|---|---|
| [rules_go](https://redirect.github.com/bazelbuild/rules_go) |
bazel_dep | minor | `0.59.0` → `0.60.0` |
---
### Release Notes
<details>
<summary>bazelbuild/rules_go (rules_go)</summary>
###
[`v0.60.0`](https://redirect.github.com/bazel-contrib/rules_go/releases/tag/v0.60.0)
#### `MODULE.bazel` code
```
bazel_dep(name = "rules_go", version = "0.60.0")
go_sdk = use_extension("@​rules_go//go:extensions.bzl", "go_sdk")
go_sdk.from_file(go_mod = "//:go.mod")
```
#### `WORKSPACE` code
```
load("@​bazel_tools//tools/build_defs/repo:http.bzl", "http_archive")
http_archive(
name = "io_bazel_rules_go",
sha256 = "86d3dc8f59d253524f933aaf2f3c05896cb0b605fc35b460c0b4b039996124c6",
urls = [
"https://mirror.bazel.build/github.com/bazel-contrib/rules_go/releases/download/v0.60.0/rules_go-v0.60.0.zip",
"https://github.com/bazel-contrib/rules_go/releases/download/v0.60.0/rules_go-v0.60.0.zip",
],
)
load("@​io_bazel_rules_go//go:deps.bzl", "go_register_toolchains", "go_rules_dependencies")
go_rules_dependencies()
go_register_toolchains(version = "1.25.7")
# Create the host platform repository transitively required by rules_go.
load("@​bazel_tools//tools/build_defs/repo:utils.bzl", "maybe")
load("@​platforms//host:extension.bzl", "host_platform_repo")
maybe(
host_platform_repo,
name = "host_platform",
)
```
#### What's Changed
- Document Gazelle `go_tools.bzl` functionality by
[@​mrdomino](https://redirect.github.com/mrdomino) in
[bazel-contrib#4496](https://redirect.github.com/bazel-contrib/rules_go/pull/4496)
- Transition request\_nogo to False for cgo\_context\_data by
[@​cerisier](https://redirect.github.com/cerisier) in
[bazel-contrib#4512](https://redirect.github.com/bazel-contrib/rules_go/pull/4512)
- proto: Pass in the plugin as tools to preserve runfiles by
[@​DolceTriade](https://redirect.github.com/DolceTriade) in
[bazel-contrib#4514](https://redirect.github.com/bazel-contrib/rules_go/pull/4514)
- Default link mode to PIE on supported platforms by
[@​alextercete](https://redirect.github.com/alextercete) in
[bazel-contrib#4481](https://redirect.github.com/bazel-contrib/rules_go/pull/4481)
- go/tools/gopackagesdriver: don't filter GoFiles for tags by
[@​fionera](https://redirect.github.com/fionera) in
[bazel-contrib#4519](https://redirect.github.com/bazel-contrib/rules_go/pull/4519)
- Update Coverage link in README.rst by
[@​bluec0re](https://redirect.github.com/bluec0re) in
[bazel-contrib#4523](https://redirect.github.com/bazel-contrib/rules_go/pull/4523)
- Exclude cgotest from stdlib build by
[@​dzbarsky](https://redirect.github.com/dzbarsky) in
[bazel-contrib#4524](https://redirect.github.com/bazel-contrib/rules_go/pull/4524)
- Rename host\_go{arch,os} to exec\_ by
[@​dzbarsky](https://redirect.github.com/dzbarsky) in
[bazel-contrib#4525](https://redirect.github.com/bazel-contrib/rules_go/pull/4525)
- Start migrating rules\_go workspace to bzlmod by
[@​dzbarsky](https://redirect.github.com/dzbarsky) in
[bazel-contrib#4526](https://redirect.github.com/bazel-contrib/rules_go/pull/4526)
- refactor: Remove more workspace content by
[@​dzbarsky](https://redirect.github.com/dzbarsky) in
[bazel-contrib#4529](https://redirect.github.com/bazel-contrib/rules_go/pull/4529)
- refactor: Remove next batch of WORKSPACE content by
[@​dzbarsky](https://redirect.github.com/dzbarsky) in
[bazel-contrib#4531](https://redirect.github.com/bazel-contrib/rules_go/pull/4531)
- expand make variables in x\_defs by
[@​pjjw](https://redirect.github.com/pjjw) in
[bazel-contrib#4533](https://redirect.github.com/bazel-contrib/rules_go/pull/4533)
- Bump golang.org/x/net from 0.34.0 to 0.38.0 in
/examples/basic\_gazelle by
[@​dependabot](https://redirect.github.com/dependabot)\[bot] in
[bazel-contrib#4530](https://redirect.github.com/bazel-contrib/rules_go/pull/4530)
- fix(releaser): add MODULE.bazel boilerplate by
[@​tyler-french](https://redirect.github.com/tyler-french) in
[bazel-contrib#4225](https://redirect.github.com/bazel-contrib/rules_go/pull/4225)
- fix(gopackagesdriver): Improve wildcard package query matching by
[@​Aaronkala](https://redirect.github.com/Aaronkala) in
[bazel-contrib#4288](https://redirect.github.com/bazel-contrib/rules_go/pull/4288)
- Update BCR test module deps and Bazel version by
[@​fmeum](https://redirect.github.com/fmeum) in
[bazel-contrib#4537](https://redirect.github.com/bazel-contrib/rules_go/pull/4537)
- Replace html linebreaks with newlines. by
[@​katre](https://redirect.github.com/katre) in
[bazel-contrib#4541](https://redirect.github.com/bazel-contrib/rules_go/pull/4541)
- Replace HTML with Markdown in docs by
[@​katre](https://redirect.github.com/katre) in
[bazel-contrib#4542](https://redirect.github.com/bazel-contrib/rules_go/pull/4542)
- chore: Mark go\_download\_sdk as reproducible by
[@​mortenmj](https://redirect.github.com/mortenmj) in
[bazel-contrib#4543](https://redirect.github.com/bazel-contrib/rules_go/pull/4543)
- Revert "Issue 1486: cgo: fix C++ dynamic initialization of static
variables when using alwayslink = True
([#​4438](https://redirect.github.com/bazelbuild/rules_go/issues/4438))"
by [@​fmeum](https://redirect.github.com/fmeum) in
[bazel-contrib#4551](https://redirect.github.com/bazel-contrib/rules_go/pull/4551)
#### New Contributors
- [@​mrdomino](https://redirect.github.com/mrdomino) made their
first contribution in
[bazel-contrib#4496](https://redirect.github.com/bazel-contrib/rules_go/pull/4496)
- [@​cerisier](https://redirect.github.com/cerisier) made their
first contribution in
[bazel-contrib#4512](https://redirect.github.com/bazel-contrib/rules_go/pull/4512)
- [@​alextercete](https://redirect.github.com/alextercete) made
their first contribution in
[bazel-contrib#4481](https://redirect.github.com/bazel-contrib/rules_go/pull/4481)
- [@​dependabot](https://redirect.github.com/dependabot)\[bot]
made their first contribution in
[bazel-contrib#4530](https://redirect.github.com/bazel-contrib/rules_go/pull/4530)
- [@​Aaronkala](https://redirect.github.com/Aaronkala) made their
first contribution in
[bazel-contrib#4288](https://redirect.github.com/bazel-contrib/rules_go/pull/4288)
- [@​mortenmj](https://redirect.github.com/mortenmj) made their
first contribution in
[bazel-contrib#4543](https://redirect.github.com/bazel-contrib/rules_go/pull/4543)
**Full Changelog**:
<bazel-contrib/rules_go@v0.59.0...v0.60.0>
</details>
---
### 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 this update
again.
---
- [ ] <!-- rebase-check -->If you want to rebase/retry this PR, check
this box
---
This PR was generated by [Mend Renovate](https://mend.io/renovate/).
View the [repository job
log](https://developer.mend.io/github/bazel-contrib/toolchains_llvm).
<!--renovate-debug:eyJjcmVhdGVkSW5WZXIiOiI0Mi45Ny4wIiwidXBkYXRlZEluVmVyIjoiNDIuOTcuMCIsInRhcmdldEJyYW5jaCI6Im1hc3RlciIsImxhYmVscyI6W119-->
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>1 parent 8986c1f commit d950762
1 file changed
Lines changed: 1 addition & 1 deletion
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
24 | 24 | | |
25 | 25 | | |
26 | 26 | | |
27 | | - | |
| 27 | + | |
28 | 28 | | |
29 | 29 | | |
30 | 30 | | |
| |||
0 commit comments