Skip to content

Commit d950762

Browse files
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("@&#8203;rules_go//go:extensions.bzl", "go_sdk") go_sdk.from_file(go_mod = "//:go.mod") ``` #### `WORKSPACE` code ``` load("@&#8203;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("@&#8203;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("@&#8203;bazel_tools//tools/build_defs/repo:utils.bzl", "maybe") load("@&#8203;platforms//host:extension.bzl", "host_platform_repo") maybe( host_platform_repo, name = "host_platform", ) ``` #### What's Changed - Document Gazelle `go_tools.bzl` functionality by [@&#8203;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 [@&#8203;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 [@&#8203;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 [@&#8203;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 [@&#8203;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 [@&#8203;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 [@&#8203;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 [@&#8203;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 [@&#8203;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 [@&#8203;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 [@&#8203;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 [@&#8203;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 [@&#8203;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 [@&#8203;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 [@&#8203;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 [@&#8203;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 [@&#8203;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 [@&#8203;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 [@&#8203;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 ([#&#8203;4438](https://redirect.github.com/bazelbuild/rules_go/issues/4438))" by [@&#8203;fmeum](https://redirect.github.com/fmeum) in [bazel-contrib#4551](https://redirect.github.com/bazel-contrib/rules_go/pull/4551) #### New Contributors - [@&#8203;mrdomino](https://redirect.github.com/mrdomino) made their first contribution in [bazel-contrib#4496](https://redirect.github.com/bazel-contrib/rules_go/pull/4496) - [@&#8203;cerisier](https://redirect.github.com/cerisier) made their first contribution in [bazel-contrib#4512](https://redirect.github.com/bazel-contrib/rules_go/pull/4512) - [@&#8203;alextercete](https://redirect.github.com/alextercete) made their first contribution in [bazel-contrib#4481](https://redirect.github.com/bazel-contrib/rules_go/pull/4481) - [@&#8203;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) - [@&#8203;Aaronkala](https://redirect.github.com/Aaronkala) made their first contribution in [bazel-contrib#4288](https://redirect.github.com/bazel-contrib/rules_go/pull/4288) - [@&#8203;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

File tree

tests/MODULE.bazel

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ bazel_dep(name = "bazel_skylib", version = "1.9.0")
2424
bazel_dep(name = "platforms", version = "1.0.0")
2525
bazel_dep(name = "rules_cc", version = "0.2.16")
2626
bazel_dep(name = "rules_foreign_cc", version = "0.15.1")
27-
bazel_dep(name = "rules_go", version = "0.59.0", repo_name = "io_bazel_rules_go")
27+
bazel_dep(name = "rules_go", version = "0.60.0", repo_name = "io_bazel_rules_go")
2828
bazel_dep(name = "rules_license", version = "1.0.0")
2929
bazel_dep(name = "rules_rust", version = "0.67.0")
3030
bazel_dep(name = "rules_shell", version = "0.6.1")

0 commit comments

Comments
 (0)