Bump github.com/bazelbuild/rules_go from 0.57.0 to 0.58.2 #2390

Closed
dependabot[bot] wants to merge 1 commit from refs/pull/2390/head into main
dependabot[bot] commented 2025-10-27 02:21:58 +00:00 (Migrated from github.com)
Owner

Imported from GitHub pull request.

Original GitHub pull request: #1895
Original author: @dependabot[bot]
Original URL: https://github.com/carverauto/serviceradar/pull/1895
Original created: 2025-10-27T02:21:58Z
Original updated: 2025-11-03T02:17:36Z
Original head: carverauto/serviceradar:dependabot/go_modules/github.com/bazelbuild/rules_go-0.58.2
Original base: main

Bumps github.com/bazelbuild/rules_go from 0.57.0 to 0.58.2.

Release notes

Sourced from github.com/bazelbuild/rules_go's releases.

v0.58.2

WORKSPACE code

load("@bazel_tools//tools/build_defs/repo:http.bzl", "http_archive")

http_archive(
name = "io_bazel_rules_go",
sha256 = "54bbb67a4196170cc60ef3b52a2747ad1759cba4764b4c4752b744080ad99947",
urls = [
"https://mirror.bazel.build/github.com/bazel-contrib/rules_go/releases/download/v0.58.2/rules_go-v0.58.2.zip",
"https://github.com/bazel-contrib/rules_go/releases/download/v0.58.2/rules_go-v0.58.2.zip",
],
)

load("@​io_bazel_rules_go//go:deps.bzl", "go_register_toolchains", "go_rules_dependencies")

go_rules_dependencies()

go_register_toolchains(version = "1.25.3")

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

Full Changelog: https://github.com/bazel-contrib/rules_go/compare/v0.58.0...v0.58.2

v0.58.1

WORKSPACE code

load("@bazel_tools//tools/build_defs/repo:http.bzl", "http_archive")

