Update Bazel version to 8.4.2#105
Merged
Merged
Conversation
nradakovic
requested review from
AlexanderLanin,
antonkri and
dcalavrezo-qorix
as code owners
July 16, 2026 08:30
Contributor
There was a problem hiding this comment.
Pull request overview
Updates the repository’s pinned Bazel version to 8.4.2 (root and tests) and refreshes Bzlmod lockfiles to match the new resolution, including a temporary pin of rules_go in the tests module as a Bazel 9-related workaround.
Changes:
- Bump
.bazelversionandtests/.bazelversionfrom8.3.1to8.4.2. - Update
tests/MODULE.bazeldependency pins (platforms,rules_cc) and add a directrules_gopin (0.61.1) as a temporary workaround. - Regenerate
MODULE.bazel.lockandtests/MODULE.bazel.lockto reflect updated module and extension digests.
Reviewed changes
Copilot reviewed 3 out of 5 changed files in this pull request and generated 3 comments.
Show a summary per file
| File | Description |
|---|---|
.bazelversion |
Pins Bazel to 8.4.2 at repo root. |
tests/.bazelversion |
Pins Bazel to 8.4.2 for the tests module. |
tests/MODULE.bazel |
Adds a temporary rules_go pin and bumps selected module deps used by tests. |
MODULE.bazel.lock |
Updates lockfile digests to reflect new resolution after Bazel/version changes. |
tests/MODULE.bazel.lock |
Updates the tests module lockfile to reflect the revised dependency graph and digests. |
💡 Add Copilot custom instructions for smarter, more guided reviews. Learn how to get started.
Comment on lines
+32
to
33
| bazel_dep(name = "platforms", version = "1.1.0") | ||
| bazel_dep(name = "score_bazel_platforms", version = "0.1.2") |
| # C++ Rules for Bazel | ||
| # ******************************************************************************* | ||
| bazel_dep(name = "rules_cc", version = "0.2.14") | ||
| bazel_dep(name = "rules_cc", version = "0.2.17") |
antonkri
previously approved these changes
Jul 16, 2026
nradakovic
force-pushed
the
nira_update_bazel
branch
from
July 16, 2026 14:39
347f328 to
ee99e54
Compare
antonkri
previously approved these changes
Jul 16, 2026
Update Bazel version to be aligned with reference integration. Add a temporary workaround pinning rules_go to 0.61.1 for running tests with Bazel 9: rules_go is a transitive (not direct) dependency, and the version pulled in transitively does not yet support Bazel 9. Remove once upstream dependencies are updated.
nradakovic
force-pushed
the
nira_update_bazel
branch
from
July 16, 2026 14:43
ee99e54 to
ae43f6c
Compare
antonkri
self-requested a review
July 16, 2026 14:48
antonkri
approved these changes
Jul 16, 2026
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Update Bazel version to be aligned with reference integration. Add a temporary workaround pinning rules_go to 0.61.1 for running tests with Bazel 9: rules_go is a transitive (not direct) dependency, and the version pulled in transitively does not yet support Bazel 9. Remove once upstream dependencies are updated.
resolves #104