http_archive(
name = "io_bazel_rules_go",
</tr></table>

... (truncated)

Commits
  • 3ea65d8 .bazelci/presubmit.yml: run BCR tests with multiple Bazel versions (#4490)
  • c84ee39 Only build cmd/internal/cov package on go1.20 where it exists (#4489)
  • 4ded826 Make it easier to debug integration tests (#4488)
  • e3ec029 tests/bcr: don't require MODULE.bazel.lock (#4485)
  • a06038c Add missing bazel_dep to BCR test module (#4486)
  • e9352e9 Fix pure mode detection (#4470)
  • 4f25f44 Commit MODULE.bazel.lock files (#4484)
  • 74199c9 use sh_toolchain to get a truer path to bash (#4465)
  • 56929da Allow collecting coverage for go_binary executed as child process (#4461)
  • 28ce041 Cover all cases for rpath generation (#4471)
  • Additional commits viewable in compare view

Dependabot compatibility score

Dependabot will resolve any conflicts with this PR as long as you don't alter it yourself. You can also trigger a rebase manually by commenting @dependabot rebase.


Dependabot commands and options

You can trigger Dependabot actions by commenting on this PR:

  • @dependabot rebase will rebase this PR
  • @dependabot recreate will recreate this PR, overwriting any edits that have been made to it
  • @dependabot merge will merge this PR after your CI passes on it
  • @dependabot squash and merge will squash and merge this PR after your CI passes on it
  • @dependabot cancel merge will cancel a previously requested merge and block automerging
  • @dependabot reopen will reopen this PR if it is closed
  • @dependabot close will close this PR and stop Dependabot recreating it. You can achieve the same result by closing it manually
  • @dependabot show <dependency name> ignore conditions will show all of the ignore conditions of the specified dependency
  • @dependabot ignore this major version will close this PR and stop Dependabot creating any more for this major version (unless you reopen the PR or upgrade to it yourself)
  • @dependabot ignore this minor version will close this PR and stop Dependabot creating any more for this minor version (unless you reopen the PR or upgrade to it yourself)
  • @dependabot ignore this dependency will close this PR and stop Dependabot creating any more for this dependency (unless you reopen the PR or upgrade to it yourself)
Imported from GitHub pull request. Original GitHub pull request: #1895 Original author: @dependabot[bot] Original URL: https://github.com/carverauto/serviceradar/pull/1895 Original created: 2025-10-27T02:21:58Z Original updated: 2025-11-03T02:17:36Z Original head: carverauto/serviceradar:dependabot/go_modules/github.com/bazelbuild/rules_go-0.58.2 Original base: main --- Bumps [github.com/bazelbuild/rules_go](https://github.com/bazelbuild/rules_go) from 0.57.0 to 0.58.2. <details> <summary>Release notes</summary> <p><em>Sourced from <a href="https://github.com/bazelbuild/rules_go/releases">github.com/bazelbuild/rules_go's releases</a>.</em></p> <blockquote> <h2>v0.58.2</h2> <h2><code>WORKSPACE</code> code</h2> <pre><code>load(&quot;@bazel_tools//tools/build_defs/repo:http.bzl&quot;, &quot;http_archive&quot;) <p>http_archive(<br /> name = &quot;io_bazel_rules_go&quot;,<br /> sha256 = &quot;54bbb67a4196170cc60ef3b52a2747ad1759cba4764b4c4752b744080ad99947&quot;,<br /> urls = [<br /> &quot;https://mirror.bazel.build/github.com/bazel-contrib/rules_go/releases/download/v0.58.2/rules_go-v0.58.2.zip&quot;,<br /> &quot;https://github.com/bazel-contrib/rules_go/releases/download/v0.58.2/rules_go-v0.58.2.zip&quot;,<br /> ],<br /> )</p> <p>load(&quot;<a href="https://github.com/io"><code>@​io</code></a>_bazel_rules_go//go:deps.bzl&quot;, &quot;go_register_toolchains&quot;, &quot;go_rules_dependencies&quot;)</p> <p>go_rules_dependencies()</p> <p>go_register_toolchains(version = &quot;1.25.3&quot;)</p> <h1>Create the host platform repository transitively required by rules_go.</h1> <p>load(&quot;<a href="https://github.com/bazel"><code>@​bazel</code></a>_tools//tools/build_defs/repo:utils.bzl&quot;, &quot;maybe&quot;)<br /> load(&quot;@platforms//host:extension.bzl&quot;, &quot;host_platform_repo&quot;)</p> <p>maybe(<br /> host_platform_repo,<br /> name = &quot;host_platform&quot;,<br /> )</p> <p></code></pre></p> <h2>What's Changed</h2> <ul> <li>Add missing <code>bazel_dep</code> to BCR test module by <a href="https://github.com/fmeum"><code>@​fmeum</code></a> in <a href="https://redirect.github.com/bazel-contrib/rules_go/pull/4486">bazel-contrib/rules_go#4486</a></li> <li>tests/bcr: don't require MODULE.bazel.lock by <a href="https://github.com/jayconrod"><code>@​jayconrod</code></a> in <a href="https://redirect.github.com/bazel-contrib/rules_go/pull/4485">bazel-contrib/rules_go#4485</a></li> <li>Make it easier to debug integration tests by <a href="https://github.com/dzbarsky"><code>@​dzbarsky</code></a> in <a href="https://redirect.github.com/bazel-contrib/rules_go/pull/4488">bazel-contrib/rules_go#4488</a></li> <li>Only build cmd/internal/cov package on go1.20 where it exists by <a href="https://github.com/dzbarsky"><code>@​dzbarsky</code></a> in <a href="https://redirect.github.com/bazel-contrib/rules_go/pull/4489">bazel-contrib/rules_go#4489</a></li> <li>.bazelci/presubmit.yml: run BCR tests with multiple Bazel versions by <a href="https://github.com/jayconrod"><code>@​jayconrod</code></a> in <a href="https://redirect.github.com/bazel-contrib/rules_go/pull/4490">bazel-contrib/rules_go#4490</a></li> </ul> <p><strong>Full Changelog</strong>: <a href="https://github.com/bazel-contrib/rules_go/compare/v0.58.0...v0.58.2">https://github.com/bazel-contrib/rules_go/compare/v0.58.0...v0.58.2</a></p> <h2>v0.58.1</h2> <h2><code>WORKSPACE</code> code</h2> <pre><code>load(&quot;@bazel_tools//tools/build_defs/repo:http.bzl&quot;, &quot;http_archive&quot;) <p>http_archive(<br /> name = &quot;io_bazel_rules_go&quot;,<br /> &lt;/tr&gt;&lt;/table&gt;<br /> </code></pre></p> </blockquote> <p>... (truncated)</p> </details> <details> <summary>Commits</summary> <ul> <li><a href="https://github.com/bazel-contrib/rules_go/commit/3ea65d884caedfae1036cdc8d0a758da900dc18b"><code>3ea65d8</code></a> .bazelci/presubmit.yml: run BCR tests with multiple Bazel versions (<a href="https://redirect.github.com/bazelbuild/rules_go/issues/4490">#4490</a>)</li> <li><a href="https://github.com/bazel-contrib/rules_go/commit/c84ee399cee70112a625dfa19cdb206a968c0194"><code>c84ee39</code></a> Only build cmd/internal/cov package on go1.20 where it exists (<a href="https://redirect.github.com/bazelbuild/rules_go/issues/4489">#4489</a>)</li> <li><a href="https://github.com/bazel-contrib/rules_go/commit/4ded8262d3aecfc286dcb4277f66b680b6fe148b"><code>4ded826</code></a> Make it easier to debug integration tests (<a href="https://redirect.github.com/bazelbuild/rules_go/issues/4488">#4488</a>)</li> <li><a href="https://github.com/bazel-contrib/rules_go/commit/e3ec0294d47f8d5d71f2e9cac57582d8be59e8dc"><code>e3ec029</code></a> tests/bcr: don't require MODULE.bazel.lock (<a href="https://redirect.github.com/bazelbuild/rules_go/issues/4485">#4485</a>)</li> <li><a href="https://github.com/bazel-contrib/rules_go/commit/a06038ce582fb409774c3a5e6b8db79324568363"><code>a06038c</code></a> Add missing <code>bazel_dep</code> to BCR test module (<a href="https://redirect.github.com/bazelbuild/rules_go/issues/4486">#4486</a>)</li> <li><a href="https://github.com/bazel-contrib/rules_go/commit/e9352e93297a3676c6a8fd6669a936c92139b26c"><code>e9352e9</code></a> Fix pure mode detection (<a href="https://redirect.github.com/bazelbuild/rules_go/issues/4470">#4470</a>)</li> <li><a href="https://github.com/bazel-contrib/rules_go/commit/4f25f4411288614b3425b98720b92fb5d2e272f4"><code>4f25f44</code></a> Commit MODULE.bazel.lock files (<a href="https://redirect.github.com/bazelbuild/rules_go/issues/4484">#4484</a>)</li> <li><a href="https://github.com/bazel-contrib/rules_go/commit/74199c92e20399b6ef46684b2c6fdd94b50a7892"><code>74199c9</code></a> use sh_toolchain to get a truer path to bash (<a href="https://redirect.github.com/bazelbuild/rules_go/issues/4465">#4465</a>)</li> <li><a href="https://github.com/bazel-contrib/rules_go/commit/56929daa40a419a4e538d2c73bb82c05148793a8"><code>56929da</code></a> Allow collecting coverage for go_binary executed as child process (<a href="https://redirect.github.com/bazelbuild/rules_go/issues/4461">#4461</a>)</li> <li><a href="https://github.com/bazel-contrib/rules_go/commit/28ce0415f944ea5098fd30452fa320aae5142a49"><code>28ce041</code></a> Cover all cases for rpath generation (<a href="https://redirect.github.com/bazelbuild/rules_go/issues/4471">#4471</a>)</li> <li>Additional commits viewable in <a href="https://github.com/bazelbuild/rules_go/compare/v0.57.0...v0.58.2">compare view</a></li> </ul> </details> <br /> [![Dependabot compatibility score](https://dependabot-badges.githubapp.com/badges/compatibility_score?dependency-name=github.com/bazelbuild/rules_go&package-manager=go_modules&previous-version=0.57.0&new-version=0.58.2)](https://docs.github.com/en/github/managing-security-vulnerabilities/about-dependabot-security-updates#about-compatibility-scores) Dependabot will resolve any conflicts with this PR as long as you don't alter it yourself. You can also trigger a rebase manually by commenting `@dependabot rebase`. [//]: # (dependabot-automerge-start) [//]: # (dependabot-automerge-end) --- <details> <summary>Dependabot commands and options</summary> <br /> You can trigger Dependabot actions by commenting on this PR: - `@dependabot rebase` will rebase this PR - `@dependabot recreate` will recreate this PR, overwriting any edits that have been made to it - `@dependabot merge` will merge this PR after your CI passes on it - `@dependabot squash and merge` will squash and merge this PR after your CI passes on it - `@dependabot cancel merge` will cancel a previously requested merge and block automerging - `@dependabot reopen` will reopen this PR if it is closed - `@dependabot close` will close this PR and stop Dependabot recreating it. You can achieve the same result by closing it manually - `@dependabot show <dependency name> ignore conditions` will show all of the ignore conditions of the specified dependency - `@dependabot ignore this major version` will close this PR and stop Dependabot creating any more for this major version (unless you reopen the PR or upgrade to it yourself) - `@dependabot ignore this minor version` will close this PR and stop Dependabot creating any more for this minor version (unless you reopen the PR or upgrade to it yourself) - `@dependabot ignore this dependency` will close this PR and stop Dependabot creating any more for this dependency (unless you reopen the PR or upgrade to it yourself) </details>
dependabot[bot] commented 2025-11-03 02:17:34 +00:00 (Migrated from github.com)
Author
Owner

Imported GitHub PR comment.

Original author: @dependabot[bot]
Original URL: https://github.com/carverauto/serviceradar/pull/1895#issuecomment-3478696646
Original created: 2025-11-03T02:17:34Z

Superseded by #1917.

Imported GitHub PR comment. Original author: @dependabot[bot] Original URL: https://github.com/carverauto/serviceradar/pull/1895#issuecomment-3478696646 Original created: 2025-11-03T02:17:34Z --- Superseded by #1917.

Pull request closed

Sign in to join this conversation.
No reviewers
No milestone
No project
No assignees
1 participant
Notifications
Due date
The due date is invalid or out of range. Please use the format "yyyy-mm-dd".

No due date set.

Dependencies

No dependencies set.

Reference
carverauto/serviceradar!2390
No description provided.